1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-12 05:59:36 +01:00
MadelineProto/docs/API_docs/constructors/langPackLanguage.md

45 lines
900 B
Markdown
Raw Normal View History

2017-06-30 15:36:33 +02:00
---
title: langPackLanguage
description: langPackLanguage attributes, type and example
---
## Constructor: langPackLanguage
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|name|[string](../types/string.md) | Yes|
|native\_name|[string](../types/string.md) | Yes|
|lang\_code|[string](../types/string.md) | Yes|
### Type: [LangPackLanguage](../types/LangPackLanguage.md)
### Example:
```
$langPackLanguage = ['_' => 'langPackLanguage', 'name' => string, 'native_name' => string, 'lang_code' => string, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"langPackLanguage","name":"string","native_name":"string","lang_code":"string"}
```
2017-06-30 15:36:33 +02:00
Or, if you're into Lua:
```
langPackLanguage={_='langPackLanguage', name=string, native_name=string, lang_code=string, }
```