MadelineProto/old_docs/API_docs_v68/constructors/updateLangPack.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

43 lines
717 B
Markdown

---
title: updateLangPack
description: updateLangPack attributes, type and example
---
## Constructor: updateLangPack
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|difference|[LangPackDifference](../types/LangPackDifference.md) | Yes|
### Type: [Update](../types/Update.md)
### Example:
```
$updateLangPack = ['_' => 'updateLangPack', 'difference' => LangPackDifference];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "updateLangPack", "difference": LangPackDifference}
```
Or, if you're into Lua:
```
updateLangPack={_='updateLangPack', difference=LangPackDifference}
```