More doc fixes

This commit is contained in:
Daniil Gentili 2017-07-23 16:33:46 +02:00
parent 5c0de9b711
commit 8b7502d9d2
11805 changed files with 30980 additions and 30973 deletions

View File

@ -21,13 +21,13 @@ description: accountDaysTTL attributes, type and example
### Example:
```
$accountDaysTTL = ['_' => 'accountDaysTTL', 'days' => int, ];
$accountDaysTTL = ['_' => 'accountDaysTTL', 'days' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"accountDaysTTL","days":"int"}
{"_": "accountDaysTTL", "days": int}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
accountDaysTTL={_='accountDaysTTL', days=int, }
accountDaysTTL={_='accountDaysTTL', days=int}
```

View File

@ -21,13 +21,13 @@ description: account_authorizations attributes, type and example
### Example:
```
$account_authorizations = ['_' => 'account.authorizations', 'authorizations' => [Authorization], ];
$account_authorizations = ['_' => 'account.authorizations', 'authorizations' => [Authorization]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"account.authorizations","authorizations":["Authorization"]}
{"_": "account.authorizations", "authorizations": [Authorization]}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
account_authorizations={_='account.authorizations', authorizations={Authorization}, }
account_authorizations={_='account.authorizations', authorizations={Authorization}}
```

View File

@ -22,13 +22,13 @@ description: account_noPassword attributes, type and example
### Example:
```
$account_noPassword = ['_' => 'account.noPassword', 'new_salt' => bytes, 'email_unconfirmed_pattern' => string, ];
$account_noPassword = ['_' => 'account.noPassword', 'new_salt' => 'bytes', 'email_unconfirmed_pattern' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"account.noPassword","new_salt":"bytes","email_unconfirmed_pattern":"string"}
{"_": "account.noPassword", "new_salt": "bytes", "email_unconfirmed_pattern": "string"}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
account_noPassword={_='account.noPassword', new_salt=bytes, email_unconfirmed_pattern=string, }
account_noPassword={_='account.noPassword', new_salt='bytes', email_unconfirmed_pattern='string'}
```

View File

@ -25,13 +25,13 @@ description: account_password attributes, type and example
### Example:
```
$account_password = ['_' => 'account.password', 'current_salt' => bytes, 'new_salt' => bytes, 'hint' => string, 'has_recovery' => Bool, 'email_unconfirmed_pattern' => string, ];
$account_password = ['_' => 'account.password', 'current_salt' => 'bytes', 'new_salt' => 'bytes', 'hint' => 'string', 'has_recovery' => Bool, 'email_unconfirmed_pattern' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"account.password","current_salt":"bytes","new_salt":"bytes","hint":"string","has_recovery":"Bool","email_unconfirmed_pattern":"string"}
{"_": "account.password", "current_salt": "bytes", "new_salt": "bytes", "hint": "string", "has_recovery": Bool, "email_unconfirmed_pattern": "string"}
```
@ -39,7 +39,7 @@ Or, if you're into Lua:
```
account_password={_='account.password', current_salt=bytes, new_salt=bytes, hint=string, has_recovery=Bool, email_unconfirmed_pattern=string, }
account_password={_='account.password', current_salt='bytes', new_salt='bytes', hint='string', has_recovery=Bool, email_unconfirmed_pattern='string'}
```

View File

@ -24,13 +24,13 @@ description: account_passwordInputSettings attributes, type and example
### Example:
```
$account_passwordInputSettings = ['_' => 'account.passwordInputSettings', 'new_salt' => bytes, 'new_password_hash' => bytes, 'hint' => string, 'email' => string, ];
$account_passwordInputSettings = ['_' => 'account.passwordInputSettings', 'new_salt' => 'bytes', 'new_password_hash' => 'bytes', 'hint' => 'string', 'email' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"account.passwordInputSettings","new_salt":"bytes","new_password_hash":"bytes","hint":"string","email":"string"}
{"_": "account.passwordInputSettings", "new_salt": "bytes", "new_password_hash": "bytes", "hint": "string", "email": "string"}
```
@ -38,7 +38,7 @@ Or, if you're into Lua:
```
account_passwordInputSettings={_='account.passwordInputSettings', new_salt=bytes, new_password_hash=bytes, hint=string, email=string, }
account_passwordInputSettings={_='account.passwordInputSettings', new_salt='bytes', new_password_hash='bytes', hint='string', email='string'}
```

View File

@ -21,13 +21,13 @@ description: account_passwordSettings attributes, type and example
### Example:
```
$account_passwordSettings = ['_' => 'account.passwordSettings', 'email' => string, ];
$account_passwordSettings = ['_' => 'account.passwordSettings', 'email' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"account.passwordSettings","email":"string"}
{"_": "account.passwordSettings", "email": "string"}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
account_passwordSettings={_='account.passwordSettings', email=string, }
account_passwordSettings={_='account.passwordSettings', email='string'}
```

View File

@ -22,13 +22,13 @@ description: account_privacyRules attributes, type and example
### Example:
```
$account_privacyRules = ['_' => 'account.privacyRules', 'rules' => [PrivacyRule], 'users' => [User], ];
$account_privacyRules = ['_' => 'account.privacyRules', 'rules' => [PrivacyRule], 'users' => [User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"account.privacyRules","rules":["PrivacyRule"],"users":["User"]}
{"_": "account.privacyRules", "rules": [PrivacyRule], "users": [User]}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
account_privacyRules={_='account.privacyRules', rules={PrivacyRule}, users={User}, }
account_privacyRules={_='account.privacyRules', rules={PrivacyRule}, users={User}}
```

View File

@ -22,13 +22,13 @@ description: account_tmpPassword attributes, type and example
### Example:
```
$account_tmpPassword = ['_' => 'account.tmpPassword', 'tmp_password' => bytes, 'valid_until' => int, ];
$account_tmpPassword = ['_' => 'account.tmpPassword', 'tmp_password' => 'bytes', 'valid_until' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"account.tmpPassword","tmp_password":"bytes","valid_until":"int"}
{"_": "account.tmpPassword", "tmp_password": "bytes", "valid_until": int}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
account_tmpPassword={_='account.tmpPassword', tmp_password=bytes, valid_until=int, }
account_tmpPassword={_='account.tmpPassword', tmp_password='bytes', valid_until=int}
```

View File

@ -22,13 +22,13 @@ description: auth_authorization attributes, type and example
### Example:
```
$auth_authorization = ['_' => 'auth.authorization', 'tmp_sessions' => int, 'user' => User, ];
$auth_authorization = ['_' => 'auth.authorization', 'tmp_sessions' => int, 'user' => User];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"auth.authorization","tmp_sessions":"int","user":"User"}
{"_": "auth.authorization", "tmp_sessions": int, "user": User}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
auth_authorization={_='auth.authorization', tmp_sessions=int, user=User, }
auth_authorization={_='auth.authorization', tmp_sessions=int, user=User}
```

View File

@ -21,13 +21,13 @@ description: auth_checkedPhone attributes, type and example
### Example:
```
$auth_checkedPhone = ['_' => 'auth.checkedPhone', 'phone_registered' => Bool, ];
$auth_checkedPhone = ['_' => 'auth.checkedPhone', 'phone_registered' => Bool];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"auth.checkedPhone","phone_registered":"Bool"}
{"_": "auth.checkedPhone", "phone_registered": Bool}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
auth_checkedPhone={_='auth.checkedPhone', phone_registered=Bool, }
auth_checkedPhone={_='auth.checkedPhone', phone_registered=Bool}
```

View File

@ -16,13 +16,13 @@ description: auth_codeTypeCall attributes, type and example
### Example:
```
$auth_codeTypeCall = ['_' => 'auth.codeTypeCall', ];
$auth_codeTypeCall = ['_' => 'auth.codeTypeCall'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"auth.codeTypeCall"}
{"_": "auth.codeTypeCall"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
auth_codeTypeCall={_='auth.codeTypeCall', }
auth_codeTypeCall={_='auth.codeTypeCall'}
```

View File

@ -16,13 +16,13 @@ description: auth_codeTypeFlashCall attributes, type and example
### Example:
```
$auth_codeTypeFlashCall = ['_' => 'auth.codeTypeFlashCall', ];
$auth_codeTypeFlashCall = ['_' => 'auth.codeTypeFlashCall'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"auth.codeTypeFlashCall"}
{"_": "auth.codeTypeFlashCall"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
auth_codeTypeFlashCall={_='auth.codeTypeFlashCall', }
auth_codeTypeFlashCall={_='auth.codeTypeFlashCall'}
```

View File

@ -16,13 +16,13 @@ description: auth_codeTypeSms attributes, type and example
### Example:
```
$auth_codeTypeSms = ['_' => 'auth.codeTypeSms', ];
$auth_codeTypeSms = ['_' => 'auth.codeTypeSms'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"auth.codeTypeSms"}
{"_": "auth.codeTypeSms"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
auth_codeTypeSms={_='auth.codeTypeSms', }
auth_codeTypeSms={_='auth.codeTypeSms'}
```

View File

@ -22,13 +22,13 @@ description: auth_exportedAuthorization attributes, type and example
### Example:
```
$auth_exportedAuthorization = ['_' => 'auth.exportedAuthorization', 'id' => int, 'bytes' => bytes, ];
$auth_exportedAuthorization = ['_' => 'auth.exportedAuthorization', 'id' => int, 'bytes' => 'bytes'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"auth.exportedAuthorization","id":"int","bytes":"bytes"}
{"_": "auth.exportedAuthorization", "id": int, "bytes": "bytes"}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
auth_exportedAuthorization={_='auth.exportedAuthorization', id=int, bytes=bytes, }
auth_exportedAuthorization={_='auth.exportedAuthorization', id=int, bytes='bytes'}
```

View File

@ -21,13 +21,13 @@ description: auth_passwordRecovery attributes, type and example
### Example:
```
$auth_passwordRecovery = ['_' => 'auth.passwordRecovery', 'email_pattern' => string, ];
$auth_passwordRecovery = ['_' => 'auth.passwordRecovery', 'email_pattern' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"auth.passwordRecovery","email_pattern":"string"}
{"_": "auth.passwordRecovery", "email_pattern": "string"}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
auth_passwordRecovery={_='auth.passwordRecovery', email_pattern=string, }
auth_passwordRecovery={_='auth.passwordRecovery', email_pattern='string'}
```

View File

@ -25,13 +25,13 @@ description: auth_sentCode attributes, type and example
### Example:
```
$auth_sentCode = ['_' => 'auth.sentCode', 'phone_registered' => Bool, 'type' => auth_SentCodeType, 'phone_code_hash' => string, 'next_type' => auth_CodeType, 'timeout' => int, ];
$auth_sentCode = ['_' => 'auth.sentCode', 'phone_registered' => Bool, 'type' => auth_SentCodeType, 'phone_code_hash' => 'string', 'next_type' => auth_CodeType, 'timeout' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"auth.sentCode","phone_registered":"Bool","type":"auth_SentCodeType","phone_code_hash":"string","next_type":"auth_CodeType","timeout":"int"}
{"_": "auth.sentCode", "phone_registered": Bool, "type": auth_SentCodeType, "phone_code_hash": "string", "next_type": auth_CodeType, "timeout": int}
```
@ -39,7 +39,7 @@ Or, if you're into Lua:
```
auth_sentCode={_='auth.sentCode', phone_registered=Bool, type=auth_SentCodeType, phone_code_hash=string, next_type=auth_CodeType, timeout=int, }
auth_sentCode={_='auth.sentCode', phone_registered=Bool, type=auth_SentCodeType, phone_code_hash='string', next_type=auth_CodeType, timeout=int}
```

View File

