MadelineProtoDocs/docs/API_docs/constructors/langPackString.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

855 B

title description image
langPackString Lang pack string https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: langPackString

Back to constructors index

Lang pack string

Attributes:

Name Type Required Description
key string Yes Key
value string Yes Value

Type: LangPackString

Example:

$langPackString = ['_' => 'langPackString', 'key' => 'string', 'value' => 'string'];

PWRTelegram json-encoded version:

{"_": "langPackString", "key": "string", "value": "string"}

Or, if you're into Lua:

langPackString={_='langPackString', key='string', value='string'}