MadelineProtoDocs/docs/API_docs/constructors/langPackDifference.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

46 lines
1.1 KiB
Markdown

---
title: langPackDifference
description: langPackDifference attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: langPackDifference
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|lang\_code|[string](../types/string.md) | Yes|
|from\_version|[int](../types/int.md) | Yes|
|version|[int](../types/int.md) | Yes|
|strings|Array of [LangPackString](../types/LangPackString.md) | Yes|
### Type: [LangPackDifference](../types/LangPackDifference.md)
### Example:
```php
$langPackDifference = ['_' => 'langPackDifference', 'lang_code' => 'string', 'from_version' => int, 'version' => int, 'strings' => [LangPackString, LangPackString]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "langPackDifference", "lang_code": "string", "from_version": int, "version": int, "strings": [LangPackString]}
```
Or, if you're into Lua:
```lua
langPackDifference={_='langPackDifference', lang_code='string', from_version=int, version=int, strings={LangPackString}}
```