@ -21,13 +21,13 @@ description: auth_sentCodeTypeApp attributes, type and example
### Example:
```
$auth_sentCodeTypeApp = ['_' => 'auth.sentCodeTypeApp', 'length' => int, ];
$auth_sentCodeTypeApp = ['_' => 'auth.sentCodeTypeApp', 'length' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"auth.sentCodeTypeApp","length":"int"}
{"_": "auth.sentCodeTypeApp", "length": int}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
auth_sentCodeTypeApp={_='auth.sentCodeTypeApp', length=int, }
auth_sentCodeTypeApp={_='auth.sentCodeTypeApp', length=int}
```

View File

@ -21,13 +21,13 @@ description: auth_sentCodeTypeCall attributes, type and example
### Example:
```
$auth_sentCodeTypeCall = ['_' => 'auth.sentCodeTypeCall', 'length' => int, ];
$auth_sentCodeTypeCall = ['_' => 'auth.sentCodeTypeCall', 'length' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"auth.sentCodeTypeCall","length":"int"}
{"_": "auth.sentCodeTypeCall", "length": int}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
auth_sentCodeTypeCall={_='auth.sentCodeTypeCall', length=int, }
auth_sentCodeTypeCall={_='auth.sentCodeTypeCall', length=int}
```

View File

@ -21,13 +21,13 @@ description: auth_sentCodeTypeFlashCall attributes, type and example
### Example:
```
$auth_sentCodeTypeFlashCall = ['_' => 'auth.sentCodeTypeFlashCall', 'pattern' => string, ];
$auth_sentCodeTypeFlashCall = ['_' => 'auth.sentCodeTypeFlashCall', 'pattern' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"auth.sentCodeTypeFlashCall","pattern":"string"}
{"_": "auth.sentCodeTypeFlashCall", "pattern": "string"}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
auth_sentCodeTypeFlashCall={_='auth.sentCodeTypeFlashCall', pattern=string, }
auth_sentCodeTypeFlashCall={_='auth.sentCodeTypeFlashCall', pattern='string'}
```

View File

@ -21,13 +21,13 @@ description: auth_sentCodeTypeSms attributes, type and example
### Example:
```
$auth_sentCodeTypeSms = ['_' => 'auth.sentCodeTypeSms', 'length' => int, ];
$auth_sentCodeTypeSms = ['_' => 'auth.sentCodeTypeSms', 'length' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"auth.sentCodeTypeSms","length":"int"}
{"_": "auth.sentCodeTypeSms", "length": int}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
auth_sentCodeTypeSms={_='auth.sentCodeTypeSms', length=int, }
auth_sentCodeTypeSms={_='auth.sentCodeTypeSms', length=int}
```

View File

@ -32,13 +32,13 @@ description: authorization attributes, type and example
### Example:
```
$authorization = ['_' => 'authorization', 'hash' => long, 'device_model' => string, 'platform' => string, 'system_version' => string, 'api_id' => int, 'app_name' => string, 'app_version' => string, 'date_created' => int, 'date_active' => int, 'ip' => string, 'country' => string, 'region' => string, ];
$authorization = ['_' => 'authorization', 'hash' => long, 'device_model' => 'string', 'platform' => 'string', 'system_version' => 'string', 'api_id' => int, 'app_name' => 'string', 'app_version' => 'string', 'date_created' => int, 'date_active' => int, 'ip' => 'string', 'country' => 'string', 'region' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"authorization","hash":"long","device_model":"string","platform":"string","system_version":"string","api_id":"int","app_name":"string","app_version":"string","date_created":"int","date_active":"int","ip":"string","country":"string","region":"string"}
{"_": "authorization", "hash": long, "device_model": "string", "platform": "string", "system_version": "string", "api_id": int, "app_name": "string", "app_version": "string", "date_created": int, "date_active": int, "ip": "string", "country": "string", "region": "string"}
```
@ -46,7 +46,7 @@ Or, if you're into Lua:
```
authorization={_='authorization', hash=long, device_model=string, platform=string, system_version=string, api_id=int, app_name=string, app_version=string, date_created=int, date_active=int, ip=string, country=string, region=string, }
authorization={_='authorization', hash=long, device_model='string', platform='string', system_version='string', api_id=int, app_name='string', app_version='string', date_created=int, date_active=int, ip='string', country='string', region='string'}
```

View File

@ -23,13 +23,13 @@ description: bad_msg_notification attributes, type and example
### Example:
```
$bad_msg_notification = ['_' => 'bad_msg_notification', 'bad_msg_id' => long, 'bad_msg_seqno' => int, 'error_code' => int, ];
$bad_msg_notification = ['_' => 'bad_msg_notification', 'bad_msg_id' => long, 'bad_msg_seqno' => int, 'error_code' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"bad_msg_notification","bad_msg_id":"long","bad_msg_seqno":"int","error_code":"int"}
{"_": "bad_msg_notification", "bad_msg_id": long, "bad_msg_seqno": int, "error_code": int}
```
@ -37,7 +37,7 @@ Or, if you're into Lua:
```
bad_msg_notification={_='bad_msg_notification', bad_msg_id=long, bad_msg_seqno=int, error_code=int, }
bad_msg_notification={_='bad_msg_notification', bad_msg_id=long, bad_msg_seqno=int, error_code=int}
```

View File

@ -24,13 +24,13 @@ description: bad_server_salt attributes, type and example
### Example:
```
$bad_server_salt = ['_' => 'bad_server_salt', 'bad_msg_id' => long, 'bad_msg_seqno' => int, 'error_code' => int, 'new_server_salt' => long, ];
$bad_server_salt = ['_' => 'bad_server_salt', 'bad_msg_id' => long, 'bad_msg_seqno' => int, 'error_code' => int, 'new_server_salt' => long];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"bad_server_salt","bad_msg_id":"long","bad_msg_seqno":"int","error_code":"int","new_server_salt":"long"}
{"_": "bad_server_salt", "bad_msg_id": long, "bad_msg_seqno": int, "error_code": int, "new_server_salt": long}
```
@ -38,7 +38,7 @@ Or, if you're into Lua:
```
bad_server_salt={_='bad_server_salt', bad_msg_id=long, bad_msg_seqno=int, error_code=int, new_server_salt=long, }
bad_server_salt={_='bad_server_salt', bad_msg_id=long, bad_msg_seqno=int, error_code=int, new_server_salt=long}
```

View File

@ -24,13 +24,13 @@ Represents command supported by bot
### Example:
```
$botCommand = ['_' => 'botCommand', 'command' => string, 'description' => string, ];
$botCommand = ['_' => 'botCommand', 'command' => 'string', 'description' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"botCommand","command":"string","description":"string"}
{"_": "botCommand", "command": "string", "description": "string"}
```
@ -38,7 +38,7 @@ Or, if you're into Lua:
```
botCommand={_='botCommand', command=string, description=string, }
botCommand={_='botCommand', command='string', description='string'}
```

View File

@ -23,13 +23,13 @@ description: botInfo attributes, type and example
### Example:
```
$botInfo = ['_' => 'botInfo', 'user_id' => int, 'description' => string, 'commands' => [BotCommand], ];
$botInfo = ['_' => 'botInfo', 'user_id' => int, 'description' => 'string', 'commands' => [BotCommand]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"botInfo","user_id":"int","description":"string","commands":["BotCommand"]}
{"_": "botInfo", "user_id": int, "description": "string", "commands": [BotCommand]}
```
@ -37,7 +37,7 @@ Or, if you're into Lua:
```
botInfo={_='botInfo', user_id=int, description=string, commands={BotCommand}, }
botInfo={_='botInfo', user_id=int, description='string', commands={BotCommand}}
```

View File

@ -27,13 +27,13 @@ description: botInlineMediaResult attributes, type and example
### Example:
```
$botInlineMediaResult = ['_' => 'botInlineMediaResult', 'id' => string, 'type' => string, 'photo' => Photo, 'document' => Document, 'title' => string, 'description' => string, 'send_message' => BotInlineMessage, ];
$botInlineMediaResult = ['_' => 'botInlineMediaResult', 'id' => 'string', 'type' => 'string', 'photo' => Photo, 'document' => Document, 'title' => 'string', 'description' => 'string', 'send_message' => BotInlineMessage];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"botInlineMediaResult","id":"string","type":"string","photo":"Photo","document":"Document","title":"string","description":"string","send_message":"BotInlineMessage"}
{"_": "botInlineMediaResult", "id": "string", "type": "string", "photo": Photo, "document": Document, "title": "string", "description": "string", "send_message": BotInlineMessage}
```
@ -41,7 +41,7 @@ Or, if you're into Lua:
```
botInlineMediaResult={_='botInlineMediaResult', id=string, type=string, photo=Photo, document=Document, title=string, description=string, send_message=BotInlineMessage, }
botInlineMediaResult={_='botInlineMediaResult', id='string', type='string', photo=Photo, document=Document, title='string', description='string', send_message=BotInlineMessage}
```

View File

@ -22,13 +22,13 @@ description: botInlineMessageMediaAuto attributes, type and example
### Example:
```
$botInlineMessageMediaAuto = ['_' => 'botInlineMessageMediaAuto', 'caption' => string, 'reply_markup' => ReplyMarkup, ];
$botInlineMessageMediaAuto = ['_' => 'botInlineMessageMediaAuto', 'caption' => 'string', 'reply_markup' => ReplyMarkup];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"botInlineMessageMediaAuto","caption":"string","reply_markup":"ReplyMarkup"}
{"_": "botInlineMessageMediaAuto", "caption": "string", "reply_markup": ReplyMarkup}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
botInlineMessageMediaAuto={_='botInlineMessageMediaAuto', caption=string, reply_markup=ReplyMarkup, }
botInlineMessageMediaAuto={_='botInlineMessageMediaAuto', caption='string', reply_markup=ReplyMarkup}
```

View File

@ -24,13 +24,13 @@ description: botInlineMessageMediaContact attributes, type and example
### Example:
```
$botInlineMessageMediaContact = ['_' => 'botInlineMessageMediaContact', 'phone_number' => string, 'first_name' => string, 'last_name' => string, 'reply_markup' => ReplyMarkup, ];
$botInlineMessageMediaContact = ['_' => 'botInlineMessageMediaContact', 'phone_number' => 'string', 'first_name' => 'string', 'last_name' => 'string', 'reply_markup' => ReplyMarkup];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"botInlineMessageMediaContact","phone_number":"string","first_name":"string","last_name":"string","reply_markup":"ReplyMarkup"}
{"_": "botInlineMessageMediaContact", "phone_number": "string", "first_name": "string", "last_name": "string", "reply_markup": ReplyMarkup}
```
@ -38,7 +38,7 @@ Or, if you're into Lua:
```
botInlineMessageMediaContact={_='botInlineMessageMediaContact', phone_number=string, first_name=string, last_name=string, reply_markup=ReplyMarkup, }
botInlineMessageMediaContact={_='botInlineMessageMediaContact', phone_number='string', first_name='string', last_name='string', reply_markup=ReplyMarkup}
```

View File

@ -22,13 +22,13 @@ description: botInlineMessageMediaGeo attributes, type and example
### Example:
```
$botInlineMessageMediaGeo = ['_' => 'botInlineMessageMediaGeo', 'geo' => GeoPoint, 'reply_markup' => ReplyMarkup, ];
$botInlineMessageMediaGeo = ['_' => 'botInlineMessageMediaGeo', 'geo' => GeoPoint, 'reply_markup' => ReplyMarkup];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"botInlineMessageMediaGeo","geo":"GeoPoint","reply_markup":"ReplyMarkup"}
{"_": "botInlineMessageMediaGeo", "geo": GeoPoint, "reply_markup": ReplyMarkup}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
botInlineMessageMediaGeo={_='botInlineMessageMediaGeo', geo=GeoPoint, reply_markup=ReplyMarkup, }
botInlineMessageMediaGeo={_='botInlineMessageMediaGeo', geo=GeoPoint, reply_markup=ReplyMarkup}
```

