MadelineProtoDocs/old_docs/API_docs_v82/constructors/updateLangPack.md

39 lines
694 B
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: updateLangPack
description: Update lang pack
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateLangPack
[Back to constructors index](index.md)
Update lang pack
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|difference|[LangPackDifference](../types/LangPackDifference.md) | Yes|Difference|
### Type: [Update](../types/Update.md)
### Example:
```php
$updateLangPack = ['_' => 'updateLangPack', 'difference' => LangPackDifference];
```
Or, if you're into Lua:
```lua
updateLangPack={_='updateLangPack', difference=LangPackDifference}
```