MadelineProtoDocs/docs/API_docs/constructors/langPackLanguage.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

988 B

title description image
langPackLanguage langPackLanguage attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: langPackLanguage

Back to constructors index

Attributes:

Name Type Required
name string Yes
native_name string Yes
lang_code string Yes

Type: LangPackLanguage

Example:

$langPackLanguage = ['_' => 'langPackLanguage', 'name' => 'string', 'native_name' => 'string', 'lang_code' => 'string'];

PWRTelegram json-encoded version:

{"_": "langPackLanguage", "name": "string", "native_name": "string", "lang_code": "string"}

Or, if you're into Lua:

langPackLanguage={_='langPackLanguage', name='string', native_name='string', lang_code='string'}