View File

@ -26,13 +26,13 @@ description: botInlineMessageMediaVenue attributes, type and example
### Example:
```
$botInlineMessageMediaVenue = ['_' => 'botInlineMessageMediaVenue', 'geo' => GeoPoint, 'title' => string, 'address' => string, 'provider' => string, 'venue_id' => string, 'reply_markup' => ReplyMarkup, ];
$botInlineMessageMediaVenue = ['_' => 'botInlineMessageMediaVenue', 'geo' => GeoPoint, 'title' => 'string', 'address' => 'string', 'provider' => 'string', 'venue_id' => 'string', 'reply_markup' => ReplyMarkup];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"botInlineMessageMediaVenue","geo":"GeoPoint","title":"string","address":"string","provider":"string","venue_id":"string","reply_markup":"ReplyMarkup"}
{"_": "botInlineMessageMediaVenue", "geo": GeoPoint, "title": "string", "address": "string", "provider": "string", "venue_id": "string", "reply_markup": ReplyMarkup}
```
@ -40,7 +40,7 @@ Or, if you're into Lua:
```
botInlineMessageMediaVenue={_='botInlineMessageMediaVenue', geo=GeoPoint, title=string, address=string, provider=string, venue_id=string, reply_markup=ReplyMarkup, }
botInlineMessageMediaVenue={_='botInlineMessageMediaVenue', geo=GeoPoint, title='string', address='string', provider='string', venue_id='string', reply_markup=ReplyMarkup}
```

View File

@ -24,13 +24,13 @@ description: botInlineMessageText attributes, type and example
### Example:
```
$botInlineMessageText = ['_' => 'botInlineMessageText', 'no_webpage' => Bool, 'message' => string, 'entities' => [MessageEntity], 'reply_markup' => ReplyMarkup, ];
$botInlineMessageText = ['_' => 'botInlineMessageText', 'no_webpage' => Bool, 'message' => 'string', 'entities' => [MessageEntity], 'reply_markup' => ReplyMarkup];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"botInlineMessageText","no_webpage":"Bool","message":"string","entities":["MessageEntity"],"reply_markup":"ReplyMarkup"}
{"_": "botInlineMessageText", "no_webpage": Bool, "message": "string", "entities": [MessageEntity], "reply_markup": ReplyMarkup}
```
@ -38,7 +38,7 @@ Or, if you're into Lua:
```
botInlineMessageText={_='botInlineMessageText', no_webpage=Bool, message=string, entities={MessageEntity}, reply_markup=ReplyMarkup, }
botInlineMessageText={_='botInlineMessageText', no_webpage=Bool, message='string', entities={MessageEntity}, reply_markup=ReplyMarkup}
```

View File

@ -32,13 +32,13 @@ description: botInlineResult attributes, type and example
### Example:
```
$botInlineResult = ['_' => 'botInlineResult', 'id' => string, 'type' => string, 'title' => string, 'description' => string, 'url' => string, 'thumb_url' => string, 'content_url' => string, 'content_type' => string, 'w' => int, 'h' => int, 'duration' => int, 'send_message' => BotInlineMessage, ];
$botInlineResult = ['_' => 'botInlineResult', 'id' => 'string', 'type' => 'string', 'title' => 'string', 'description' => 'string', 'url' => 'string', 'thumb_url' => 'string', 'content_url' => 'string', 'content_type' => 'string', 'w' => int, 'h' => int, 'duration' => int, 'send_message' => BotInlineMessage];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"botInlineResult","id":"string","type":"string","title":"string","description":"string","url":"string","thumb_url":"string","content_url":"string","content_type":"string","w":"int","h":"int","duration":"int","send_message":"BotInlineMessage"}
{"_": "botInlineResult", "id": "string", "type": "string", "title": "string", "description": "string", "url": "string", "thumb_url": "string", "content_url": "string", "content_type": "string", "w": int, "h": int, "duration": int, "send_message": BotInlineMessage}
```
@ -46,7 +46,7 @@ Or, if you're into Lua:
```
botInlineResult={_='botInlineResult', id=string, type=string, title=string, description=string, url=string, thumb_url=string, content_url=string, content_type=string, w=int, h=int, duration=int, send_message=BotInlineMessage, }
botInlineResult={_='botInlineResult', id='string', type='string', title='string', description='string', url='string', thumb_url='string', content_url='string', content_type='string', w=int, h=int, duration=int, send_message=BotInlineMessage}
```

View File

@ -21,13 +21,13 @@ description: cdnConfig attributes, type and example
### Example:
```
$cdnConfig = ['_' => 'cdnConfig', 'public_keys' => [CdnPublicKey], ];
$cdnConfig = ['_' => 'cdnConfig', 'public_keys' => [CdnPublicKey]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"cdnConfig","public_keys":["CdnPublicKey"]}
{"_": "cdnConfig", "public_keys": [CdnPublicKey]}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
cdnConfig={_='cdnConfig', public_keys={CdnPublicKey}, }
cdnConfig={_='cdnConfig', public_keys={CdnPublicKey}}
```

View File

@ -22,13 +22,13 @@ description: cdnPublicKey attributes, type and example
### Example:
```
$cdnPublicKey = ['_' => 'cdnPublicKey', 'dc_id' => int, 'public_key' => string, ];
$cdnPublicKey = ['_' => 'cdnPublicKey', 'dc_id' => int, 'public_key' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"cdnPublicKey","dc_id":"int","public_key":"string"}
{"_": "cdnPublicKey", "dc_id": int, "public_key": "string"}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
cdnPublicKey={_='cdnPublicKey', dc_id=int, public_key=string, }
cdnPublicKey={_='cdnPublicKey', dc_id=int, public_key='string'}
```

View File

@ -39,13 +39,13 @@ description: channel attributes, type and example
### Example:
```
$channel = ['_' => 'channel', 'creator' => Bool, 'left' => Bool, 'broadcast' => Bool, 'verified' => Bool, 'megagroup' => Bool, 'restricted' => Bool, 'democracy' => Bool, 'signatures' => Bool, 'min' => Bool, 'id' => int, 'access_hash' => long, 'title' => string, 'username' => string, 'photo' => ChatPhoto, 'date' => int, 'version' => int, 'restriction_reason' => string, 'admin_rights' => ChannelAdminRights, 'banned_rights' => ChannelBannedRights, ];
$channel = ['_' => 'channel', 'creator' => Bool, 'left' => Bool, 'broadcast' => Bool, 'verified' => Bool, 'megagroup' => Bool, 'restricted' => Bool, 'democracy' => Bool, 'signatures' => Bool, 'min' => Bool, 'id' => int, 'access_hash' => long, 'title' => 'string', 'username' => 'string', 'photo' => ChatPhoto, 'date' => int, 'version' => int, 'restriction_reason' => 'string', 'admin_rights' => ChannelAdminRights, 'banned_rights' => ChannelBannedRights];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channel","creator":"Bool","left":"Bool","broadcast":"Bool","verified":"Bool","megagroup":"Bool","restricted":"Bool","democracy":"Bool","signatures":"Bool","min":"Bool","id":"int","access_hash":"long","title":"string","username":"string","photo":"ChatPhoto","date":"int","version":"int","restriction_reason":"string","admin_rights":"ChannelAdminRights","banned_rights":"ChannelBannedRights"}
{"_": "channel", "creator": Bool, "left": Bool, "broadcast": Bool, "verified": Bool, "megagroup": Bool, "restricted": Bool, "democracy": Bool, "signatures": Bool, "min": Bool, "id": int, "access_hash": long, "title": "string", "username": "string", "photo": ChatPhoto, "date": int, "version": int, "restriction_reason": "string", "admin_rights": ChannelAdminRights, "banned_rights": ChannelBannedRights}
```
@ -53,7 +53,7 @@ Or, if you're into Lua:
```
channel={_='channel', creator=Bool, left=Bool, broadcast=Bool, verified=Bool, megagroup=Bool, restricted=Bool, democracy=Bool, signatures=Bool, min=Bool, id=int, access_hash=long, title=string, username=string, photo=ChatPhoto, date=int, version=int, restriction_reason=string, admin_rights=ChannelAdminRights, banned_rights=ChannelBannedRights, }
channel={_='channel', creator=Bool, left=Bool, broadcast=Bool, verified=Bool, megagroup=Bool, restricted=Bool, democracy=Bool, signatures=Bool, min=Bool, id=int, access_hash=long, title='string', username='string', photo=ChatPhoto, date=int, version=int, restriction_reason='string', admin_rights=ChannelAdminRights, banned_rights=ChannelBannedRights}
```

View File

@ -24,13 +24,13 @@ description: channelAdminLogEvent attributes, type and example
### Example:
```
$channelAdminLogEvent = ['_' => 'channelAdminLogEvent', 'id' => long, 'date' => int, 'user_id' => int, 'action' => ChannelAdminLogEventAction, ];
$channelAdminLogEvent = ['_' => 'channelAdminLogEvent', 'id' => long, 'date' => int, 'user_id' => int, 'action' => ChannelAdminLogEventAction];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEvent","id":"long","date":"int","user_id":"int","action":"ChannelAdminLogEventAction"}
{"_": "channelAdminLogEvent", "id": long, "date": int, "user_id": int, "action": ChannelAdminLogEventAction}
```
@ -38,7 +38,7 @@ Or, if you're into Lua:
```
channelAdminLogEvent={_='channelAdminLogEvent', id=long, date=int, user_id=int, action=ChannelAdminLogEventAction, }
channelAdminLogEvent={_='channelAdminLogEvent', id=long, date=int, user_id=int, action=ChannelAdminLogEventAction}
```

View File

@ -22,13 +22,13 @@ description: channelAdminLogEventActionChangeAbout attributes, type and example
### Example:
```
$channelAdminLogEventActionChangeAbout = ['_' => 'channelAdminLogEventActionChangeAbout', 'prev_value' => string, 'new_value' => string, ];
$channelAdminLogEventActionChangeAbout = ['_' => 'channelAdminLogEventActionChangeAbout', 'prev_value' => 'string', 'new_value' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionChangeAbout","prev_value":"string","new_value":"string"}
{"_": "channelAdminLogEventActionChangeAbout", "prev_value": "string", "new_value": "string"}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionChangeAbout={_='channelAdminLogEventActionChangeAbout', prev_value=string, new_value=string, }
channelAdminLogEventActionChangeAbout={_='channelAdminLogEventActionChangeAbout', prev_value='string', new_value='string'}
```

View File

@ -22,13 +22,13 @@ description: channelAdminLogEventActionChangePhoto attributes, type and example
### Example:
```
$channelAdminLogEventActionChangePhoto = ['_' => 'channelAdminLogEventActionChangePhoto', 'prev_photo' => ChatPhoto, 'new_photo' => ChatPhoto, ];
$channelAdminLogEventActionChangePhoto = ['_' => 'channelAdminLogEventActionChangePhoto', 'prev_photo' => ChatPhoto, 'new_photo' => ChatPhoto];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionChangePhoto","prev_photo":"ChatPhoto","new_photo":"ChatPhoto"}
{"_": "channelAdminLogEventActionChangePhoto", "prev_photo": ChatPhoto, "new_photo": ChatPhoto}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionChangePhoto={_='channelAdminLogEventActionChangePhoto', prev_photo=ChatPhoto, new_photo=ChatPhoto, }
channelAdminLogEventActionChangePhoto={_='channelAdminLogEventActionChangePhoto', prev_photo=ChatPhoto, new_photo=ChatPhoto}
```

View File

@ -22,13 +22,13 @@ description: channelAdminLogEventActionChangeTitle attributes, type and example
### Example:
```
$channelAdminLogEventActionChangeTitle = ['_' => 'channelAdminLogEventActionChangeTitle', 'prev_value' => string, 'new_value' => string, ];
$channelAdminLogEventActionChangeTitle = ['_' => 'channelAdminLogEventActionChangeTitle', 'prev_value' => 'string', 'new_value' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionChangeTitle","prev_value":"string","new_value":"string"}
{"_": "channelAdminLogEventActionChangeTitle", "prev_value": "string", "new_value": "string"}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionChangeTitle={_='channelAdminLogEventActionChangeTitle', prev_value=string, new_value=string, }
channelAdminLogEventActionChangeTitle={_='channelAdminLogEventActionChangeTitle', prev_value='string', new_value='string'}
```

View File

@ -22,13 +22,13 @@ description: channelAdminLogEventActionChangeUsername attributes, type and examp
### Example:
```
$channelAdminLogEventActionChangeUsername = ['_' => 'channelAdminLogEventActionChangeUsername', 'prev_value' => string, 'new_value' => string, ];
$channelAdminLogEventActionChangeUsername = ['_' => 'channelAdminLogEventActionChangeUsername', 'prev_value' => 'string', 'new_value' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionChangeUsername","prev_value":"string","new_value":"string"}
{"_": "channelAdminLogEventActionChangeUsername", "prev_value": "string", "new_value": "string"}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionChangeUsername={_='channelAdminLogEventActionChangeUsername', prev_value=string, new_value=string, }
channelAdminLogEventActionChangeUsername={_='channelAdminLogEventActionChangeUsername', prev_value='string', new_value='string'}
```

View File

@ -21,13 +21,13 @@ description: channelAdminLogEventActionDeleteMessage attributes, type and exampl
### Example:
```
$channelAdminLogEventActionDeleteMessage = ['_' => 'channelAdminLogEventActionDeleteMessage', 'message' => Message, ];
$channelAdminLogEventActionDeleteMessage = ['_' => 'channelAdminLogEventActionDeleteMessage', 'message' => Message];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionDeleteMessage","message":"Message"}
{"_": "channelAdminLogEventActionDeleteMessage", "message": Message}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionDeleteMessage={_='channelAdminLogEventActionDeleteMessage', message=Message, }
channelAdminLogEventActionDeleteMessage={_='channelAdminLogEventActionDeleteMessage', message=Message}
```

View File

@ -22,13 +22,13 @@ description: channelAdminLogEventActionEditMessage attributes, type and example
### Example:
```
$channelAdminLogEventActionEditMessage = ['_' => 'channelAdminLogEventActionEditMessage', 'prev_message' => Message, 'new_message' => Message, ];
$channelAdminLogEventActionEditMessage = ['_' => 'channelAdminLogEventActionEditMessage', 'prev_message' => Message, 'new_message' => Message];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionEditMessage","prev_message":"Message","new_message":"Message"}
{"_": "channelAdminLogEventActionEditMessage", "prev_message": Message, "new_message": Message}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionEditMessage={_='channelAdminLogEventActionEditMessage', prev_message=Message, new_message=Message, }
channelAdminLogEventActionEditMessage={_='channelAdminLogEventActionEditMessage', prev_message=Message, new_message=Message}
```

View File

@ -21,13 +21,13 @@ description: channelAdminLogEventActionParticipantInvite attributes, type and ex
### Example:
```
$channelAdminLogEventActionParticipantInvite = ['_' => 'channelAdminLogEventActionParticipantInvite', 'participant' => ChannelParticipant, ];
$channelAdminLogEventActionParticipantInvite = ['_' => 'channelAdminLogEventActionParticipantInvite', 'participant' => ChannelParticipant];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionParticipantInvite","participant":"ChannelParticipant"}
{"_": "channelAdminLogEventActionParticipantInvite", "participant": ChannelParticipant}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionParticipantInvite={_='channelAdminLogEventActionParticipantInvite', participant=ChannelParticipant, }
channelAdminLogEventActionParticipantInvite={_='channelAdminLogEventActionParticipantInvite', participant=ChannelParticipant}
```

View File

@ -16,13 +16,13 @@ description: channelAdminLogEventActionParticipantJoin attributes, type and exam
### Example:
```
$channelAdminLogEventActionParticipantJoin = ['_' => 'channelAdminLogEventActionParticipantJoin', ];
$channelAdminLogEventActionParticipantJoin = ['_' => 'channelAdminLogEventActionParticipantJoin'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionParticipantJoin"}
{"_": "channelAdminLogEventActionParticipantJoin"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionParticipantJoin={_='channelAdminLogEventActionParticipantJoin', }
channelAdminLogEventActionParticipantJoin={_='channelAdminLogEventActionParticipantJoin'}
```

View File

@ -16,13 +16,13 @@ description: channelAdminLogEventActionParticipantLeave attributes, type and exa
### Example:
```
$channelAdminLogEventActionParticipantLeave = ['_' => 'channelAdminLogEventActionParticipantLeave', ];
$channelAdminLogEventActionParticipantLeave = ['_' => 'channelAdminLogEventActionParticipantLeave'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionParticipantLeave"}
{"_": "channelAdminLogEventActionParticipantLeave"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionParticipantLeave={_='channelAdminLogEventActionParticipantLeave', }
channelAdminLogEventActionParticipantLeave={_='channelAdminLogEventActionParticipantLeave'}
```

View File

@ -22,13 +22,13 @@ description: channelAdminLogEventActionParticipantToggleAdmin attributes, type a
### Example:
```
$channelAdminLogEventActionParticipantToggleAdmin = ['_' => 'channelAdminLogEventActionParticipantToggleAdmin', 'prev_participant' => ChannelParticipant, 'new_participant' => ChannelParticipant, ];
$channelAdminLogEventActionParticipantToggleAdmin = ['_' => 'channelAdminLogEventActionParticipantToggleAdmin', 'prev_participant' => ChannelParticipant, 'new_participant' => ChannelParticipant];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionParticipantToggleAdmin","prev_participant":"ChannelParticipant","new_participant":"ChannelParticipant"}
{"_": "channelAdminLogEventActionParticipantToggleAdmin", "prev_participant": ChannelParticipant, "new_participant": ChannelParticipant}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionParticipantToggleAdmin={_='channelAdminLogEventActionParticipantToggleAdmin', prev_participant=ChannelParticipant, new_participant=ChannelParticipant, }
channelAdminLogEventActionParticipantToggleAdmin={_='channelAdminLogEventActionParticipantToggleAdmin', prev_participant=ChannelParticipant, new_participant=ChannelParticipant}
```

View File

@ -22,13 +22,13 @@ description: channelAdminLogEventActionParticipantToggleBan attributes, type and
### Example:
```
$channelAdminLogEventActionParticipantToggleBan = ['_' => 'channelAdminLogEventActionParticipantToggleBan', 'prev_participant' => ChannelParticipant, 'new_participant' => ChannelParticipant, ];
$channelAdminLogEventActionParticipantToggleBan = ['_' => 'channelAdminLogEventActionParticipantToggleBan', 'prev_participant' => ChannelParticipant, 'new_participant' => ChannelParticipant];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionParticipantToggleBan","prev_participant":"ChannelParticipant","new_participant":"ChannelParticipant"}
{"_": "channelAdminLogEventActionParticipantToggleBan", "prev_participant": ChannelParticipant, "new_participant": ChannelParticipant}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionParticipantToggleBan={_='channelAdminLogEventActionParticipantToggleBan', prev_participant=ChannelParticipant, new_participant=ChannelParticipant, }
channelAdminLogEventActionParticipantToggleBan={_='channelAdminLogEventActionParticipantToggleBan', prev_participant=ChannelParticipant, new_participant=ChannelParticipant}
```

View File

@ -21,13 +21,13 @@ description: channelAdminLogEventActionToggleInvites attributes, type and exampl
### Example:
```
$channelAdminLogEventActionToggleInvites = ['_' => 'channelAdminLogEventActionToggleInvites', 'new_value' => Bool, ];
$channelAdminLogEventActionToggleInvites = ['_' => 'channelAdminLogEventActionToggleInvites', 'new_value' => Bool];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionToggleInvites","new_value":"Bool"}
{"_": "channelAdminLogEventActionToggleInvites", "new_value": Bool}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionToggleInvites={_='channelAdminLogEventActionToggleInvites', new_value=Bool, }
channelAdminLogEventActionToggleInvites={_='channelAdminLogEventActionToggleInvites', new_value=Bool}
```

View File

@ -21,13 +21,13 @@ description: channelAdminLogEventActionToggleSignatures attributes, type and exa
### Example:
```
$channelAdminLogEventActionToggleSignatures = ['_' => 'channelAdminLogEventActionToggleSignatures', 'new_value' => Bool, ];
$channelAdminLogEventActionToggleSignatures = ['_' => 'channelAdminLogEventActionToggleSignatures', 'new_value' => Bool];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionToggleSignatures","new_value":"Bool"}
{"_": "channelAdminLogEventActionToggleSignatures", "new_value": Bool}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionToggleSignatures={_='channelAdminLogEventActionToggleSignatures', new_value=Bool, }
channelAdminLogEventActionToggleSignatures={_='channelAdminLogEventActionToggleSignatures', new_value=Bool}
```

View File

@ -21,13 +21,13 @@ description: channelAdminLogEventActionUpdatePinned attributes, type and example
### Example:
```
$channelAdminLogEventActionUpdatePinned = ['_' => 'channelAdminLogEventActionUpdatePinned', 'message' => Message, ];
$channelAdminLogEventActionUpdatePinned = ['_' => 'channelAdminLogEventActionUpdatePinned', 'message' => Message];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionUpdatePinned","message":"Message"}
{"_": "channelAdminLogEventActionUpdatePinned", "message": Message}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
channelAdminLogEventActionUpdatePinned={_='channelAdminLogEventActionUpdatePinned', message=Message, }
channelAdminLogEventActionUpdatePinned={_='channelAdminLogEventActionUpdatePinned', message=Message}
```

View File

@ -34,13 +34,13 @@ description: channelAdminLogEventsFilter attributes, type and example
### Example:
```
$channelAdminLogEventsFilter = ['_' => 'channelAdminLogEventsFilter', 'join' => Bool, 'leave' => Bool, 'invite' => Bool, 'ban' => Bool, 'unban' => Bool, 'kick' => Bool, 'unkick' => Bool, 'promote' => Bool, 'demote' => Bool, 'info' => Bool, 'settings' => Bool, 'pinned' => Bool, 'edit' => Bool, 'delete' => Bool, ];
$channelAdminLogEventsFilter = ['_' => 'channelAdminLogEventsFilter', 'join' => Bool, 'leave' => Bool, 'invite' => Bool, 'ban' => Bool, 'unban' => Bool, 'kick' => Bool, 'unkick' => Bool, 'promote' => Bool, 'demote' => Bool, 'info' => Bool, 'settings' => Bool, 'pinned' => Bool, 'edit' => Bool, 'delete' => Bool];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventsFilter","join":"Bool","leave":"Bool","invite":"Bool","ban":"Bool","unban":"Bool","kick":"Bool","unkick":"Bool","promote":"Bool","demote":"Bool","info":"Bool","settings":"Bool","pinned":"Bool","edit":"Bool","delete":"Bool"}
{"_": "channelAdminLogEventsFilter", "join": Bool, "leave": Bool, "invite": Bool, "ban": Bool, "unban": Bool, "kick": Bool, "unkick": Bool, "promote": Bool, "demote": Bool, "info": Bool, "settings": Bool, "pinned": Bool, "edit": Bool, "delete": Bool}
```
@ -48,7 +48,7 @@ Or, if you're into Lua:
```
channelAdminLogEventsFilter={_='channelAdminLogEventsFilter', join=Bool, leave=Bool, invite=Bool, ban=Bool, unban=Bool, kick=Bool, unkick=Bool, promote=Bool, demote=Bool, info=Bool, settings=Bool, pinned=Bool, edit=Bool, delete=Bool, }
channelAdminLogEventsFilter={_='channelAdminLogEventsFilter', join=Bool, leave=Bool, invite=Bool, ban=Bool, unban=Bool, kick=Bool, unkick=Bool, promote=Bool, demote=Bool, info=Bool, settings=Bool, pinned=Bool, edit=Bool, delete=Bool}
```

View File

@ -29,13 +29,13 @@ description: channelAdminRights attributes, type and example
### Example:
```
$channelAdminRights = ['_' => 'channelAdminRights', 'change_info' => Bool, 'post_messages' => Bool, 'edit_messages' => Bool, 'delete_messages' => Bool, 'ban_users' => Bool, 'invite_users' => Bool, 'invite_link' => Bool, 'pin_messages' => Bool, 'add_admins' => Bool, ];
$channelAdminRights = ['_' => 'channelAdminRights', 'change_info' => Bool, 'post_messages' => Bool, 'edit_messages' => Bool, 'delete_messages' => Bool, 'ban_users' => Bool, 'invite_users' => Bool, 'invite_link' => Bool, 'pin_messages' => Bool, 'add_admins' => Bool];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminRights","change_info":"Bool","post_messages":"Bool","edit_messages":"Bool","delete_messages":"Bool","ban_users":"Bool","invite_users":"Bool","invite_link":"Bool","pin_messages":"Bool","add_admins":"Bool"}
{"_": "channelAdminRights", "change_info": Bool, "post_messages": Bool, "edit_messages": Bool, "delete_messages": Bool, "ban_users": Bool, "invite_users": Bool, "invite_link": Bool, "pin_messages": Bool, "add_admins": Bool}
```
@ -43,7 +43,7 @@ Or, if you're into Lua:
```
channelAdminRights={_='channelAdminRights', change_info=Bool, post_messages=Bool, edit_messages=Bool, delete_messages=Bool, ban_users=Bool, invite_users=Bool, invite_link=Bool, pin_messages=Bool, add_admins=Bool, }
channelAdminRights={_='channelAdminRights', change_info=Bool, post_messages=Bool, edit_messages=Bool, delete_messages=Bool, ban_users=Bool, invite_users=Bool, invite_link=Bool, pin_messages=Bool, add_admins=Bool}
```

View File

@ -29,13 +29,13 @@ description: channelBannedRights attributes, type and example
### Example:
```
$channelBannedRights = ['_' => 'channelBannedRights', 'view_messages' => Bool, 'send_messages' => Bool, 'send_media' => Bool, 'send_stickers' => Bool, 'send_gifs' => Bool, 'send_games' => Bool, 'send_inline' => Bool, 'embed_links' => Bool, 'until_date' => int, ];
$channelBannedRights = ['_' => 'channelBannedRights', 'view_messages' => Bool, 'send_messages' => Bool, 'send_media' => Bool, 'send_stickers' => Bool, 'send_gifs' => Bool, 'send_games' => Bool, 'send_inline' => Bool, 'embed_links' => Bool, 'until_date' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelBannedRights","view_messages":"Bool","send_messages":"Bool","send_media":"Bool","send_stickers":"Bool","send_gifs":"Bool","send_games":"Bool","send_inline":"Bool","embed_links":"Bool","until_date":"int"}
{"_": "channelBannedRights", "view_messages": Bool, "send_messages": Bool, "send_media": Bool, "send_stickers": Bool, "send_gifs": Bool, "send_games": Bool, "send_inline": Bool, "embed_links": Bool, "until_date": int}
```
@ -43,7 +43,7 @@ Or, if you're into Lua:
```
channelBannedRights={_='channelBannedRights', view_messages=Bool, send_messages=Bool, send_media=Bool, send_stickers=Bool, send_gifs=Bool, send_games=Bool, send_inline=Bool, embed_links=Bool, until_date=int, }
channelBannedRights={_='channelBannedRights', view_messages=Bool, send_messages=Bool, send_media=Bool, send_stickers=Bool, send_gifs=Bool, send_games=Bool, send_inline=Bool, embed_links=Bool, until_date=int}
```

View File

@ -26,13 +26,13 @@ description: channelForbidden attributes, type and example
### Example:
```
$channelForbidden = ['_' => 'channelForbidden', 'broadcast' => Bool, 'megagroup' => Bool, 'id' => int, 'access_hash' => long, 'title' => string, 'until_date' => int, ];
$channelForbidden = ['_' => 'channelForbidden', 'broadcast' => Bool, 'megagroup' => Bool, 'id' => int, 'access_hash' => long, 'title' => 'string', 'until_date' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelForbidden","broadcast":"Bool","megagroup":"Bool","id":"int","access_hash":"long","title":"string","until_date":"int"}
{"_": "channelForbidden", "broadcast": Bool, "megagroup": Bool, "id": int, "access_hash": long, "title": "string", "until_date": int}
```
@ -40,7 +40,7 @@ Or, if you're into Lua:
```
channelForbidden={_='channelForbidden', broadcast=Bool, megagroup=Bool, id=int, access_hash=long, title=string, until_date=int, }
channelForbidden={_='channelForbidden', broadcast=Bool, megagroup=Bool, id=int, access_hash=long, title='string', until_date=int}
```

View File

@ -38,13 +38,13 @@ description: channelFull attributes, type and example
### Example:
```
$channelFull = ['_' => 'channelFull', 'can_view_participants' => Bool, 'can_set_username' => Bool, 'id' => int, 'about' => string, 'participants_count' => int, 'admins_count' => int, 'kicked_count' => int, 'banned_count' => int, 'read_inbox_max_id' => int, 'read_outbox_max_id' => int, 'unread_count' => int, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'exported_invite' => ExportedChatInvite, 'bot_info' => [BotInfo], 'migrated_from_chat_id' => int, 'migrated_from_max_id' => int, 'pinned_msg_id' => int, ];
$channelFull = ['_' => 'channelFull', 'can_view_participants' => Bool, 'can_set_username' => Bool, 'id' => int, 'about' => 'string', 'participants_count' => int, 'admins_count' => int, 'kicked_count' => int, 'banned_count' => int, 'read_inbox_max_id' => int, 'read_outbox_max_id' => int, 'unread_count' => int, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'exported_invite' => ExportedChatInvite, 'bot_info' => [BotInfo], 'migrated_from_chat_id' => int, 'migrated_from_max_id' => int, 'pinned_msg_id' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelFull","can_view_participants":"Bool","can_set_username":"Bool","id":"int","about":"string","participants_count":"int","admins_count":"int","kicked_count":"int","banned_count":"int","read_inbox_max_id":"int","read_outbox_max_id":"int","unread_count":"int","chat_photo":"Photo","notify_settings":"PeerNotifySettings","exported_invite":"ExportedChatInvite","bot_info":["BotInfo"],"migrated_from_chat_id":"int","migrated_from_max_id":"int","pinned_msg_id":"int"}
{"_": "channelFull", "can_view_participants": Bool, "can_set_username": Bool, "id": int, "about": "string", "participants_count": int, "admins_count": int, "kicked_count": int, "banned_count": int, "read_inbox_max_id": int, "read_outbox_max_id": int, "unread_count": int, "chat_photo": Photo, "notify_settings": PeerNotifySettings, "exported_invite": ExportedChatInvite, "bot_info": [BotInfo], "migrated_from_chat_id": int, "migrated_from_max_id": int, "pinned_msg_id": int}
```
@ -52,7 +52,7 @@ Or, if you're into Lua:
```
channelFull={_='channelFull', can_view_participants=Bool, can_set_username=Bool, id=int, about=string, participants_count=int, admins_count=int, kicked_count=int, banned_count=int, read_inbox_max_id=int, read_outbox_max_id=int, unread_count=int, chat_photo=Photo, notify_settings=PeerNotifySettings, exported_invite=ExportedChatInvite, bot_info={BotInfo}, migrated_from_chat_id=int, migrated_from_max_id=int, pinned_msg_id=int, }
channelFull={_='channelFull', can_view_participants=Bool, can_set_username=Bool, id=int, about='string', participants_count=int, admins_count=int, kicked_count=int, banned_count=int, read_inbox_max_id=int, read_outbox_max_id=int, unread_count=int, chat_photo=Photo, notify_settings=PeerNotifySettings, exported_invite=ExportedChatInvite, bot_info={BotInfo}, migrated_from_chat_id=int, migrated_from_max_id=int, pinned_msg_id=int}
```

View File

@ -22,13 +22,13 @@ description: channelMessagesFilter attributes, type and example
### Example:
```
$channelMessagesFilter = ['_' => 'channelMessagesFilter', 'exclude_new_messages' => Bool, 'ranges' => [MessageRange], ];
$channelMessagesFilter = ['_' => 'channelMessagesFilter', 'exclude_new_messages' => Bool, 'ranges' => [MessageRange]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelMessagesFilter","exclude_new_messages":"Bool","ranges":["MessageRange"]}
{"_": "channelMessagesFilter", "exclude_new_messages": Bool, "ranges": [MessageRange]}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
channelMessagesFilter={_='channelMessagesFilter', exclude_new_messages=Bool, ranges={MessageRange}, }
channelMessagesFilter={_='channelMessagesFilter', exclude_new_messages=Bool, ranges={MessageRange}}
```

View File

@ -16,13 +16,13 @@ description: channelMessagesFilterEmpty attributes, type and example
### Example:
```
$channelMessagesFilterEmpty = ['_' => 'channelMessagesFilterEmpty', ];
$channelMessagesFilterEmpty = ['_' => 'channelMessagesFilterEmpty'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelMessagesFilterEmpty"}
{"_": "channelMessagesFilterEmpty"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
channelMessagesFilterEmpty={_='channelMessagesFilterEmpty', }
channelMessagesFilterEmpty={_='channelMessagesFilterEmpty'}
```

View File

@ -22,13 +22,13 @@ description: channelParticipant attributes, type and example
### Example:
```
$channelParticipant = ['_' => 'channelParticipant', 'user_id' => int, 'date' => int, ];
$channelParticipant = ['_' => 'channelParticipant', 'user_id' => int, 'date' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelParticipant","user_id":"int","date":"int"}
{"_": "channelParticipant", "user_id": int, "date": int}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
channelParticipant={_='channelParticipant', user_id=int, date=int, }
channelParticipant={_='channelParticipant', user_id=int, date=int}
```

View File

@ -26,13 +26,13 @@ description: channelParticipantAdmin attributes, type and example
### Example:
```
$channelParticipantAdmin = ['_' => 'channelParticipantAdmin', 'can_edit' => Bool, 'user_id' => int, 'inviter_id' => int, 'promoted_by' => int, 'date' => int, 'admin_rights' => ChannelAdminRights, ];
$channelParticipantAdmin = ['_' => 'channelParticipantAdmin', 'can_edit' => Bool, 'user_id' => int, 'inviter_id' => int, 'promoted_by' => int, 'date' => int, 'admin_rights' => ChannelAdminRights];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelParticipantAdmin","can_edit":"Bool","user_id":"int","inviter_id":"int","promoted_by":"int","date":"int","admin_rights":"ChannelAdminRights"}
{"_": "channelParticipantAdmin", "can_edit": Bool, "user_id": int, "inviter_id": int, "promoted_by": int, "date": int, "admin_rights": ChannelAdminRights}
```
@ -40,7 +40,7 @@ Or, if you're into Lua:
```
channelParticipantAdmin={_='channelParticipantAdmin', can_edit=Bool, user_id=int, inviter_id=int, promoted_by=int, date=int, admin_rights=ChannelAdminRights, }
channelParticipantAdmin={_='channelParticipantAdmin', can_edit=Bool, user_id=int, inviter_id=int, promoted_by=int, date=int, admin_rights=ChannelAdminRights}
```

View File

@ -25,13 +25,13 @@ description: channelParticipantBanned attributes, type and example
### Example:
```
$channelParticipantBanned = ['_' => 'channelParticipantBanned', 'left' => Bool, 'user_id' => int, 'kicked_by' => int, 'date' => int, 'banned_rights' => ChannelBannedRights, ];
$channelParticipantBanned = ['_' => 'channelParticipantBanned', 'left' => Bool, 'user_id' => int, 'kicked_by' => int, 'date' => int, 'banned_rights' => ChannelBannedRights];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelParticipantBanned","left":"Bool","user_id":"int","kicked_by":"int","date":"int","banned_rights":"ChannelBannedRights"}
{"_": "channelParticipantBanned", "left": Bool, "user_id": int, "kicked_by": int, "date": int, "banned_rights": ChannelBannedRights}
```
@ -39,7 +39,7 @@ Or, if you're into Lua:
```
channelParticipantBanned={_='channelParticipantBanned', left=Bool, user_id=int, kicked_by=int, date=int, banned_rights=ChannelBannedRights, }
channelParticipantBanned={_='channelParticipantBanned', left=Bool, user_id=int, kicked_by=int, date=int, banned_rights=ChannelBannedRights}
```

View File

@ -21,13 +21,13 @@ description: channelParticipantCreator attributes, type and example
### Example:
```
$channelParticipantCreator = ['_' => 'channelParticipantCreator', 'user_id' => int, ];
$channelParticipantCreator = ['_' => 'channelParticipantCreator', 'user_id' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelParticipantCreator","user_id":"int"}
{"_": "channelParticipantCreator", "user_id": int}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
channelParticipantCreator={_='channelParticipantCreator', user_id=int, }
channelParticipantCreator={_='channelParticipantCreator', user_id=int}
```

View File

@ -23,13 +23,13 @@ description: channelParticipantSelf attributes, type and example
### Example:
```
$channelParticipantSelf = ['_' => 'channelParticipantSelf', 'user_id' => int, 'inviter_id' => int, 'date' => int, ];
$channelParticipantSelf = ['_' => 'channelParticipantSelf', 'user_id' => int, 'inviter_id' => int, 'date' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelParticipantSelf","user_id":"int","inviter_id":"int","date":"int"}
{"_": "channelParticipantSelf", "user_id": int, "inviter_id": int, "date": int}
```
@ -37,7 +37,7 @@ Or, if you're into Lua:
```
channelParticipantSelf={_='channelParticipantSelf', user_id=int, inviter_id=int, date=int, }
channelParticipantSelf={_='channelParticipantSelf', user_id=int, inviter_id=int, date=int}
```

View File

@ -16,13 +16,13 @@ description: channelParticipantsAdmins attributes, type and example
### Example:
```
$channelParticipantsAdmins = ['_' => 'channelParticipantsAdmins', ];
$channelParticipantsAdmins = ['_' => 'channelParticipantsAdmins'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelParticipantsAdmins"}
{"_": "channelParticipantsAdmins"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
channelParticipantsAdmins={_='channelParticipantsAdmins', }
channelParticipantsAdmins={_='channelParticipantsAdmins'}
```

View File

@ -21,13 +21,13 @@ description: channelParticipantsBanned attributes, type and example
### Example:
```
$channelParticipantsBanned = ['_' => 'channelParticipantsBanned', 'q' => string, ];
$channelParticipantsBanned = ['_' => 'channelParticipantsBanned', 'q' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelParticipantsBanned","q":"string"}
{"_": "channelParticipantsBanned", "q": "string"}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
channelParticipantsBanned={_='channelParticipantsBanned', q=string, }
channelParticipantsBanned={_='channelParticipantsBanned', q='string'}
```

View File

@ -16,13 +16,13 @@ description: channelParticipantsBots attributes, type and example
### Example:
```
$channelParticipantsBots = ['_' => 'channelParticipantsBots', ];
$channelParticipantsBots = ['_' => 'channelParticipantsBots'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelParticipantsBots"}
{"_": "channelParticipantsBots"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
channelParticipantsBots={_='channelParticipantsBots', }
channelParticipantsBots={_='channelParticipantsBots'}
```

View File

@ -21,13 +21,13 @@ description: channelParticipantsKicked attributes, type and example
### Example:
```
$channelParticipantsKicked = ['_' => 'channelParticipantsKicked', 'q' => string, ];
$channelParticipantsKicked = ['_' => 'channelParticipantsKicked', 'q' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelParticipantsKicked","q":"string"}
{"_": "channelParticipantsKicked", "q": "string"}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
channelParticipantsKicked={_='channelParticipantsKicked', q=string, }
channelParticipantsKicked={_='channelParticipantsKicked', q='string'}
```

View File

@ -16,13 +16,13 @@ description: channelParticipantsRecent attributes, type and example
### Example:
```
$channelParticipantsRecent = ['_' => 'channelParticipantsRecent', ];
$channelParticipantsRecent = ['_' => 'channelParticipantsRecent'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelParticipantsRecent"}
{"_": "channelParticipantsRecent"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
channelParticipantsRecent={_='channelParticipantsRecent', }
channelParticipantsRecent={_='channelParticipantsRecent'}
```

View File

@ -21,13 +21,13 @@ description: channelParticipantsSearch attributes, type and example
### Example:
```
$channelParticipantsSearch = ['_' => 'channelParticipantsSearch', 'q' => string, ];
$channelParticipantsSearch = ['_' => 'channelParticipantsSearch', 'q' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelParticipantsSearch","q":"string"}
{"_": "channelParticipantsSearch", "q": "string"}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
channelParticipantsSearch={_='channelParticipantsSearch', q=string, }
channelParticipantsSearch={_='channelParticipantsSearch', q='string'}
```

View File

@ -23,13 +23,13 @@ description: channels_adminLogResults attributes, type and example
### Example:
```
$channels_adminLogResults = ['_' => 'channels.adminLogResults', 'events' => [ChannelAdminLogEvent], 'chats' => [Chat], 'users' => [User], ];
$channels_adminLogResults = ['_' => 'channels.adminLogResults', 'events' => [ChannelAdminLogEvent], 'chats' => [Chat], 'users' => [User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channels.adminLogResults","events":["ChannelAdminLogEvent"],"chats":["Chat"],"users":["User"]}
{"_": "channels.adminLogResults", "events": [ChannelAdminLogEvent], "chats": [Chat], "users": [User]}
```
@ -37,7 +37,7 @@ Or, if you're into Lua:
```
channels_adminLogResults={_='channels.adminLogResults', events={ChannelAdminLogEvent}, chats={Chat}, users={User}, }
channels_adminLogResults={_='channels.adminLogResults', events={ChannelAdminLogEvent}, chats={Chat}, users={User}}
```

View File

@ -22,13 +22,13 @@ description: channels_channelParticipant attributes, type and example
### Example:
```
$channels_channelParticipant = ['_' => 'channels.channelParticipant', 'participant' => ChannelParticipant, 'users' => [User], ];
$channels_channelParticipant = ['_' => 'channels.channelParticipant', 'participant' => ChannelParticipant, 'users' => [User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channels.channelParticipant","participant":"ChannelParticipant","users":["User"]}
{"_": "channels.channelParticipant", "participant": ChannelParticipant, "users": [User]}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
channels_channelParticipant={_='channels.channelParticipant', participant=ChannelParticipant, users={User}, }
channels_channelParticipant={_='channels.channelParticipant', participant=ChannelParticipant, users={User}}
```

View File

@ -23,13 +23,13 @@ description: channels_channelParticipants attributes, type and example
### Example:
```
$channels_channelParticipants = ['_' => 'channels.channelParticipants', 'count' => int, 'participants' => [ChannelParticipant], 'users' => [User], ];
$channels_channelParticipants = ['_' => 'channels.channelParticipants', 'count' => int, 'participants' => [ChannelParticipant], 'users' => [User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channels.channelParticipants","count":"int","participants":["ChannelParticipant"],"users":["User"]}
{"_": "channels.channelParticipants", "count": int, "participants": [ChannelParticipant], "users": [User]}
```
@ -37,7 +37,7 @@ Or, if you're into Lua:
```
channels_channelParticipants={_='channels.channelParticipants', count=int, participants={ChannelParticipant}, users={User}, }
channels_channelParticipants={_='channels.channelParticipants', count=int, participants={ChannelParticipant}, users={User}}
```

View File

@ -33,13 +33,13 @@ description: chat attributes, type and example
### Example:
```
$chat = ['_' => 'chat', 'creator' => Bool, 'kicked' => Bool, 'left' => Bool, 'admins_enabled' => Bool, 'admin' => Bool, 'deactivated' => Bool, 'id' => int, 'title' => string, 'photo' => ChatPhoto, 'participants_count' => int, 'date' => int, 'version' => int, 'migrated_to' => InputChannel, ];
$chat = ['_' => 'chat', 'creator' => Bool, 'kicked' => Bool, 'left' => Bool, 'admins_enabled' => Bool, 'admin' => Bool, 'deactivated' => Bool, 'id' => int, 'title' => 'string', 'photo' => ChatPhoto, 'participants_count' => int, 'date' => int, 'version' => int, 'migrated_to' => InputChannel];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chat","creator":"Bool","kicked":"Bool","left":"Bool","admins_enabled":"Bool","admin":"Bool","deactivated":"Bool","id":"int","title":"string","photo":"ChatPhoto","participants_count":"int","date":"int","version":"int","migrated_to":"InputChannel"}
{"_": "chat", "creator": Bool, "kicked": Bool, "left": Bool, "admins_enabled": Bool, "admin": Bool, "deactivated": Bool, "id": int, "title": "string", "photo": ChatPhoto, "participants_count": int, "date": int, "version": int, "migrated_to": InputChannel}
```
@ -47,7 +47,7 @@ Or, if you're into Lua:
```
chat={_='chat', creator=Bool, kicked=Bool, left=Bool, admins_enabled=Bool, admin=Bool, deactivated=Bool, id=int, title=string, photo=ChatPhoto, participants_count=int, date=int, version=int, migrated_to=InputChannel, }
chat={_='chat', creator=Bool, kicked=Bool, left=Bool, admins_enabled=Bool, admin=Bool, deactivated=Bool, id=int, title='string', photo=ChatPhoto, participants_count=int, date=int, version=int, migrated_to=InputChannel}
```

View File

@ -21,13 +21,13 @@ description: chatEmpty attributes, type and example
### Example:
```
$chatEmpty = ['_' => 'chatEmpty', 'id' => int, ];
$chatEmpty = ['_' => 'chatEmpty', 'id' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatEmpty","id":"int"}
{"_": "chatEmpty", "id": int}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
chatEmpty={_='chatEmpty', id=int, }
chatEmpty={_='chatEmpty', id=int}
```

View File

@ -22,13 +22,13 @@ description: chatForbidden attributes, type and example
### Example:
```
$chatForbidden = ['_' => 'chatForbidden', 'id' => int, 'title' => string, ];
$chatForbidden = ['_' => 'chatForbidden', 'id' => int, 'title' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatForbidden","id":"int","title":"string"}
{"_": "chatForbidden", "id": int, "title": "string"}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
chatForbidden={_='chatForbidden', id=int, title=string, }
chatForbidden={_='chatForbidden', id=int, title='string'}
```

View File

@ -26,13 +26,13 @@ description: chatFull attributes, type and example
### Example:
```
$chatFull = ['_' => 'chatFull', 'id' => int, 'participants' => ChatParticipants, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'exported_invite' => ExportedChatInvite, 'bot_info' => [BotInfo], ];
$chatFull = ['_' => 'chatFull', 'id' => int, 'participants' => ChatParticipants, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'exported_invite' => ExportedChatInvite, 'bot_info' => [BotInfo]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatFull","id":"int","participants":"ChatParticipants","chat_photo":"Photo","notify_settings":"PeerNotifySettings","exported_invite":"ExportedChatInvite","bot_info":["BotInfo"]}
{"_": "chatFull", "id": int, "participants": ChatParticipants, "chat_photo": Photo, "notify_settings": PeerNotifySettings, "exported_invite": ExportedChatInvite, "bot_info": [BotInfo]}
```
@ -40,7 +40,7 @@ Or, if you're into Lua:
```
chatFull={_='chatFull', id=int, participants=ChatParticipants, chat_photo=Photo, notify_settings=PeerNotifySettings, exported_invite=ExportedChatInvite, bot_info={BotInfo}, }
chatFull={_='chatFull', id=int, participants=ChatParticipants, chat_photo=Photo, notify_settings=PeerNotifySettings, exported_invite=ExportedChatInvite, bot_info={BotInfo}}
```

View File

@ -28,13 +28,13 @@ description: chatInvite attributes, type and example
### Example:
```
$chatInvite = ['_' => 'chatInvite', 'channel' => Bool, 'broadcast' => Bool, 'public' => Bool, 'megagroup' => Bool, 'title' => string, 'photo' => ChatPhoto, 'participants_count' => int, 'participants' => [User], ];
$chatInvite = ['_' => 'chatInvite', 'channel' => Bool, 'broadcast' => Bool, 'public' => Bool, 'megagroup' => Bool, 'title' => 'string', 'photo' => ChatPhoto, 'participants_count' => int, 'participants' => [User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatInvite","channel":"Bool","broadcast":"Bool","public":"Bool","megagroup":"Bool","title":"string","photo":"ChatPhoto","participants_count":"int","participants":["User"]}
{"_": "chatInvite", "channel": Bool, "broadcast": Bool, "public": Bool, "megagroup": Bool, "title": "string", "photo": ChatPhoto, "participants_count": int, "participants": [User]}
```
@ -42,7 +42,7 @@ Or, if you're into Lua:
```
chatInvite={_='chatInvite', channel=Bool, broadcast=Bool, public=Bool, megagroup=Bool, title=string, photo=ChatPhoto, participants_count=int, participants={User}, }
chatInvite={_='chatInvite', channel=Bool, broadcast=Bool, public=Bool, megagroup=Bool, title='string', photo=ChatPhoto, participants_count=int, participants={User}}
```

View File

@ -21,13 +21,13 @@ description: chatInviteAlready attributes, type and example
### Example:
```
$chatInviteAlready = ['_' => 'chatInviteAlready', 'chat' => Chat, ];
$chatInviteAlready = ['_' => 'chatInviteAlready', 'chat' => Chat];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatInviteAlready","chat":"Chat"}
{"_": "chatInviteAlready", "chat": Chat}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
chatInviteAlready={_='chatInviteAlready', chat=Chat, }
chatInviteAlready={_='chatInviteAlready', chat=Chat}
```

View File

@ -16,13 +16,13 @@ description: chatInviteEmpty attributes, type and example
### Example:
```
$chatInviteEmpty = ['_' => 'chatInviteEmpty', ];
$chatInviteEmpty = ['_' => 'chatInviteEmpty'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatInviteEmpty"}
{"_": "chatInviteEmpty"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
chatInviteEmpty={_='chatInviteEmpty', }
chatInviteEmpty={_='chatInviteEmpty'}
```

View File

@ -21,13 +21,13 @@ description: chatInviteExported attributes, type and example
### Example:
```
$chatInviteExported = ['_' => 'chatInviteExported', 'link' => string, ];
$chatInviteExported = ['_' => 'chatInviteExported', 'link' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatInviteExported","link":"string"}
{"_": "chatInviteExported", "link": "string"}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
chatInviteExported={_='chatInviteExported', link=string, }
chatInviteExported={_='chatInviteExported', link='string'}
```

View File

@ -23,13 +23,13 @@ description: chatParticipant attributes, type and example
### Example:
```
$chatParticipant = ['_' => 'chatParticipant', 'user_id' => int, 'inviter_id' => int, 'date' => int, ];
$chatParticipant = ['_' => 'chatParticipant', 'user_id' => int, 'inviter_id' => int, 'date' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatParticipant","user_id":"int","inviter_id":"int","date":"int"}
{"_": "chatParticipant", "user_id": int, "inviter_id": int, "date": int}
```
@ -37,7 +37,7 @@ Or, if you're into Lua:
```
chatParticipant={_='chatParticipant', user_id=int, inviter_id=int, date=int, }
chatParticipant={_='chatParticipant', user_id=int, inviter_id=int, date=int}
```

View File

@ -23,13 +23,13 @@ description: chatParticipantAdmin attributes, type and example
### Example:
```
$chatParticipantAdmin = ['_' => 'chatParticipantAdmin', 'user_id' => int, 'inviter_id' => int, 'date' => int, ];
$chatParticipantAdmin = ['_' => 'chatParticipantAdmin', 'user_id' => int, 'inviter_id' => int, 'date' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatParticipantAdmin","user_id":"int","inviter_id":"int","date":"int"}
{"_": "chatParticipantAdmin", "user_id": int, "inviter_id": int, "date": int}
```
@ -37,7 +37,7 @@ Or, if you're into Lua:
```
chatParticipantAdmin={_='chatParticipantAdmin', user_id=int, inviter_id=int, date=int, }
chatParticipantAdmin={_='chatParticipantAdmin', user_id=int, inviter_id=int, date=int}
```

View File

@ -21,13 +21,13 @@ description: chatParticipantCreator attributes, type and example
### Example:
```
$chatParticipantCreator = ['_' => 'chatParticipantCreator', 'user_id' => int, ];
$chatParticipantCreator = ['_' => 'chatParticipantCreator', 'user_id' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatParticipantCreator","user_id":"int"}
{"_": "chatParticipantCreator", "user_id": int}
```
@ -35,7 +35,7 @@ Or, if you're into Lua:
```
chatParticipantCreator={_='chatParticipantCreator', user_id=int, }
chatParticipantCreator={_='chatParticipantCreator', user_id=int}
```

View File

@ -23,13 +23,13 @@ description: chatParticipants attributes, type and example
### Example:
```
$chatParticipants = ['_' => 'chatParticipants', 'chat_id' => int, 'participants' => [ChatParticipant], 'version' => int, ];
$chatParticipants = ['_' => 'chatParticipants', 'chat_id' => int, 'participants' => [ChatParticipant], 'version' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatParticipants","chat_id":"int","participants":["ChatParticipant"],"version":"int"}
{"_": "chatParticipants", "chat_id": int, "participants": [ChatParticipant], "version": int}
```
@ -37,7 +37,7 @@ Or, if you're into Lua:
```
chatParticipants={_='chatParticipants', chat_id=int, participants={ChatParticipant}, version=int, }
chatParticipants={_='chatParticipants', chat_id=int, participants={ChatParticipant}, version=int}
```

View File

@ -22,13 +22,13 @@ description: chatParticipantsForbidden attributes, type and example
### Example:
```
$chatParticipantsForbidden = ['_' => 'chatParticipantsForbidden', 'chat_id' => int, 'self_participant' => ChatParticipant, ];
$chatParticipantsForbidden = ['_' => 'chatParticipantsForbidden', 'chat_id' => int, 'self_participant' => ChatParticipant];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatParticipantsForbidden","chat_id":"int","self_participant":"ChatParticipant"}
{"_": "chatParticipantsForbidden", "chat_id": int, "self_participant": ChatParticipant}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
chatParticipantsForbidden={_='chatParticipantsForbidden', chat_id=int, self_participant=ChatParticipant, }
chatParticipantsForbidden={_='chatParticipantsForbidden', chat_id=int, self_participant=ChatParticipant}
```

View File

@ -22,13 +22,13 @@ description: chatPhoto attributes, type and example
### Example:
```
$chatPhoto = ['_' => 'chatPhoto', 'photo_small' => FileLocation, 'photo_big' => FileLocation, ];
$chatPhoto = ['_' => 'chatPhoto', 'photo_small' => FileLocation, 'photo_big' => FileLocation];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatPhoto","photo_small":"FileLocation","photo_big":"FileLocation"}
{"_": "chatPhoto", "photo_small": FileLocation, "photo_big": FileLocation}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
chatPhoto={_='chatPhoto', photo_small=FileLocation, photo_big=FileLocation, }
chatPhoto={_='chatPhoto', photo_small=FileLocation, photo_big=FileLocation}
```

View File

@ -16,13 +16,13 @@ description: chatPhotoEmpty attributes, type and example
### Example:
```
$chatPhotoEmpty = ['_' => 'chatPhotoEmpty', ];
$chatPhotoEmpty = ['_' => 'chatPhotoEmpty'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"chatPhotoEmpty"}
{"_": "chatPhotoEmpty"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
chatPhotoEmpty={_='chatPhotoEmpty', }
chatPhotoEmpty={_='chatPhotoEmpty'}
```

View File

@ -24,13 +24,13 @@ description: client_DH_inner_data attributes, type and example
### Example:
```
$client_DH_inner_data = ['_' => 'client_DH_inner_data', 'nonce' => int128, 'server_nonce' => int128, 'retry_id' => long, 'g_b' => string, ];
$client_DH_inner_data = ['_' => 'client_DH_inner_data', 'nonce' => int128, 'server_nonce' => int128, 'retry_id' => long, 'g_b' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"client_DH_inner_data","nonce":"int128","server_nonce":"int128","retry_id":"long","g_b":"string"}
{"_": "client_DH_inner_data", "nonce": int128, "server_nonce": int128, "retry_id": long, "g_b": "string"}
```
@ -38,7 +38,7 @@ Or, if you're into Lua:
```
client_DH_inner_data={_='client_DH_inner_data', nonce=int128, server_nonce=int128, retry_id=long, g_b=string, }
client_DH_inner_data={_='client_DH_inner_data', nonce=int128, server_nonce=int128, retry_id=long, g_b='string'}
```

View File

@ -52,13 +52,13 @@ description: config attributes, type and example
### Example:
```
$config = ['_' => 'config', 'phonecalls_enabled' => Bool, 'date' => int, 'expires' => int, 'test_mode' => Bool, 'this_dc' => int, 'dc_options' => [DcOption], 'chat_size_max' => int, 'megagroup_size_max' => int, 'forwarded_count_max' => int, 'online_update_period_ms' => int, 'offline_blur_timeout_ms' => int, 'offline_idle_timeout_ms' => int, 'online_cloud_timeout_ms' => int, 'notify_cloud_delay_ms' => int, 'notify_default_delay_ms' => int, 'chat_big_size' => int, 'push_chat_period_ms' => int, 'push_chat_limit' => int, 'saved_gifs_limit' => int, 'edit_time_limit' => int, 'rating_e_decay' => int, 'stickers_recent_limit' => int, 'tmp_sessions' => int, 'pinned_dialogs_count_max' => int, 'call_receive_timeout_ms' => int, 'call_ring_timeout_ms' => int, 'call_connect_timeout_ms' => int, 'call_packet_timeout_ms' => int, 'me_url_prefix' => string, 'suggested_lang_code' => string, 'lang_pack_version' => int, 'disabled_features' => [DisabledFeature], ];
$config = ['_' => 'config', 'phonecalls_enabled' => Bool, 'date' => int, 'expires' => int, 'test_mode' => Bool, 'this_dc' => int, 'dc_options' => [DcOption], 'chat_size_max' => int, 'megagroup_size_max' => int, 'forwarded_count_max' => int, 'online_update_period_ms' => int, 'offline_blur_timeout_ms' => int, 'offline_idle_timeout_ms' => int, 'online_cloud_timeout_ms' => int, 'notify_cloud_delay_ms' => int, 'notify_default_delay_ms' => int, 'chat_big_size' => int, 'push_chat_period_ms' => int, 'push_chat_limit' => int, 'saved_gifs_limit' => int, 'edit_time_limit' => int, 'rating_e_decay' => int, 'stickers_recent_limit' => int, 'tmp_sessions' => int, 'pinned_dialogs_count_max' => int, 'call_receive_timeout_ms' => int, 'call_ring_timeout_ms' => int, 'call_connect_timeout_ms' => int, 'call_packet_timeout_ms' => int, 'me_url_prefix' => 'string', 'suggested_lang_code' => 'string', 'lang_pack_version' => int, 'disabled_features' => [DisabledFeature]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"config","phonecalls_enabled":"Bool","date":"int","expires":"int","test_mode":"Bool","this_dc":"int","dc_options":["DcOption"],"chat_size_max":"int","megagroup_size_max":"int","forwarded_count_max":"int","online_update_period_ms":"int","offline_blur_timeout_ms":"int","offline_idle_timeout_ms":"int","online_cloud_timeout_ms":"int","notify_cloud_delay_ms":"int","notify_default_delay_ms":"int","chat_big_size":"int","push_chat_period_ms":"int","push_chat_limit":"int","saved_gifs_limit":"int","edit_time_limit":"int","rating_e_decay":"int","stickers_recent_limit":"int","tmp_sessions":"int","pinned_dialogs_count_max":"int","call_receive_timeout_ms":"int","call_ring_timeout_ms":"int","call_connect_timeout_ms":"int","call_packet_timeout_ms":"int","me_url_prefix":"string","suggested_lang_code":"string","lang_pack_version":"int","disabled_features":["DisabledFeature"]}
{"_": "config", "phonecalls_enabled": Bool, "date": int, "expires": int, "test_mode": Bool, "this_dc": int, "dc_options": [DcOption], "chat_size_max": int, "megagroup_size_max": int, "forwarded_count_max": int, "online_update_period_ms": int, "offline_blur_timeout_ms": int, "offline_idle_timeout_ms": int, "online_cloud_timeout_ms": int, "notify_cloud_delay_ms": int, "notify_default_delay_ms": int, "chat_big_size": int, "push_chat_period_ms": int, "push_chat_limit": int, "saved_gifs_limit": int, "edit_time_limit": int, "rating_e_decay": int, "stickers_recent_limit": int, "tmp_sessions": int, "pinned_dialogs_count_max": int, "call_receive_timeout_ms": int, "call_ring_timeout_ms": int, "call_connect_timeout_ms": int, "call_packet_timeout_ms": int, "me_url_prefix": "string", "suggested_lang_code": "string", "lang_pack_version": int, "disabled_features": [DisabledFeature]}
```
@ -66,7 +66,7 @@ Or, if you're into Lua:
```
config={_='config', phonecalls_enabled=Bool, date=int, expires=int, test_mode=Bool, this_dc=int, dc_options={DcOption}, chat_size_max=int, megagroup_size_max=int, forwarded_count_max=int, online_update_period_ms=int, offline_blur_timeout_ms=int, offline_idle_timeout_ms=int, online_cloud_timeout_ms=int, notify_cloud_delay_ms=int, notify_default_delay_ms=int, chat_big_size=int, push_chat_period_ms=int, push_chat_limit=int, saved_gifs_limit=int, edit_time_limit=int, rating_e_decay=int, stickers_recent_limit=int, tmp_sessions=int, pinned_dialogs_count_max=int, call_receive_timeout_ms=int, call_ring_timeout_ms=int, call_connect_timeout_ms=int, call_packet_timeout_ms=int, me_url_prefix=string, suggested_lang_code=string, lang_pack_version=int, disabled_features={DisabledFeature}, }
config={_='config', phonecalls_enabled=Bool, date=int, expires=int, test_mode=Bool, this_dc=int, dc_options={DcOption}, chat_size_max=int, megagroup_size_max=int, forwarded_count_max=int, online_update_period_ms=int, offline_blur_timeout_ms=int, offline_idle_timeout_ms=int, online_cloud_timeout_ms=int, notify_cloud_delay_ms=int, notify_default_delay_ms=int, chat_big_size=int, push_chat_period_ms=int, push_chat_limit=int, saved_gifs_limit=int, edit_time_limit=int, rating_e_decay=int, stickers_recent_limit=int, tmp_sessions=int, pinned_dialogs_count_max=int, call_receive_timeout_ms=int, call_ring_timeout_ms=int, call_connect_timeout_ms=int, call_packet_timeout_ms=int, me_url_prefix='string', suggested_lang_code='string', lang_pack_version=int, disabled_features={DisabledFeature}}
```

View File

@ -22,13 +22,13 @@ description: contact attributes, type and example
### Example:
```
$contact = ['_' => 'contact', 'user_id' => int, 'mutual' => Bool, ];
$contact = ['_' => 'contact', 'user_id' => int, 'mutual' => Bool];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"contact","user_id":"int","mutual":"Bool"}
{"_": "contact", "user_id": int, "mutual": Bool}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
contact={_='contact', user_id=int, mutual=Bool, }
contact={_='contact', user_id=int, mutual=Bool}
```

View File

@ -22,13 +22,13 @@ description: contactBlocked attributes, type and example
### Example:
```
$contactBlocked = ['_' => 'contactBlocked', 'user_id' => int, 'date' => int, ];
$contactBlocked = ['_' => 'contactBlocked', 'user_id' => int, 'date' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"contactBlocked","user_id":"int","date":"int"}
{"_": "contactBlocked", "user_id": int, "date": int}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
contactBlocked={_='contactBlocked', user_id=int, date=int, }
contactBlocked={_='contactBlocked', user_id=int, date=int}
```

View File

@ -16,13 +16,13 @@ description: contactLinkContact attributes, type and example
### Example:
```
$contactLinkContact = ['_' => 'contactLinkContact', ];
$contactLinkContact = ['_' => 'contactLinkContact'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"contactLinkContact"}
{"_": "contactLinkContact"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
contactLinkContact={_='contactLinkContact', }
contactLinkContact={_='contactLinkContact'}
```

View File

@ -16,13 +16,13 @@ description: contactLinkHasPhone attributes, type and example
### Example:
```
$contactLinkHasPhone = ['_' => 'contactLinkHasPhone', ];
$contactLinkHasPhone = ['_' => 'contactLinkHasPhone'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"contactLinkHasPhone"}
{"_": "contactLinkHasPhone"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
contactLinkHasPhone={_='contactLinkHasPhone', }
contactLinkHasPhone={_='contactLinkHasPhone'}
```

View File

@ -16,13 +16,13 @@ description: contactLinkNone attributes, type and example
### Example:
```
$contactLinkNone = ['_' => 'contactLinkNone', ];
$contactLinkNone = ['_' => 'contactLinkNone'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"contactLinkNone"}
{"_": "contactLinkNone"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
contactLinkNone={_='contactLinkNone', }
contactLinkNone={_='contactLinkNone'}
```

View File

@ -16,13 +16,13 @@ description: contactLinkUnknown attributes, type and example
### Example:
```
$contactLinkUnknown = ['_' => 'contactLinkUnknown', ];
$contactLinkUnknown = ['_' => 'contactLinkUnknown'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"contactLinkUnknown"}
{"_": "contactLinkUnknown"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
contactLinkUnknown={_='contactLinkUnknown', }
contactLinkUnknown={_='contactLinkUnknown'}
```

View File

@ -22,13 +22,13 @@ description: contactStatus attributes, type and example
### Example:
```
$contactStatus = ['_' => 'contactStatus', 'user_id' => int, 'status' => UserStatus, ];
$contactStatus = ['_' => 'contactStatus', 'user_id' => int, 'status' => UserStatus];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"contactStatus","user_id":"int","status":"UserStatus"}
{"_": "contactStatus", "user_id": int, "status": UserStatus}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
contactStatus={_='contactStatus', user_id=int, status=UserStatus, }
contactStatus={_='contactStatus', user_id=int, status=UserStatus}
```

View File

@ -22,13 +22,13 @@ description: contacts_blocked attributes, type and example
### Example:
```
$contacts_blocked = ['_' => 'contacts.blocked', 'blocked' => [ContactBlocked], 'users' => [User], ];
$contacts_blocked = ['_' => 'contacts.blocked', 'blocked' => [ContactBlocked], 'users' => [User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"contacts.blocked","blocked":["ContactBlocked"],"users":["User"]}
{"_": "contacts.blocked", "blocked": [ContactBlocked], "users": [User]}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
contacts_blocked={_='contacts.blocked', blocked={ContactBlocked}, users={User}, }
contacts_blocked={_='contacts.blocked', blocked={ContactBlocked}, users={User}}
```

View File

@ -23,13 +23,13 @@ description: contacts_blockedSlice attributes, type and example
### Example:
```
$contacts_blockedSlice = ['_' => 'contacts.blockedSlice', 'count' => int, 'blocked' => [ContactBlocked], 'users' => [User], ];
$contacts_blockedSlice = ['_' => 'contacts.blockedSlice', 'count' => int, 'blocked' => [ContactBlocked], 'users' => [User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"contacts.blockedSlice","count":"int","blocked":["ContactBlocked"],"users":["User"]}
{"_": "contacts.blockedSlice", "count": int, "blocked": [ContactBlocked], "users": [User]}
```
@ -37,7 +37,7 @@ Or, if you're into Lua:
```
contacts_blockedSlice={_='contacts.blockedSlice', count=int, blocked={ContactBlocked}, users={User}, }
contacts_blockedSlice={_='contacts.blockedSlice', count=int, blocked={ContactBlocked}, users={User}}
```

View File

@ -22,13 +22,13 @@ description: contacts_contacts attributes, type and example
### Example:
```
$contacts_contacts = ['_' => 'contacts.contacts', 'contacts' => [Contact], 'users' => [User], ];
$contacts_contacts = ['_' => 'contacts.contacts', 'contacts' => [Contact], 'users' => [User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"contacts.contacts","contacts":["Contact"],"users":["User"]}
{"_": "contacts.contacts", "contacts": [Contact], "users": [User]}
```
@ -36,7 +36,7 @@ Or, if you're into Lua:
```
contacts_contacts={_='contacts.contacts', contacts={Contact}, users={User}, }
contacts_contacts={_='contacts.contacts', contacts={Contact}, users={User}}
```

View File

@ -16,13 +16,13 @@ description: contacts_contactsNotModified attributes, type and example
### Example:
```
$contacts_contactsNotModified = ['_' => 'contacts.contactsNotModified', ];
$contacts_contactsNotModified = ['_' => 'contacts.contactsNotModified'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"contacts.contactsNotModified"}
{"_": "contacts.contactsNotModified"}
```
@ -30,7 +30,7 @@ Or, if you're into Lua:
```
contacts_contactsNotModified={_='contacts.contactsNotModified', }
contacts_contactsNotModified={_='contacts.contactsNotModified'}
```

View File

@ -23,13 +23,13 @@ description: contacts_found attributes, type and example
### Example:
```
$contacts_found = ['_' => 'contacts.found', 'results' => [Peer], 'chats' => [Chat], 'users' => [User], ];
$contacts_found = ['_' => 'contacts.found', 'results' => [Peer], 'chats' => [Chat], 'users' => [User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"contacts.found","results":["Peer"],"chats":["Chat"],"users":["User"]}
{"_": "contacts.found", "results": [Peer], "chats": [Chat], "users": [User]}
```
@ -37,7 +37,7 @@ Or, if you're into Lua:
```
contacts_found={_='contacts.found', results={Peer}, chats={Chat}, users={User}, }
contacts_found={_='contacts.found', results={Peer}, chats={Chat}, users={User}}
```

Some files were not shown because too many files have changed in this diff Show More