diff --git a/build_docs.php b/build_docs.php index 44ac40bf..4a6d4ec1 100755 --- a/build_docs.php +++ b/build_docs.php @@ -85,7 +85,9 @@ foreach ($TL->methods->method as $key => $method) { '); $params = ''; - $table = '| Name | Type | Required | + $table = empty($TL->methods->params[$key]) ? '' : '### Parameters: + +| Name | Type | Required | |----------|:-------------:|---------:| '; foreach ($TL->methods->params[$key] as $param) { @@ -124,8 +126,6 @@ $'.$type.' = $MadelineProto->'.str_replace('.', '->', $method).'(['.$params.']); ```'); $header = str_replace('_', '\_', '## Method: '.$method.' -### Parameters: - '.$table.' ### Return type: ['.$type.'](../types/'.$real_type.'.md) @@ -186,8 +186,8 @@ foreach ($TL->constructors->predicate as $key => $constructor) { $params .= "'".$param['name']."' => "; $params .= (isset($param['subtype']) ? '[' : '').'['.$ptype.'](../'.$link_type.'/'.$ptype.'.md)'.(isset($param['subtype']) ? ']' : '').', '; } - - $constructors[$constructor] = str_replace(['_', '\[\]'], ['\_', ''], '[$'.$real_type.'](../types/'.$real_type.'.md)\[\'['.str_replace('.', '->', $constructor).']('.$constructor.'.md)\'\] = \['.$params.'\] + $params = "\[".$params.'\]'; + $constructors[$constructor] = str_replace(['_'], ['\_'], '[$'.$real_type.'](../types/'.$real_type.'.md) = '.$params.'; '); @@ -197,11 +197,12 @@ foreach ($TL->constructors->predicate as $key => $constructor) { if (!in_array($key, $types[$real_type])) { $types[$real_type][] = $key; } + $table = empty($TL->constructors->params[$key]) ? '' : '### Attributes: - $params = ''; - $table = '| Name | Type | Required | +| Name | Type | Required | |----------|:-------------:|---------:| '; + $params = ''; foreach ($TL->constructors->params[$key] as $param) { if ($param['name'] == 'flags') { continue; @@ -223,15 +224,15 @@ foreach ($TL->constructors->predicate as $key => $constructor) { '; $params .= "'".$param['name']."' => "; - $params .= (isset($param['subtype']) ? '['.$ptype.']' : $ptype).', '; + $params .= (isset($param['subtype']) ? '['.$param['type'].']' : $param['type']).', '; } - $example = str_replace('[]', '', ' -``` -$'.$constructor.' = ['.$params.']; -```'); - $header = str_replace('_', '\_', '## Constructor: '.$constructor.' + $params = "['_' => ".$constructor."', ".$params.']'; -### Attributes: + $example = ' +``` +$'.$constructor.' = '.$params.'; +```'; + $header = str_replace('_', '\_', '## Constructor: '.$constructor.' '.$table.' @@ -277,7 +278,7 @@ foreach ($types as $type => $keys) { } $header = str_replace('_', '\_', '## Type: '.$type.' -### Constructors: +### Possible values (constructors): '.$constructors); file_put_contents('types/'.$type.'.md', $header); @@ -319,4 +320,13 @@ file_put_contents('types/index.md', '# Types '.$index); +file_put_contents('constructors/boolFalse.md', '# boolFalse + +Represents boolean with value equal to `false`.'); + + +file_put_contents('constructors/boolTrue.md', '# boolTrue + +Represents boolean with value equal to `true`.'); + \danog\MadelineProto\Logger::log('Done!'); diff --git a/docs/API_docs/constructors/accountDaysTTL.md b/docs/API_docs/constructors/accountDaysTTL.md index fd6da7c7..6e20bdfa 100644 --- a/docs/API_docs/constructors/accountDaysTTL.md +++ b/docs/API_docs/constructors/accountDaysTTL.md @@ -13,5 +13,5 @@ ``` -$accountDaysTTL = ['days' => int, ]; +$accountDaysTTL = ['_' => accountDaysTTL', 'days' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/account_authorizations.md b/docs/API_docs/constructors/account_authorizations.md index 5509c60c..f3f01d93 100644 --- a/docs/API_docs/constructors/account_authorizations.md +++ b/docs/API_docs/constructors/account_authorizations.md @@ -13,5 +13,5 @@ ``` -$account_authorizations = ['authorizations' => [Authorization], ]; +$account_authorizations = ['_' => account_authorizations', 'authorizations' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/account_noPassword.md b/docs/API_docs/constructors/account_noPassword.md index 61691296..2e9a7341 100644 --- a/docs/API_docs/constructors/account_noPassword.md +++ b/docs/API_docs/constructors/account_noPassword.md @@ -14,5 +14,5 @@ ``` -$account_noPassword = ['new_salt' => bytes, 'email_unconfirmed_pattern' => string, ]; +$account_noPassword = ['_' => account_noPassword', 'new_salt' => bytes, 'email_unconfirmed_pattern' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/account_password.md b/docs/API_docs/constructors/account_password.md index 1a35c462..d235c823 100644 --- a/docs/API_docs/constructors/account_password.md +++ b/docs/API_docs/constructors/account_password.md @@ -17,5 +17,5 @@ ``` -$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, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/account_passwordInputSettings.md b/docs/API_docs/constructors/account_passwordInputSettings.md index 4bbe7bef..59eee5cf 100644 --- a/docs/API_docs/constructors/account_passwordInputSettings.md +++ b/docs/API_docs/constructors/account_passwordInputSettings.md @@ -16,5 +16,5 @@ ``` -$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, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/account_passwordSettings.md b/docs/API_docs/constructors/account_passwordSettings.md index 1040d935..cd574774 100644 --- a/docs/API_docs/constructors/account_passwordSettings.md +++ b/docs/API_docs/constructors/account_passwordSettings.md @@ -13,5 +13,5 @@ ``` -$account_passwordSettings = ['email' => string, ]; +$account_passwordSettings = ['_' => account_passwordSettings', 'email' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/account_privacyRules.md b/docs/API_docs/constructors/account_privacyRules.md index 07b15b0e..4934cf33 100644 --- a/docs/API_docs/constructors/account_privacyRules.md +++ b/docs/API_docs/constructors/account_privacyRules.md @@ -14,5 +14,5 @@ ``` -$account_privacyRules = ['rules' => [PrivacyRule], 'users' => [User], ]; +$account_privacyRules = ['_' => account_privacyRules', 'rules' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/auth_authorization.md b/docs/API_docs/constructors/auth_authorization.md index 41f98a43..17c20c33 100644 --- a/docs/API_docs/constructors/auth_authorization.md +++ b/docs/API_docs/constructors/auth_authorization.md @@ -14,5 +14,5 @@ ``` -$auth_authorization = ['tmp_sessions' => int, 'user' => User, ]; +$auth_authorization = ['_' => auth_authorization', 'tmp_sessions' => int, 'user' => User, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/auth_checkedPhone.md b/docs/API_docs/constructors/auth_checkedPhone.md index 0d3e72ea..5577040b 100644 --- a/docs/API_docs/constructors/auth_checkedPhone.md +++ b/docs/API_docs/constructors/auth_checkedPhone.md @@ -13,5 +13,5 @@ ``` -$auth_checkedPhone = ['phone_registered' => Bool, ]; +$auth_checkedPhone = ['_' => auth_checkedPhone', 'phone_registered' => Bool, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/auth_codeTypeCall.md b/docs/API_docs/constructors/auth_codeTypeCall.md index 1e86a451..4749f4d8 100644 --- a/docs/API_docs/constructors/auth_codeTypeCall.md +++ b/docs/API_docs/constructors/auth_codeTypeCall.md @@ -1,9 +1,5 @@ ## Constructor: auth\_codeTypeCall -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [auth\_CodeType](../types/auth\_CodeType.md) @@ -12,5 +8,5 @@ ``` -$auth_codeTypeCall = ; +$auth_codeTypeCall = ['_' => auth_codeTypeCall', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/auth_codeTypeFlashCall.md b/docs/API_docs/constructors/auth_codeTypeFlashCall.md index 1d552479..2a162b40 100644 --- a/docs/API_docs/constructors/auth_codeTypeFlashCall.md +++ b/docs/API_docs/constructors/auth_codeTypeFlashCall.md @@ -1,9 +1,5 @@ ## Constructor: auth\_codeTypeFlashCall -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [auth\_CodeType](../types/auth\_CodeType.md) @@ -12,5 +8,5 @@ ``` -$auth_codeTypeFlashCall = ; +$auth_codeTypeFlashCall = ['_' => auth_codeTypeFlashCall', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/auth_codeTypeSms.md b/docs/API_docs/constructors/auth_codeTypeSms.md index 4ad802f2..3c76e60d 100644 --- a/docs/API_docs/constructors/auth_codeTypeSms.md +++ b/docs/API_docs/constructors/auth_codeTypeSms.md @@ -1,9 +1,5 @@ ## Constructor: auth\_codeTypeSms -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [auth\_CodeType](../types/auth\_CodeType.md) @@ -12,5 +8,5 @@ ``` -$auth_codeTypeSms = ; +$auth_codeTypeSms = ['_' => auth_codeTypeSms', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/auth_exportedAuthorization.md b/docs/API_docs/constructors/auth_exportedAuthorization.md index c62e44d9..8b6a8a25 100644 --- a/docs/API_docs/constructors/auth_exportedAuthorization.md +++ b/docs/API_docs/constructors/auth_exportedAuthorization.md @@ -14,5 +14,5 @@ ``` -$auth_exportedAuthorization = ['id' => int, 'bytes' => bytes, ]; +$auth_exportedAuthorization = ['_' => auth_exportedAuthorization', 'id' => int, 'bytes' => bytes, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/auth_passwordRecovery.md b/docs/API_docs/constructors/auth_passwordRecovery.md index 481fdf73..5accb167 100644 --- a/docs/API_docs/constructors/auth_passwordRecovery.md +++ b/docs/API_docs/constructors/auth_passwordRecovery.md @@ -13,5 +13,5 @@ ``` -$auth_passwordRecovery = ['email_pattern' => string, ]; +$auth_passwordRecovery = ['_' => auth_passwordRecovery', 'email_pattern' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/auth_sentCode.md b/docs/API_docs/constructors/auth_sentCode.md index bc3c8af8..f4873699 100644 --- a/docs/API_docs/constructors/auth_sentCode.md +++ b/docs/API_docs/constructors/auth_sentCode.md @@ -17,5 +17,5 @@ ``` -$auth_sentCode = ['phone_registered' => Bool, 'type' => auth_SentCodeType, 'phone_code_hash' => string, 'next_type' => auth_CodeType, 'timeout' => int, ]; +$auth_sentCode = ['_' => auth_sentCode', 'phone_registered' => true, 'type' => auth.SentCodeType, 'phone_code_hash' => string, 'next_type' => auth.CodeType, 'timeout' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/auth_sentCodeTypeApp.md b/docs/API_docs/constructors/auth_sentCodeTypeApp.md index 176bd841..89d901bc 100644 --- a/docs/API_docs/constructors/auth_sentCodeTypeApp.md +++ b/docs/API_docs/constructors/auth_sentCodeTypeApp.md @@ -13,5 +13,5 @@ ``` -$auth_sentCodeTypeApp = ['length' => int, ]; +$auth_sentCodeTypeApp = ['_' => auth_sentCodeTypeApp', 'length' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/auth_sentCodeTypeCall.md b/docs/API_docs/constructors/auth_sentCodeTypeCall.md index ef458fd0..5f201075 100644 --- a/docs/API_docs/constructors/auth_sentCodeTypeCall.md +++ b/docs/API_docs/constructors/auth_sentCodeTypeCall.md @@ -13,5 +13,5 @@ ``` -$auth_sentCodeTypeCall = ['length' => int, ]; +$auth_sentCodeTypeCall = ['_' => auth_sentCodeTypeCall', 'length' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/auth_sentCodeTypeFlashCall.md b/docs/API_docs/constructors/auth_sentCodeTypeFlashCall.md index 28cddfbc..d83d8b84 100644 --- a/docs/API_docs/constructors/auth_sentCodeTypeFlashCall.md +++ b/docs/API_docs/constructors/auth_sentCodeTypeFlashCall.md @@ -13,5 +13,5 @@ ``` -$auth_sentCodeTypeFlashCall = ['pattern' => string, ]; +$auth_sentCodeTypeFlashCall = ['_' => auth_sentCodeTypeFlashCall', 'pattern' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/auth_sentCodeTypeSms.md b/docs/API_docs/constructors/auth_sentCodeTypeSms.md index 696ac311..42697073 100644 --- a/docs/API_docs/constructors/auth_sentCodeTypeSms.md +++ b/docs/API_docs/constructors/auth_sentCodeTypeSms.md @@ -13,5 +13,5 @@ ``` -$auth_sentCodeTypeSms = ['length' => int, ]; +$auth_sentCodeTypeSms = ['_' => auth_sentCodeTypeSms', 'length' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/authorization.md b/docs/API_docs/constructors/authorization.md index 7b9330f0..1da6ac18 100644 --- a/docs/API_docs/constructors/authorization.md +++ b/docs/API_docs/constructors/authorization.md @@ -24,5 +24,5 @@ ``` -$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, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/boolFalse.md b/docs/API_docs/constructors/boolFalse.md index 88df6a96..5d629935 100644 --- a/docs/API_docs/constructors/boolFalse.md +++ b/docs/API_docs/constructors/boolFalse.md @@ -1,16 +1,3 @@ -## Constructor: boolFalse +# boolFalse -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| - - -### Type: [Bool](../types/Bool.md) - -### Example: - - -``` -$boolFalse = ; -``` \ No newline at end of file +Represents boolean with value equal to `false`. \ No newline at end of file diff --git a/docs/API_docs/constructors/boolTrue.md b/docs/API_docs/constructors/boolTrue.md index 01ce1696..b209df9a 100644 --- a/docs/API_docs/constructors/boolTrue.md +++ b/docs/API_docs/constructors/boolTrue.md @@ -1,16 +1,3 @@ -## Constructor: boolTrue +# boolTrue -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| - - -### Type: [Bool](../types/Bool.md) - -### Example: - - -``` -$boolTrue = ; -``` \ No newline at end of file +Represents boolean with value equal to `true`. \ No newline at end of file diff --git a/docs/API_docs/constructors/botCommand.md b/docs/API_docs/constructors/botCommand.md index 8900ef2d..0b5afb86 100644 --- a/docs/API_docs/constructors/botCommand.md +++ b/docs/API_docs/constructors/botCommand.md @@ -14,5 +14,5 @@ ``` -$botCommand = ['command' => string, 'description' => string, ]; +$botCommand = ['_' => botCommand', 'command' => string, 'description' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/botInfo.md b/docs/API_docs/constructors/botInfo.md index 755f5b24..baa65429 100644 --- a/docs/API_docs/constructors/botInfo.md +++ b/docs/API_docs/constructors/botInfo.md @@ -15,5 +15,5 @@ ``` -$botInfo = ['user_id' => int, 'description' => string, 'commands' => [BotCommand], ]; +$botInfo = ['_' => botInfo', 'user_id' => int, 'description' => string, 'commands' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/botInlineMediaResult.md b/docs/API_docs/constructors/botInlineMediaResult.md index 5a313bd7..3677183d 100644 --- a/docs/API_docs/constructors/botInlineMediaResult.md +++ b/docs/API_docs/constructors/botInlineMediaResult.md @@ -19,5 +19,5 @@ ``` -$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, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/botInlineMessageMediaAuto.md b/docs/API_docs/constructors/botInlineMessageMediaAuto.md index 56896873..d1d5aa03 100644 --- a/docs/API_docs/constructors/botInlineMessageMediaAuto.md +++ b/docs/API_docs/constructors/botInlineMessageMediaAuto.md @@ -14,5 +14,5 @@ ``` -$botInlineMessageMediaAuto = ['caption' => string, 'reply_markup' => ReplyMarkup, ]; +$botInlineMessageMediaAuto = ['_' => botInlineMessageMediaAuto', 'caption' => string, 'reply_markup' => ReplyMarkup, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/botInlineMessageMediaContact.md b/docs/API_docs/constructors/botInlineMessageMediaContact.md index 9532baca..8884bdb8 100644 --- a/docs/API_docs/constructors/botInlineMessageMediaContact.md +++ b/docs/API_docs/constructors/botInlineMessageMediaContact.md @@ -16,5 +16,5 @@ ``` -$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, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/botInlineMessageMediaGeo.md b/docs/API_docs/constructors/botInlineMessageMediaGeo.md index f946f4cc..855688ce 100644 --- a/docs/API_docs/constructors/botInlineMessageMediaGeo.md +++ b/docs/API_docs/constructors/botInlineMessageMediaGeo.md @@ -14,5 +14,5 @@ ``` -$botInlineMessageMediaGeo = ['geo' => GeoPoint, 'reply_markup' => ReplyMarkup, ]; +$botInlineMessageMediaGeo = ['_' => botInlineMessageMediaGeo', 'geo' => GeoPoint, 'reply_markup' => ReplyMarkup, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/botInlineMessageMediaVenue.md b/docs/API_docs/constructors/botInlineMessageMediaVenue.md index f4fcef5b..430866d7 100644 --- a/docs/API_docs/constructors/botInlineMessageMediaVenue.md +++ b/docs/API_docs/constructors/botInlineMessageMediaVenue.md @@ -18,5 +18,5 @@ ``` -$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, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/botInlineMessageText.md b/docs/API_docs/constructors/botInlineMessageText.md index c5b91f30..6990b7ff 100644 --- a/docs/API_docs/constructors/botInlineMessageText.md +++ b/docs/API_docs/constructors/botInlineMessageText.md @@ -16,5 +16,5 @@ ``` -$botInlineMessageText = ['no_webpage' => Bool, 'message' => string, 'entities' => [MessageEntity], 'reply_markup' => ReplyMarkup, ]; +$botInlineMessageText = ['_' => botInlineMessageText', 'no_webpage' => true, 'message' => string, 'entities' => [Vector t], 'reply_markup' => ReplyMarkup, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/botInlineResult.md b/docs/API_docs/constructors/botInlineResult.md index 3d6b0ab1..d30bb3b6 100644 --- a/docs/API_docs/constructors/botInlineResult.md +++ b/docs/API_docs/constructors/botInlineResult.md @@ -24,5 +24,5 @@ ``` -$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, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channel.md b/docs/API_docs/constructors/channel.md index 342d3cf1..bfbc6880 100644 --- a/docs/API_docs/constructors/channel.md +++ b/docs/API_docs/constructors/channel.md @@ -32,5 +32,5 @@ ``` -$channel = ['creator' => Bool, 'kicked' => Bool, 'left' => Bool, 'editor' => Bool, 'moderator' => 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, ]; +$channel = ['_' => channel', 'creator' => true, 'kicked' => true, 'left' => true, 'editor' => true, 'moderator' => true, 'broadcast' => true, 'verified' => true, 'megagroup' => true, 'restricted' => true, 'democracy' => true, 'signatures' => true, 'min' => true, 'id' => int, 'access_hash' => long, 'title' => string, 'username' => string, 'photo' => ChatPhoto, 'date' => int, 'version' => int, 'restriction_reason' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelForbidden.md b/docs/API_docs/constructors/channelForbidden.md index 740872fe..ab4b31e9 100644 --- a/docs/API_docs/constructors/channelForbidden.md +++ b/docs/API_docs/constructors/channelForbidden.md @@ -17,5 +17,5 @@ ``` -$channelForbidden = ['broadcast' => Bool, 'megagroup' => Bool, 'id' => int, 'access_hash' => long, 'title' => string, ]; +$channelForbidden = ['_' => channelForbidden', 'broadcast' => true, 'megagroup' => true, 'id' => int, 'access_hash' => long, 'title' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelFull.md b/docs/API_docs/constructors/channelFull.md index dc67d823..a21a76e3 100644 --- a/docs/API_docs/constructors/channelFull.md +++ b/docs/API_docs/constructors/channelFull.md @@ -29,5 +29,5 @@ ``` -$channelFull = ['can_view_participants' => Bool, 'can_set_username' => Bool, 'id' => int, 'about' => string, 'participants_count' => int, 'admins_count' => int, 'kicked_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' => true, 'can_set_username' => true, 'id' => int, 'about' => string, 'participants_count' => int, 'admins_count' => int, 'kicked_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' => [Vector t], 'migrated_from_chat_id' => int, 'migrated_from_max_id' => int, 'pinned_msg_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelMessagesFilter.md b/docs/API_docs/constructors/channelMessagesFilter.md index 96d45b1e..0db4b94d 100644 --- a/docs/API_docs/constructors/channelMessagesFilter.md +++ b/docs/API_docs/constructors/channelMessagesFilter.md @@ -14,5 +14,5 @@ ``` -$channelMessagesFilter = ['exclude_new_messages' => Bool, 'ranges' => [MessageRange], ]; +$channelMessagesFilter = ['_' => channelMessagesFilter', 'exclude_new_messages' => true, 'ranges' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelMessagesFilterEmpty.md b/docs/API_docs/constructors/channelMessagesFilterEmpty.md index f75a3c2e..dc4e2e45 100644 --- a/docs/API_docs/constructors/channelMessagesFilterEmpty.md +++ b/docs/API_docs/constructors/channelMessagesFilterEmpty.md @@ -1,9 +1,5 @@ ## Constructor: channelMessagesFilterEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ChannelMessagesFilter](../types/ChannelMessagesFilter.md) @@ -12,5 +8,5 @@ ``` -$channelMessagesFilterEmpty = ; +$channelMessagesFilterEmpty = ['_' => channelMessagesFilterEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelParticipant.md b/docs/API_docs/constructors/channelParticipant.md index 34faac9d..2401e045 100644 --- a/docs/API_docs/constructors/channelParticipant.md +++ b/docs/API_docs/constructors/channelParticipant.md @@ -14,5 +14,5 @@ ``` -$channelParticipant = ['user_id' => int, 'date' => int, ]; +$channelParticipant = ['_' => channelParticipant', 'user_id' => int, 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelParticipantCreator.md b/docs/API_docs/constructors/channelParticipantCreator.md index a377d041..c39f59df 100644 --- a/docs/API_docs/constructors/channelParticipantCreator.md +++ b/docs/API_docs/constructors/channelParticipantCreator.md @@ -13,5 +13,5 @@ ``` -$channelParticipantCreator = ['user_id' => int, ]; +$channelParticipantCreator = ['_' => channelParticipantCreator', 'user_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelParticipantEditor.md b/docs/API_docs/constructors/channelParticipantEditor.md index 245a8cc9..9090d732 100644 --- a/docs/API_docs/constructors/channelParticipantEditor.md +++ b/docs/API_docs/constructors/channelParticipantEditor.md @@ -15,5 +15,5 @@ ``` -$channelParticipantEditor = ['user_id' => int, 'inviter_id' => int, 'date' => int, ]; +$channelParticipantEditor = ['_' => channelParticipantEditor', 'user_id' => int, 'inviter_id' => int, 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelParticipantKicked.md b/docs/API_docs/constructors/channelParticipantKicked.md index e7081f92..64412e88 100644 --- a/docs/API_docs/constructors/channelParticipantKicked.md +++ b/docs/API_docs/constructors/channelParticipantKicked.md @@ -15,5 +15,5 @@ ``` -$channelParticipantKicked = ['user_id' => int, 'kicked_by' => int, 'date' => int, ]; +$channelParticipantKicked = ['_' => channelParticipantKicked', 'user_id' => int, 'kicked_by' => int, 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelParticipantModerator.md b/docs/API_docs/constructors/channelParticipantModerator.md index 8ff1415f..c8e3a19b 100644 --- a/docs/API_docs/constructors/channelParticipantModerator.md +++ b/docs/API_docs/constructors/channelParticipantModerator.md @@ -15,5 +15,5 @@ ``` -$channelParticipantModerator = ['user_id' => int, 'inviter_id' => int, 'date' => int, ]; +$channelParticipantModerator = ['_' => channelParticipantModerator', 'user_id' => int, 'inviter_id' => int, 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelParticipantSelf.md b/docs/API_docs/constructors/channelParticipantSelf.md index f084f6b0..53258d60 100644 --- a/docs/API_docs/constructors/channelParticipantSelf.md +++ b/docs/API_docs/constructors/channelParticipantSelf.md @@ -15,5 +15,5 @@ ``` -$channelParticipantSelf = ['user_id' => int, 'inviter_id' => int, 'date' => int, ]; +$channelParticipantSelf = ['_' => channelParticipantSelf', 'user_id' => int, 'inviter_id' => int, 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelParticipantsAdmins.md b/docs/API_docs/constructors/channelParticipantsAdmins.md index 1135a578..46f5048c 100644 --- a/docs/API_docs/constructors/channelParticipantsAdmins.md +++ b/docs/API_docs/constructors/channelParticipantsAdmins.md @@ -1,9 +1,5 @@ ## Constructor: channelParticipantsAdmins -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ChannelParticipantsFilter](../types/ChannelParticipantsFilter.md) @@ -12,5 +8,5 @@ ``` -$channelParticipantsAdmins = ; +$channelParticipantsAdmins = ['_' => channelParticipantsAdmins', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelParticipantsBots.md b/docs/API_docs/constructors/channelParticipantsBots.md index e4707f09..84e34b99 100644 --- a/docs/API_docs/constructors/channelParticipantsBots.md +++ b/docs/API_docs/constructors/channelParticipantsBots.md @@ -1,9 +1,5 @@ ## Constructor: channelParticipantsBots -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ChannelParticipantsFilter](../types/ChannelParticipantsFilter.md) @@ -12,5 +8,5 @@ ``` -$channelParticipantsBots = ; +$channelParticipantsBots = ['_' => channelParticipantsBots', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelParticipantsKicked.md b/docs/API_docs/constructors/channelParticipantsKicked.md index d704c68a..e0b38054 100644 --- a/docs/API_docs/constructors/channelParticipantsKicked.md +++ b/docs/API_docs/constructors/channelParticipantsKicked.md @@ -1,9 +1,5 @@ ## Constructor: channelParticipantsKicked -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ChannelParticipantsFilter](../types/ChannelParticipantsFilter.md) @@ -12,5 +8,5 @@ ``` -$channelParticipantsKicked = ; +$channelParticipantsKicked = ['_' => channelParticipantsKicked', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelParticipantsRecent.md b/docs/API_docs/constructors/channelParticipantsRecent.md index 53470379..7a30abdb 100644 --- a/docs/API_docs/constructors/channelParticipantsRecent.md +++ b/docs/API_docs/constructors/channelParticipantsRecent.md @@ -1,9 +1,5 @@ ## Constructor: channelParticipantsRecent -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ChannelParticipantsFilter](../types/ChannelParticipantsFilter.md) @@ -12,5 +8,5 @@ ``` -$channelParticipantsRecent = ; +$channelParticipantsRecent = ['_' => channelParticipantsRecent', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelRoleEditor.md b/docs/API_docs/constructors/channelRoleEditor.md index a92aeed6..0bec960b 100644 --- a/docs/API_docs/constructors/channelRoleEditor.md +++ b/docs/API_docs/constructors/channelRoleEditor.md @@ -1,9 +1,5 @@ ## Constructor: channelRoleEditor -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ChannelParticipantRole](../types/ChannelParticipantRole.md) @@ -12,5 +8,5 @@ ``` -$channelRoleEditor = ; +$channelRoleEditor = ['_' => channelRoleEditor', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelRoleEmpty.md b/docs/API_docs/constructors/channelRoleEmpty.md index 7c3a8df6..19185d79 100644 --- a/docs/API_docs/constructors/channelRoleEmpty.md +++ b/docs/API_docs/constructors/channelRoleEmpty.md @@ -1,9 +1,5 @@ ## Constructor: channelRoleEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ChannelParticipantRole](../types/ChannelParticipantRole.md) @@ -12,5 +8,5 @@ ``` -$channelRoleEmpty = ; +$channelRoleEmpty = ['_' => channelRoleEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channelRoleModerator.md b/docs/API_docs/constructors/channelRoleModerator.md index c4e1efa1..eed2d2fa 100644 --- a/docs/API_docs/constructors/channelRoleModerator.md +++ b/docs/API_docs/constructors/channelRoleModerator.md @@ -1,9 +1,5 @@ ## Constructor: channelRoleModerator -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ChannelParticipantRole](../types/ChannelParticipantRole.md) @@ -12,5 +8,5 @@ ``` -$channelRoleModerator = ; +$channelRoleModerator = ['_' => channelRoleModerator', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channels_channelParticipant.md b/docs/API_docs/constructors/channels_channelParticipant.md index 8464d33c..5a25fd1a 100644 --- a/docs/API_docs/constructors/channels_channelParticipant.md +++ b/docs/API_docs/constructors/channels_channelParticipant.md @@ -14,5 +14,5 @@ ``` -$channels_channelParticipant = ['participant' => ChannelParticipant, 'users' => [User], ]; +$channels_channelParticipant = ['_' => channels_channelParticipant', 'participant' => ChannelParticipant, 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/channels_channelParticipants.md b/docs/API_docs/constructors/channels_channelParticipants.md index c9ea2db0..925e444d 100644 --- a/docs/API_docs/constructors/channels_channelParticipants.md +++ b/docs/API_docs/constructors/channels_channelParticipants.md @@ -15,5 +15,5 @@ ``` -$channels_channelParticipants = ['count' => int, 'participants' => [ChannelParticipant], 'users' => [User], ]; +$channels_channelParticipants = ['_' => channels_channelParticipants', 'count' => int, 'participants' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chat.md b/docs/API_docs/constructors/chat.md index e58737f3..f95f0054 100644 --- a/docs/API_docs/constructors/chat.md +++ b/docs/API_docs/constructors/chat.md @@ -25,5 +25,5 @@ ``` -$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' => true, 'kicked' => true, 'left' => true, 'admins_enabled' => true, 'admin' => true, 'deactivated' => true, 'id' => int, 'title' => string, 'photo' => ChatPhoto, 'participants_count' => int, 'date' => int, 'version' => int, 'migrated_to' => InputChannel, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatEmpty.md b/docs/API_docs/constructors/chatEmpty.md index 259ef9f9..2396d8c7 100644 --- a/docs/API_docs/constructors/chatEmpty.md +++ b/docs/API_docs/constructors/chatEmpty.md @@ -13,5 +13,5 @@ ``` -$chatEmpty = ['id' => int, ]; +$chatEmpty = ['_' => chatEmpty', 'id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatForbidden.md b/docs/API_docs/constructors/chatForbidden.md index d133bf9a..897d2af4 100644 --- a/docs/API_docs/constructors/chatForbidden.md +++ b/docs/API_docs/constructors/chatForbidden.md @@ -14,5 +14,5 @@ ``` -$chatForbidden = ['id' => int, 'title' => string, ]; +$chatForbidden = ['_' => chatForbidden', 'id' => int, 'title' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatFull.md b/docs/API_docs/constructors/chatFull.md index 49438aa3..302fead4 100644 --- a/docs/API_docs/constructors/chatFull.md +++ b/docs/API_docs/constructors/chatFull.md @@ -18,5 +18,5 @@ ``` -$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' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatInvite.md b/docs/API_docs/constructors/chatInvite.md index 83daad05..a004a466 100644 --- a/docs/API_docs/constructors/chatInvite.md +++ b/docs/API_docs/constructors/chatInvite.md @@ -20,5 +20,5 @@ ``` -$chatInvite = ['channel' => Bool, 'broadcast' => Bool, 'public' => Bool, 'megagroup' => Bool, 'title' => string, 'photo' => ChatPhoto, 'participants_count' => int, 'participants' => [User], ]; +$chatInvite = ['_' => chatInvite', 'channel' => true, 'broadcast' => true, 'public' => true, 'megagroup' => true, 'title' => string, 'photo' => ChatPhoto, 'participants_count' => int, 'participants' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatInviteAlready.md b/docs/API_docs/constructors/chatInviteAlready.md index 00eb456f..307bc037 100644 --- a/docs/API_docs/constructors/chatInviteAlready.md +++ b/docs/API_docs/constructors/chatInviteAlready.md @@ -13,5 +13,5 @@ ``` -$chatInviteAlready = ['chat' => Chat, ]; +$chatInviteAlready = ['_' => chatInviteAlready', 'chat' => Chat, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatInviteEmpty.md b/docs/API_docs/constructors/chatInviteEmpty.md index ffa1c438..39f498f0 100644 --- a/docs/API_docs/constructors/chatInviteEmpty.md +++ b/docs/API_docs/constructors/chatInviteEmpty.md @@ -1,9 +1,5 @@ ## Constructor: chatInviteEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ExportedChatInvite](../types/ExportedChatInvite.md) @@ -12,5 +8,5 @@ ``` -$chatInviteEmpty = ; +$chatInviteEmpty = ['_' => chatInviteEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatInviteExported.md b/docs/API_docs/constructors/chatInviteExported.md index 871db7ac..8362e7ef 100644 --- a/docs/API_docs/constructors/chatInviteExported.md +++ b/docs/API_docs/constructors/chatInviteExported.md @@ -13,5 +13,5 @@ ``` -$chatInviteExported = ['link' => string, ]; +$chatInviteExported = ['_' => chatInviteExported', 'link' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatParticipant.md b/docs/API_docs/constructors/chatParticipant.md index 61852243..41c2666d 100644 --- a/docs/API_docs/constructors/chatParticipant.md +++ b/docs/API_docs/constructors/chatParticipant.md @@ -15,5 +15,5 @@ ``` -$chatParticipant = ['user_id' => int, 'inviter_id' => int, 'date' => int, ]; +$chatParticipant = ['_' => chatParticipant', 'user_id' => int, 'inviter_id' => int, 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatParticipantAdmin.md b/docs/API_docs/constructors/chatParticipantAdmin.md index e3c76175..feae4d45 100644 --- a/docs/API_docs/constructors/chatParticipantAdmin.md +++ b/docs/API_docs/constructors/chatParticipantAdmin.md @@ -15,5 +15,5 @@ ``` -$chatParticipantAdmin = ['user_id' => int, 'inviter_id' => int, 'date' => int, ]; +$chatParticipantAdmin = ['_' => chatParticipantAdmin', 'user_id' => int, 'inviter_id' => int, 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatParticipantCreator.md b/docs/API_docs/constructors/chatParticipantCreator.md index 5cac1d5a..6b215951 100644 --- a/docs/API_docs/constructors/chatParticipantCreator.md +++ b/docs/API_docs/constructors/chatParticipantCreator.md @@ -13,5 +13,5 @@ ``` -$chatParticipantCreator = ['user_id' => int, ]; +$chatParticipantCreator = ['_' => chatParticipantCreator', 'user_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatParticipants.md b/docs/API_docs/constructors/chatParticipants.md index cba9f8b6..97ee177d 100644 --- a/docs/API_docs/constructors/chatParticipants.md +++ b/docs/API_docs/constructors/chatParticipants.md @@ -15,5 +15,5 @@ ``` -$chatParticipants = ['chat_id' => int, 'participants' => [ChatParticipant], 'version' => int, ]; +$chatParticipants = ['_' => chatParticipants', 'chat_id' => int, 'participants' => [Vector t], 'version' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatParticipantsForbidden.md b/docs/API_docs/constructors/chatParticipantsForbidden.md index 996c7ac7..c1a86a76 100644 --- a/docs/API_docs/constructors/chatParticipantsForbidden.md +++ b/docs/API_docs/constructors/chatParticipantsForbidden.md @@ -14,5 +14,5 @@ ``` -$chatParticipantsForbidden = ['chat_id' => int, 'self_participant' => ChatParticipant, ]; +$chatParticipantsForbidden = ['_' => chatParticipantsForbidden', 'chat_id' => int, 'self_participant' => ChatParticipant, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatPhoto.md b/docs/API_docs/constructors/chatPhoto.md index 59d996e3..ff9f5c86 100644 --- a/docs/API_docs/constructors/chatPhoto.md +++ b/docs/API_docs/constructors/chatPhoto.md @@ -14,5 +14,5 @@ ``` -$chatPhoto = ['photo_small' => FileLocation, 'photo_big' => FileLocation, ]; +$chatPhoto = ['_' => chatPhoto', 'photo_small' => FileLocation, 'photo_big' => FileLocation, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/chatPhotoEmpty.md b/docs/API_docs/constructors/chatPhotoEmpty.md index be3568e6..a3cced06 100644 --- a/docs/API_docs/constructors/chatPhotoEmpty.md +++ b/docs/API_docs/constructors/chatPhotoEmpty.md @@ -1,9 +1,5 @@ ## Constructor: chatPhotoEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ChatPhoto](../types/ChatPhoto.md) @@ -12,5 +8,5 @@ ``` -$chatPhotoEmpty = ; +$chatPhotoEmpty = ['_' => chatPhotoEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/config.md b/docs/API_docs/constructors/config.md index f6d77832..efeb67aa 100644 --- a/docs/API_docs/constructors/config.md +++ b/docs/API_docs/constructors/config.md @@ -35,5 +35,5 @@ ``` -$config = ['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, 'disabled_features' => [DisabledFeature], ]; +$config = ['_' => config', 'date' => int, 'expires' => int, 'test_mode' => Bool, 'this_dc' => int, 'dc_options' => [Vector t], '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, 'disabled_features' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contact.md b/docs/API_docs/constructors/contact.md index 0194062b..bd92fe56 100644 --- a/docs/API_docs/constructors/contact.md +++ b/docs/API_docs/constructors/contact.md @@ -14,5 +14,5 @@ ``` -$contact = ['user_id' => int, 'mutual' => Bool, ]; +$contact = ['_' => contact', 'user_id' => int, 'mutual' => Bool, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contactBlocked.md b/docs/API_docs/constructors/contactBlocked.md index d27d4a3b..3ff6a20c 100644 --- a/docs/API_docs/constructors/contactBlocked.md +++ b/docs/API_docs/constructors/contactBlocked.md @@ -14,5 +14,5 @@ ``` -$contactBlocked = ['user_id' => int, 'date' => int, ]; +$contactBlocked = ['_' => contactBlocked', 'user_id' => int, 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contactLinkContact.md b/docs/API_docs/constructors/contactLinkContact.md index 4a305cd9..dc458172 100644 --- a/docs/API_docs/constructors/contactLinkContact.md +++ b/docs/API_docs/constructors/contactLinkContact.md @@ -1,9 +1,5 @@ ## Constructor: contactLinkContact -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ContactLink](../types/ContactLink.md) @@ -12,5 +8,5 @@ ``` -$contactLinkContact = ; +$contactLinkContact = ['_' => contactLinkContact', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contactLinkHasPhone.md b/docs/API_docs/constructors/contactLinkHasPhone.md index eb08e1c7..0c88072b 100644 --- a/docs/API_docs/constructors/contactLinkHasPhone.md +++ b/docs/API_docs/constructors/contactLinkHasPhone.md @@ -1,9 +1,5 @@ ## Constructor: contactLinkHasPhone -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ContactLink](../types/ContactLink.md) @@ -12,5 +8,5 @@ ``` -$contactLinkHasPhone = ; +$contactLinkHasPhone = ['_' => contactLinkHasPhone', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contactLinkNone.md b/docs/API_docs/constructors/contactLinkNone.md index f6ba4605..eafe1e30 100644 --- a/docs/API_docs/constructors/contactLinkNone.md +++ b/docs/API_docs/constructors/contactLinkNone.md @@ -1,9 +1,5 @@ ## Constructor: contactLinkNone -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ContactLink](../types/ContactLink.md) @@ -12,5 +8,5 @@ ``` -$contactLinkNone = ; +$contactLinkNone = ['_' => contactLinkNone', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contactLinkUnknown.md b/docs/API_docs/constructors/contactLinkUnknown.md index 388ce15c..5be0c047 100644 --- a/docs/API_docs/constructors/contactLinkUnknown.md +++ b/docs/API_docs/constructors/contactLinkUnknown.md @@ -1,9 +1,5 @@ ## Constructor: contactLinkUnknown -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ContactLink](../types/ContactLink.md) @@ -12,5 +8,5 @@ ``` -$contactLinkUnknown = ; +$contactLinkUnknown = ['_' => contactLinkUnknown', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contactStatus.md b/docs/API_docs/constructors/contactStatus.md index 2ec808bc..b7bdff9f 100644 --- a/docs/API_docs/constructors/contactStatus.md +++ b/docs/API_docs/constructors/contactStatus.md @@ -14,5 +14,5 @@ ``` -$contactStatus = ['user_id' => int, 'status' => UserStatus, ]; +$contactStatus = ['_' => contactStatus', 'user_id' => int, 'status' => UserStatus, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contacts_blocked.md b/docs/API_docs/constructors/contacts_blocked.md index 1788f8cf..03255ebf 100644 --- a/docs/API_docs/constructors/contacts_blocked.md +++ b/docs/API_docs/constructors/contacts_blocked.md @@ -14,5 +14,5 @@ ``` -$contacts_blocked = ['blocked' => [ContactBlocked], 'users' => [User], ]; +$contacts_blocked = ['_' => contacts_blocked', 'blocked' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contacts_blockedSlice.md b/docs/API_docs/constructors/contacts_blockedSlice.md index fa870531..febdb340 100644 --- a/docs/API_docs/constructors/contacts_blockedSlice.md +++ b/docs/API_docs/constructors/contacts_blockedSlice.md @@ -15,5 +15,5 @@ ``` -$contacts_blockedSlice = ['count' => int, 'blocked' => [ContactBlocked], 'users' => [User], ]; +$contacts_blockedSlice = ['_' => contacts_blockedSlice', 'count' => int, 'blocked' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contacts_contacts.md b/docs/API_docs/constructors/contacts_contacts.md index ba2178d4..5014e39b 100644 --- a/docs/API_docs/constructors/contacts_contacts.md +++ b/docs/API_docs/constructors/contacts_contacts.md @@ -14,5 +14,5 @@ ``` -$contacts_contacts = ['contacts' => [Contact], 'users' => [User], ]; +$contacts_contacts = ['_' => contacts_contacts', 'contacts' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contacts_contactsNotModified.md b/docs/API_docs/constructors/contacts_contactsNotModified.md index ef0cc7cb..109dc24c 100644 --- a/docs/API_docs/constructors/contacts_contactsNotModified.md +++ b/docs/API_docs/constructors/contacts_contactsNotModified.md @@ -1,9 +1,5 @@ ## Constructor: contacts\_contactsNotModified -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [contacts\_Contacts](../types/contacts\_Contacts.md) @@ -12,5 +8,5 @@ ``` -$contacts_contactsNotModified = ; +$contacts_contactsNotModified = ['_' => contacts_contactsNotModified', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contacts_found.md b/docs/API_docs/constructors/contacts_found.md index 578a8699..9b306953 100644 --- a/docs/API_docs/constructors/contacts_found.md +++ b/docs/API_docs/constructors/contacts_found.md @@ -15,5 +15,5 @@ ``` -$contacts_found = ['results' => [Peer], 'chats' => [Chat], 'users' => [User], ]; +$contacts_found = ['_' => contacts_found', 'results' => [Vector t], 'chats' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contacts_importedContacts.md b/docs/API_docs/constructors/contacts_importedContacts.md index 64be7e5e..540ba41c 100644 --- a/docs/API_docs/constructors/contacts_importedContacts.md +++ b/docs/API_docs/constructors/contacts_importedContacts.md @@ -15,5 +15,5 @@ ``` -$contacts_importedContacts = ['imported' => [ImportedContact], 'retry_contacts' => [long], 'users' => [User], ]; +$contacts_importedContacts = ['_' => contacts_importedContacts', 'imported' => [Vector t], 'retry_contacts' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contacts_link.md b/docs/API_docs/constructors/contacts_link.md index a980b66f..0e3c1955 100644 --- a/docs/API_docs/constructors/contacts_link.md +++ b/docs/API_docs/constructors/contacts_link.md @@ -15,5 +15,5 @@ ``` -$contacts_link = ['my_link' => ContactLink, 'foreign_link' => ContactLink, 'user' => User, ]; +$contacts_link = ['_' => contacts_link', 'my_link' => ContactLink, 'foreign_link' => ContactLink, 'user' => User, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contacts_resolvedPeer.md b/docs/API_docs/constructors/contacts_resolvedPeer.md index afbb8631..40e65348 100644 --- a/docs/API_docs/constructors/contacts_resolvedPeer.md +++ b/docs/API_docs/constructors/contacts_resolvedPeer.md @@ -15,5 +15,5 @@ ``` -$contacts_resolvedPeer = ['peer' => Peer, 'chats' => [Chat], 'users' => [User], ]; +$contacts_resolvedPeer = ['_' => contacts_resolvedPeer', 'peer' => Peer, 'chats' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contacts_topPeers.md b/docs/API_docs/constructors/contacts_topPeers.md index dae490be..3d8aab10 100644 --- a/docs/API_docs/constructors/contacts_topPeers.md +++ b/docs/API_docs/constructors/contacts_topPeers.md @@ -15,5 +15,5 @@ ``` -$contacts_topPeers = ['categories' => [TopPeerCategoryPeers], 'chats' => [Chat], 'users' => [User], ]; +$contacts_topPeers = ['_' => contacts_topPeers', 'categories' => [Vector t], 'chats' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/contacts_topPeersNotModified.md b/docs/API_docs/constructors/contacts_topPeersNotModified.md index 169d970e..c6464b35 100644 --- a/docs/API_docs/constructors/contacts_topPeersNotModified.md +++ b/docs/API_docs/constructors/contacts_topPeersNotModified.md @@ -1,9 +1,5 @@ ## Constructor: contacts\_topPeersNotModified -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [contacts\_TopPeers](../types/contacts\_TopPeers.md) @@ -12,5 +8,5 @@ ``` -$contacts_topPeersNotModified = ; +$contacts_topPeersNotModified = ['_' => contacts_topPeersNotModified', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/dcOption.md b/docs/API_docs/constructors/dcOption.md index 54b0d37e..fd3c24d2 100644 --- a/docs/API_docs/constructors/dcOption.md +++ b/docs/API_docs/constructors/dcOption.md @@ -18,5 +18,5 @@ ``` -$dcOption = ['ipv6' => Bool, 'media_only' => Bool, 'tcpo_only' => Bool, 'id' => int, 'ip_address' => string, 'port' => int, ]; +$dcOption = ['_' => dcOption', 'ipv6' => true, 'media_only' => true, 'tcpo_only' => true, 'id' => int, 'ip_address' => string, 'port' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/dialog.md b/docs/API_docs/constructors/dialog.md index 871e9cf3..c0c6d05a 100644 --- a/docs/API_docs/constructors/dialog.md +++ b/docs/API_docs/constructors/dialog.md @@ -20,5 +20,5 @@ ``` -$dialog = ['peer' => Peer, 'top_message' => int, 'read_inbox_max_id' => int, 'read_outbox_max_id' => int, 'unread_count' => int, 'notify_settings' => PeerNotifySettings, 'pts' => int, 'draft' => DraftMessage, ]; +$dialog = ['_' => dialog', 'peer' => Peer, 'top_message' => int, 'read_inbox_max_id' => int, 'read_outbox_max_id' => int, 'unread_count' => int, 'notify_settings' => PeerNotifySettings, 'pts' => int, 'draft' => DraftMessage, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/disabledFeature.md b/docs/API_docs/constructors/disabledFeature.md index a21226d3..1a4e6499 100644 --- a/docs/API_docs/constructors/disabledFeature.md +++ b/docs/API_docs/constructors/disabledFeature.md @@ -14,5 +14,5 @@ ``` -$disabledFeature = ['feature' => string, 'description' => string, ]; +$disabledFeature = ['_' => disabledFeature', 'feature' => string, 'description' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/document.md b/docs/API_docs/constructors/document.md index 326d8f6f..4cdf345f 100644 --- a/docs/API_docs/constructors/document.md +++ b/docs/API_docs/constructors/document.md @@ -21,5 +21,5 @@ ``` -$document = ['id' => long, 'access_hash' => long, 'date' => int, 'mime_type' => string, 'size' => int, 'thumb' => PhotoSize, 'dc_id' => int, 'version' => int, 'attributes' => [DocumentAttribute], ]; +$document = ['_' => document', 'id' => long, 'access_hash' => long, 'date' => int, 'mime_type' => string, 'size' => int, 'thumb' => PhotoSize, 'dc_id' => int, 'version' => int, 'attributes' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/documentAttributeAnimated.md b/docs/API_docs/constructors/documentAttributeAnimated.md index f2bbfe00..4092bc25 100644 --- a/docs/API_docs/constructors/documentAttributeAnimated.md +++ b/docs/API_docs/constructors/documentAttributeAnimated.md @@ -1,9 +1,5 @@ ## Constructor: documentAttributeAnimated -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [DocumentAttribute](../types/DocumentAttribute.md) @@ -12,5 +8,5 @@ ``` -$documentAttributeAnimated = ; +$documentAttributeAnimated = ['_' => documentAttributeAnimated', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/documentAttributeAudio.md b/docs/API_docs/constructors/documentAttributeAudio.md index ee3f89da..69bc8711 100644 --- a/docs/API_docs/constructors/documentAttributeAudio.md +++ b/docs/API_docs/constructors/documentAttributeAudio.md @@ -17,5 +17,5 @@ ``` -$documentAttributeAudio = ['voice' => Bool, 'duration' => int, 'title' => string, 'performer' => string, 'waveform' => bytes, ]; +$documentAttributeAudio = ['_' => documentAttributeAudio', 'voice' => true, 'duration' => int, 'title' => string, 'performer' => string, 'waveform' => bytes, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/documentAttributeFilename.md b/docs/API_docs/constructors/documentAttributeFilename.md index 60b33cdf..8551056e 100644 --- a/docs/API_docs/constructors/documentAttributeFilename.md +++ b/docs/API_docs/constructors/documentAttributeFilename.md @@ -13,5 +13,5 @@ ``` -$documentAttributeFilename = ['file_name' => string, ]; +$documentAttributeFilename = ['_' => documentAttributeFilename', 'file_name' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/documentAttributeHasStickers.md b/docs/API_docs/constructors/documentAttributeHasStickers.md index 6b39b80c..7b9ec4a9 100644 --- a/docs/API_docs/constructors/documentAttributeHasStickers.md +++ b/docs/API_docs/constructors/documentAttributeHasStickers.md @@ -1,9 +1,5 @@ ## Constructor: documentAttributeHasStickers -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [DocumentAttribute](../types/DocumentAttribute.md) @@ -12,5 +8,5 @@ ``` -$documentAttributeHasStickers = ; +$documentAttributeHasStickers = ['_' => documentAttributeHasStickers', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/documentAttributeImageSize.md b/docs/API_docs/constructors/documentAttributeImageSize.md index 3c18cae4..a7f61903 100644 --- a/docs/API_docs/constructors/documentAttributeImageSize.md +++ b/docs/API_docs/constructors/documentAttributeImageSize.md @@ -14,5 +14,5 @@ ``` -$documentAttributeImageSize = ['w' => int, 'h' => int, ]; +$documentAttributeImageSize = ['_' => documentAttributeImageSize', 'w' => int, 'h' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/documentAttributeSticker.md b/docs/API_docs/constructors/documentAttributeSticker.md index 946dd7db..94335d4d 100644 --- a/docs/API_docs/constructors/documentAttributeSticker.md +++ b/docs/API_docs/constructors/documentAttributeSticker.md @@ -16,5 +16,5 @@ ``` -$documentAttributeSticker = ['mask' => Bool, 'alt' => string, 'stickerset' => InputStickerSet, 'mask_coords' => MaskCoords, ]; +$documentAttributeSticker = ['_' => documentAttributeSticker', 'mask' => true, 'alt' => string, 'stickerset' => InputStickerSet, 'mask_coords' => MaskCoords, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/documentAttributeVideo.md b/docs/API_docs/constructors/documentAttributeVideo.md index 8488ab40..23737afd 100644 --- a/docs/API_docs/constructors/documentAttributeVideo.md +++ b/docs/API_docs/constructors/documentAttributeVideo.md @@ -15,5 +15,5 @@ ``` -$documentAttributeVideo = ['duration' => int, 'w' => int, 'h' => int, ]; +$documentAttributeVideo = ['_' => documentAttributeVideo', 'duration' => int, 'w' => int, 'h' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/documentEmpty.md b/docs/API_docs/constructors/documentEmpty.md index 3a370a89..ca51ff5a 100644 --- a/docs/API_docs/constructors/documentEmpty.md +++ b/docs/API_docs/constructors/documentEmpty.md @@ -13,5 +13,5 @@ ``` -$documentEmpty = ['id' => long, ]; +$documentEmpty = ['_' => documentEmpty', 'id' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/draftMessage.md b/docs/API_docs/constructors/draftMessage.md index f004ddcb..a2108c8f 100644 --- a/docs/API_docs/constructors/draftMessage.md +++ b/docs/API_docs/constructors/draftMessage.md @@ -17,5 +17,5 @@ ``` -$draftMessage = ['no_webpage' => Bool, 'reply_to_msg_id' => int, 'message' => string, 'entities' => [MessageEntity], 'date' => int, ]; +$draftMessage = ['_' => draftMessage', 'no_webpage' => true, 'reply_to_msg_id' => int, 'message' => string, 'entities' => [Vector t], 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/draftMessageEmpty.md b/docs/API_docs/constructors/draftMessageEmpty.md index 4dfbcce2..9f70c176 100644 --- a/docs/API_docs/constructors/draftMessageEmpty.md +++ b/docs/API_docs/constructors/draftMessageEmpty.md @@ -1,9 +1,5 @@ ## Constructor: draftMessageEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [DraftMessage](../types/DraftMessage.md) @@ -12,5 +8,5 @@ ``` -$draftMessageEmpty = ; +$draftMessageEmpty = ['_' => draftMessageEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/encryptedChat.md b/docs/API_docs/constructors/encryptedChat.md index 35d93552..ea71e047 100644 --- a/docs/API_docs/constructors/encryptedChat.md +++ b/docs/API_docs/constructors/encryptedChat.md @@ -19,5 +19,5 @@ ``` -$encryptedChat = ['id' => int, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, 'g_a_or_b' => bytes, 'key_fingerprint' => long, ]; +$encryptedChat = ['_' => encryptedChat', 'id' => int, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, 'g_a_or_b' => bytes, 'key_fingerprint' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/encryptedChatDiscarded.md b/docs/API_docs/constructors/encryptedChatDiscarded.md index 20b20cae..d1c92132 100644 --- a/docs/API_docs/constructors/encryptedChatDiscarded.md +++ b/docs/API_docs/constructors/encryptedChatDiscarded.md @@ -13,5 +13,5 @@ ``` -$encryptedChatDiscarded = ['id' => int, ]; +$encryptedChatDiscarded = ['_' => encryptedChatDiscarded', 'id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/encryptedChatEmpty.md b/docs/API_docs/constructors/encryptedChatEmpty.md index 177d8096..ef9286c3 100644 --- a/docs/API_docs/constructors/encryptedChatEmpty.md +++ b/docs/API_docs/constructors/encryptedChatEmpty.md @@ -13,5 +13,5 @@ ``` -$encryptedChatEmpty = ['id' => int, ]; +$encryptedChatEmpty = ['_' => encryptedChatEmpty', 'id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/encryptedChatRequested.md b/docs/API_docs/constructors/encryptedChatRequested.md index 7e73a599..2523661f 100644 --- a/docs/API_docs/constructors/encryptedChatRequested.md +++ b/docs/API_docs/constructors/encryptedChatRequested.md @@ -18,5 +18,5 @@ ``` -$encryptedChatRequested = ['id' => int, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, 'g_a' => bytes, ]; +$encryptedChatRequested = ['_' => encryptedChatRequested', 'id' => int, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, 'g_a' => bytes, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/encryptedChatWaiting.md b/docs/API_docs/constructors/encryptedChatWaiting.md index 7b3ca41c..33a433f8 100644 --- a/docs/API_docs/constructors/encryptedChatWaiting.md +++ b/docs/API_docs/constructors/encryptedChatWaiting.md @@ -17,5 +17,5 @@ ``` -$encryptedChatWaiting = ['id' => int, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, ]; +$encryptedChatWaiting = ['_' => encryptedChatWaiting', 'id' => int, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/encryptedFile.md b/docs/API_docs/constructors/encryptedFile.md index 99ab4c9f..15afbe2d 100644 --- a/docs/API_docs/constructors/encryptedFile.md +++ b/docs/API_docs/constructors/encryptedFile.md @@ -17,5 +17,5 @@ ``` -$encryptedFile = ['id' => long, 'access_hash' => long, 'size' => int, 'dc_id' => int, 'key_fingerprint' => int, ]; +$encryptedFile = ['_' => encryptedFile', 'id' => long, 'access_hash' => long, 'size' => int, 'dc_id' => int, 'key_fingerprint' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/encryptedFileEmpty.md b/docs/API_docs/constructors/encryptedFileEmpty.md index 68d7d33a..13a325f9 100644 --- a/docs/API_docs/constructors/encryptedFileEmpty.md +++ b/docs/API_docs/constructors/encryptedFileEmpty.md @@ -1,9 +1,5 @@ ## Constructor: encryptedFileEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [EncryptedFile](../types/EncryptedFile.md) @@ -12,5 +8,5 @@ ``` -$encryptedFileEmpty = ; +$encryptedFileEmpty = ['_' => encryptedFileEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/encryptedMessage.md b/docs/API_docs/constructors/encryptedMessage.md index 6e533bca..5f9d8ea9 100644 --- a/docs/API_docs/constructors/encryptedMessage.md +++ b/docs/API_docs/constructors/encryptedMessage.md @@ -17,5 +17,5 @@ ``` -$encryptedMessage = ['random_id' => long, 'chat_id' => int, 'date' => int, 'bytes' => bytes, 'file' => EncryptedFile, ]; +$encryptedMessage = ['_' => encryptedMessage', 'random_id' => long, 'chat_id' => int, 'date' => int, 'bytes' => bytes, 'file' => EncryptedFile, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/encryptedMessageService.md b/docs/API_docs/constructors/encryptedMessageService.md index 17e80255..2c9fe918 100644 --- a/docs/API_docs/constructors/encryptedMessageService.md +++ b/docs/API_docs/constructors/encryptedMessageService.md @@ -16,5 +16,5 @@ ``` -$encryptedMessageService = ['random_id' => long, 'chat_id' => int, 'date' => int, 'bytes' => bytes, ]; +$encryptedMessageService = ['_' => encryptedMessageService', 'random_id' => long, 'chat_id' => int, 'date' => int, 'bytes' => bytes, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/error.md b/docs/API_docs/constructors/error.md index 77c22c38..e2ab164b 100644 --- a/docs/API_docs/constructors/error.md +++ b/docs/API_docs/constructors/error.md @@ -14,5 +14,5 @@ ``` -$error = ['code' => int, 'text' => string, ]; +$error = ['_' => error', 'code' => int, 'text' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/exportedMessageLink.md b/docs/API_docs/constructors/exportedMessageLink.md index eb5b4a12..7228ee46 100644 --- a/docs/API_docs/constructors/exportedMessageLink.md +++ b/docs/API_docs/constructors/exportedMessageLink.md @@ -13,5 +13,5 @@ ``` -$exportedMessageLink = ['link' => string, ]; +$exportedMessageLink = ['_' => exportedMessageLink', 'link' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/fileLocation.md b/docs/API_docs/constructors/fileLocation.md index 214f5a86..bc03c186 100644 --- a/docs/API_docs/constructors/fileLocation.md +++ b/docs/API_docs/constructors/fileLocation.md @@ -16,5 +16,5 @@ ``` -$fileLocation = ['dc_id' => int, 'volume_id' => long, 'local_id' => int, 'secret' => long, ]; +$fileLocation = ['_' => fileLocation', 'dc_id' => int, 'volume_id' => long, 'local_id' => int, 'secret' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/fileLocationUnavailable.md b/docs/API_docs/constructors/fileLocationUnavailable.md index 550aad27..715c321d 100644 --- a/docs/API_docs/constructors/fileLocationUnavailable.md +++ b/docs/API_docs/constructors/fileLocationUnavailable.md @@ -15,5 +15,5 @@ ``` -$fileLocationUnavailable = ['volume_id' => long, 'local_id' => int, 'secret' => long, ]; +$fileLocationUnavailable = ['_' => fileLocationUnavailable', 'volume_id' => long, 'local_id' => int, 'secret' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/foundGif.md b/docs/API_docs/constructors/foundGif.md index 43f52caa..3beb2b02 100644 --- a/docs/API_docs/constructors/foundGif.md +++ b/docs/API_docs/constructors/foundGif.md @@ -18,5 +18,5 @@ ``` -$foundGif = ['url' => string, 'thumb_url' => string, 'content_url' => string, 'content_type' => string, 'w' => int, 'h' => int, ]; +$foundGif = ['_' => foundGif', 'url' => string, 'thumb_url' => string, 'content_url' => string, 'content_type' => string, 'w' => int, 'h' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/foundGifCached.md b/docs/API_docs/constructors/foundGifCached.md index e1a60f29..305acd2e 100644 --- a/docs/API_docs/constructors/foundGifCached.md +++ b/docs/API_docs/constructors/foundGifCached.md @@ -15,5 +15,5 @@ ``` -$foundGifCached = ['url' => string, 'photo' => Photo, 'document' => Document, ]; +$foundGifCached = ['_' => foundGifCached', 'url' => string, 'photo' => Photo, 'document' => Document, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/game.md b/docs/API_docs/constructors/game.md index c69e8ef7..226e38e4 100644 --- a/docs/API_docs/constructors/game.md +++ b/docs/API_docs/constructors/game.md @@ -19,5 +19,5 @@ ``` -$game = ['id' => long, 'access_hash' => long, 'short_name' => string, 'title' => string, 'description' => string, 'photo' => Photo, 'document' => Document, ]; +$game = ['_' => game', 'id' => long, 'access_hash' => long, 'short_name' => string, 'title' => string, 'description' => string, 'photo' => Photo, 'document' => Document, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/geoPoint.md b/docs/API_docs/constructors/geoPoint.md index 46913334..b17f8024 100644 --- a/docs/API_docs/constructors/geoPoint.md +++ b/docs/API_docs/constructors/geoPoint.md @@ -14,5 +14,5 @@ ``` -$geoPoint = ['long' => double, 'lat' => double, ]; +$geoPoint = ['_' => geoPoint', 'long' => double, 'lat' => double, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/geoPointEmpty.md b/docs/API_docs/constructors/geoPointEmpty.md index 358459c2..2a714aa5 100644 --- a/docs/API_docs/constructors/geoPointEmpty.md +++ b/docs/API_docs/constructors/geoPointEmpty.md @@ -1,9 +1,5 @@ ## Constructor: geoPointEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [GeoPoint](../types/GeoPoint.md) @@ -12,5 +8,5 @@ ``` -$geoPointEmpty = ; +$geoPointEmpty = ['_' => geoPointEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/help_appChangelog.md b/docs/API_docs/constructors/help_appChangelog.md index a62a9148..9c0e651b 100644 --- a/docs/API_docs/constructors/help_appChangelog.md +++ b/docs/API_docs/constructors/help_appChangelog.md @@ -13,5 +13,5 @@ ``` -$help_appChangelog = ['text' => string, ]; +$help_appChangelog = ['_' => help_appChangelog', 'text' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/help_appChangelogEmpty.md b/docs/API_docs/constructors/help_appChangelogEmpty.md index 85758d4a..5b2a8c00 100644 --- a/docs/API_docs/constructors/help_appChangelogEmpty.md +++ b/docs/API_docs/constructors/help_appChangelogEmpty.md @@ -1,9 +1,5 @@ ## Constructor: help\_appChangelogEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [help\_AppChangelog](../types/help\_AppChangelog.md) @@ -12,5 +8,5 @@ ``` -$help_appChangelogEmpty = ; +$help_appChangelogEmpty = ['_' => help_appChangelogEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/help_appUpdate.md b/docs/API_docs/constructors/help_appUpdate.md index bf66431d..f84ac81a 100644 --- a/docs/API_docs/constructors/help_appUpdate.md +++ b/docs/API_docs/constructors/help_appUpdate.md @@ -16,5 +16,5 @@ ``` -$help_appUpdate = ['id' => int, 'critical' => Bool, 'url' => string, 'text' => string, ]; +$help_appUpdate = ['_' => help_appUpdate', 'id' => int, 'critical' => Bool, 'url' => string, 'text' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/help_inviteText.md b/docs/API_docs/constructors/help_inviteText.md index e6c05dc9..fa7f1caa 100644 --- a/docs/API_docs/constructors/help_inviteText.md +++ b/docs/API_docs/constructors/help_inviteText.md @@ -13,5 +13,5 @@ ``` -$help_inviteText = ['message' => string, ]; +$help_inviteText = ['_' => help_inviteText', 'message' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/help_noAppUpdate.md b/docs/API_docs/constructors/help_noAppUpdate.md index cff49a14..02a1c452 100644 --- a/docs/API_docs/constructors/help_noAppUpdate.md +++ b/docs/API_docs/constructors/help_noAppUpdate.md @@ -1,9 +1,5 @@ ## Constructor: help\_noAppUpdate -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [help\_AppUpdate](../types/help\_AppUpdate.md) @@ -12,5 +8,5 @@ ``` -$help_noAppUpdate = ; +$help_noAppUpdate = ['_' => help_noAppUpdate', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/help_support.md b/docs/API_docs/constructors/help_support.md index b242be66..8acfc184 100644 --- a/docs/API_docs/constructors/help_support.md +++ b/docs/API_docs/constructors/help_support.md @@ -14,5 +14,5 @@ ``` -$help_support = ['phone_number' => string, 'user' => User, ]; +$help_support = ['_' => help_support', 'phone_number' => string, 'user' => User, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/help_termsOfService.md b/docs/API_docs/constructors/help_termsOfService.md index e405f6b0..29e982df 100644 --- a/docs/API_docs/constructors/help_termsOfService.md +++ b/docs/API_docs/constructors/help_termsOfService.md @@ -13,5 +13,5 @@ ``` -$help_termsOfService = ['text' => string, ]; +$help_termsOfService = ['_' => help_termsOfService', 'text' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/highScore.md b/docs/API_docs/constructors/highScore.md index 4fe2d775..dcbb4f56 100644 --- a/docs/API_docs/constructors/highScore.md +++ b/docs/API_docs/constructors/highScore.md @@ -15,5 +15,5 @@ ``` -$highScore = ['pos' => int, 'user_id' => int, 'score' => int, ]; +$highScore = ['_' => highScore', 'pos' => int, 'user_id' => int, 'score' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/importedContact.md b/docs/API_docs/constructors/importedContact.md index 48bba409..b58b30dc 100644 --- a/docs/API_docs/constructors/importedContact.md +++ b/docs/API_docs/constructors/importedContact.md @@ -14,5 +14,5 @@ ``` -$importedContact = ['user_id' => int, 'client_id' => long, ]; +$importedContact = ['_' => importedContact', 'user_id' => int, 'client_id' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/index.md b/docs/API_docs/constructors/index.md index 3d85e336..d6d97f79 100644 --- a/docs/API_docs/constructors/index.md +++ b/docs/API_docs/constructors/index.md @@ -1,910 +1,910 @@ # Constructors -[$AccountDaysTTL](../types/AccountDaysTTL.md)\['[accountDaysTTL](accountDaysTTL.md)'\] = \['days' => [int](../types/int.md), \] +[$AccountDaysTTL](../types/AccountDaysTTL.md) = \['days' => [int](../types/int.md), \]; -[$account\_Authorizations](../types/account\_Authorizations.md)\['[account\_authorizations](account\_authorizations.md)'\] = \['authorizations' => [[Authorization](../types/Authorization.md)], \] +[$account\_Authorizations](../types/account\_Authorizations.md) = \['authorizations' => [[Authorization](../types/Authorization.md)], \]; -[$account\_Password](../types/account\_Password.md)\['[account\_noPassword](account\_noPassword.md)'\] = \['new\_salt' => [bytes](../types/bytes.md), 'email\_unconfirmed\_pattern' => [string](../types/string.md), \] +[$account\_Password](../types/account\_Password.md) = \['new\_salt' => [bytes](../types/bytes.md), 'email\_unconfirmed\_pattern' => [string](../types/string.md), \]; -[$account\_Password](../types/account\_Password.md)\['[account\_password](account\_password.md)'\] = \['current\_salt' => [bytes](../types/bytes.md), 'new\_salt' => [bytes](../types/bytes.md), 'hint' => [string](../types/string.md), 'has\_recovery' => [Bool](../types/Bool.md), 'email\_unconfirmed\_pattern' => [string](../types/string.md), \] +[$account\_Password](../types/account\_Password.md) = \['current\_salt' => [bytes](../types/bytes.md), 'new\_salt' => [bytes](../types/bytes.md), 'hint' => [string](../types/string.md), 'has\_recovery' => [Bool](../types/Bool.md), 'email\_unconfirmed\_pattern' => [string](../types/string.md), \]; -[$account\_PasswordInputSettings](../types/account\_PasswordInputSettings.md)\['[account\_passwordInputSettings](account\_passwordInputSettings.md)'\] = \['new\_salt' => [bytes](../types/bytes.md), 'new\_password\_hash' => [bytes](../types/bytes.md), 'hint' => [string](../types/string.md), 'email' => [string](../types/string.md), \] +[$account\_PasswordInputSettings](../types/account\_PasswordInputSettings.md) = \['new\_salt' => [bytes](../types/bytes.md), 'new\_password\_hash' => [bytes](../types/bytes.md), 'hint' => [string](../types/string.md), 'email' => [string](../types/string.md), \]; -[$account\_PasswordSettings](../types/account\_PasswordSettings.md)\['[account\_passwordSettings](account\_passwordSettings.md)'\] = \['email' => [string](../types/string.md), \] +[$account\_PasswordSettings](../types/account\_PasswordSettings.md) = \['email' => [string](../types/string.md), \]; -[$account\_PrivacyRules](../types/account\_PrivacyRules.md)\['[account\_privacyRules](account\_privacyRules.md)'\] = \['rules' => [[PrivacyRule](../types/PrivacyRule.md)], 'users' => [[User](../types/User.md)], \] +[$account\_PrivacyRules](../types/account\_PrivacyRules.md) = \['rules' => [[PrivacyRule](../types/PrivacyRule.md)], 'users' => [[User](../types/User.md)], \]; -[$auth\_Authorization](../types/auth\_Authorization.md)\['[auth\_authorization](auth\_authorization.md)'\] = \['tmp\_sessions' => [int](../types/int.md), 'user' => [User](../types/User.md), \] +[$auth\_Authorization](../types/auth\_Authorization.md) = \['tmp\_sessions' => [int](../types/int.md), 'user' => [User](../types/User.md), \]; -[$auth\_CheckedPhone](../types/auth\_CheckedPhone.md)\['[auth\_checkedPhone](auth\_checkedPhone.md)'\] = \['phone\_registered' => [Bool](../types/Bool.md), \] +[$auth\_CheckedPhone](../types/auth\_CheckedPhone.md) = \['phone\_registered' => [Bool](../types/Bool.md), \]; -[$auth\_CodeType](../types/auth\_CodeType.md)\['[auth\_codeTypeCall](auth\_codeTypeCall.md)'\] = +[$auth\_CodeType](../types/auth\_CodeType.md) = \[\]; -[$auth\_CodeType](../types/auth\_CodeType.md)\['[auth\_codeTypeFlashCall](auth\_codeTypeFlashCall.md)'\] = +[$auth\_CodeType](../types/auth\_CodeType.md) = \[\]; -[$auth\_CodeType](../types/auth\_CodeType.md)\['[auth\_codeTypeSms](auth\_codeTypeSms.md)'\] = +[$auth\_CodeType](../types/auth\_CodeType.md) = \[\]; -[$auth\_ExportedAuthorization](../types/auth\_ExportedAuthorization.md)\['[auth\_exportedAuthorization](auth\_exportedAuthorization.md)'\] = \['id' => [int](../types/int.md), 'bytes' => [bytes](../types/bytes.md), \] +[$auth\_ExportedAuthorization](../types/auth\_ExportedAuthorization.md) = \['id' => [int](../types/int.md), 'bytes' => [bytes](../types/bytes.md), \]; -[$auth\_PasswordRecovery](../types/auth\_PasswordRecovery.md)\['[auth\_passwordRecovery](auth\_passwordRecovery.md)'\] = \['email\_pattern' => [string](../types/string.md), \] +[$auth\_PasswordRecovery](../types/auth\_PasswordRecovery.md) = \['email\_pattern' => [string](../types/string.md), \]; -[$auth\_SentCode](../types/auth\_SentCode.md)\['[auth\_sentCode](auth\_sentCode.md)'\] = \['phone\_registered' => [Bool](../types/Bool.md), 'type' => [auth\_SentCodeType](../types/auth\_SentCodeType.md), 'phone\_code\_hash' => [string](../types/string.md), 'next\_type' => [auth\_CodeType](../types/auth\_CodeType.md), 'timeout' => [int](../types/int.md), \] +[$auth\_SentCode](../types/auth\_SentCode.md) = \['phone\_registered' => [Bool](../types/Bool.md), 'type' => [auth\_SentCodeType](../types/auth\_SentCodeType.md), 'phone\_code\_hash' => [string](../types/string.md), 'next\_type' => [auth\_CodeType](../types/auth\_CodeType.md), 'timeout' => [int](../types/int.md), \]; -[$auth\_SentCodeType](../types/auth\_SentCodeType.md)\['[auth\_sentCodeTypeApp](auth\_sentCodeTypeApp.md)'\] = \['length' => [int](../types/int.md), \] +[$auth\_SentCodeType](../types/auth\_SentCodeType.md) = \['length' => [int](../types/int.md), \]; -[$auth\_SentCodeType](../types/auth\_SentCodeType.md)\['[auth\_sentCodeTypeCall](auth\_sentCodeTypeCall.md)'\] = \['length' => [int](../types/int.md), \] +[$auth\_SentCodeType](../types/auth\_SentCodeType.md) = \['length' => [int](../types/int.md), \]; -[$auth\_SentCodeType](../types/auth\_SentCodeType.md)\['[auth\_sentCodeTypeFlashCall](auth\_sentCodeTypeFlashCall.md)'\] = \['pattern' => [string](../types/string.md), \] +[$auth\_SentCodeType](../types/auth\_SentCodeType.md) = \['pattern' => [string](../types/string.md), \]; -[$auth\_SentCodeType](../types/auth\_SentCodeType.md)\['[auth\_sentCodeTypeSms](auth\_sentCodeTypeSms.md)'\] = \['length' => [int](../types/int.md), \] +[$auth\_SentCodeType](../types/auth\_SentCodeType.md) = \['length' => [int](../types/int.md), \]; -[$Authorization](../types/Authorization.md)\['[authorization](authorization.md)'\] = \['hash' => [long](../types/long.md), 'device\_model' => [string](../types/string.md), 'platform' => [string](../types/string.md), 'system\_version' => [string](../types/string.md), 'api\_id' => [int](../types/int.md), 'app\_name' => [string](../types/string.md), 'app\_version' => [string](../types/string.md), 'date\_created' => [int](../types/int.md), 'date\_active' => [int](../types/int.md), 'ip' => [string](../types/string.md), 'country' => [string](../types/string.md), 'region' => [string](../types/string.md), \] +[$Authorization](../types/Authorization.md) = \['hash' => [long](../types/long.md), 'device\_model' => [string](../types/string.md), 'platform' => [string](../types/string.md), 'system\_version' => [string](../types/string.md), 'api\_id' => [int](../types/int.md), 'app\_name' => [string](../types/string.md), 'app\_version' => [string](../types/string.md), 'date\_created' => [int](../types/int.md), 'date\_active' => [int](../types/int.md), 'ip' => [string](../types/string.md), 'country' => [string](../types/string.md), 'region' => [string](../types/string.md), \]; -[$Bool](../types/Bool.md)\['[boolFalse](boolFalse.md)'\] = +[$Bool](../types/Bool.md) = \[\]; -[$Bool](../types/Bool.md)\['[boolTrue](boolTrue.md)'\] = +[$Bool](../types/Bool.md) = \[\]; -[$BotCommand](../types/BotCommand.md)\['[botCommand](botCommand.md)'\] = \['command' => [string](../types/string.md), 'description' => [string](../types/string.md), \] +[$BotCommand](../types/BotCommand.md) = \['command' => [string](../types/string.md), 'description' => [string](../types/string.md), \]; -[$BotInfo](../types/BotInfo.md)\['[botInfo](botInfo.md)'\] = \['user\_id' => [int](../types/int.md), 'description' => [string](../types/string.md), 'commands' => [[BotCommand](../types/BotCommand.md)], \] +[$BotInfo](../types/BotInfo.md) = \['user\_id' => [int](../types/int.md), 'description' => [string](../types/string.md), 'commands' => [[BotCommand](../types/BotCommand.md)], \]; -[$BotInlineResult](../types/BotInlineResult.md)\['[botInlineMediaResult](botInlineMediaResult.md)'\] = \['id' => [string](../types/string.md), 'type' => [string](../types/string.md), 'photo' => [Photo](../types/Photo.md), 'document' => [Document](../types/Document.md), 'title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'send\_message' => [BotInlineMessage](../types/BotInlineMessage.md), \] +[$BotInlineResult](../types/BotInlineResult.md) = \['id' => [string](../types/string.md), 'type' => [string](../types/string.md), 'photo' => [Photo](../types/Photo.md), 'document' => [Document](../types/Document.md), 'title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'send\_message' => [BotInlineMessage](../types/BotInlineMessage.md), \]; -[$BotInlineMessage](../types/BotInlineMessage.md)\['[botInlineMessageMediaAuto](botInlineMessageMediaAuto.md)'\] = \['caption' => [string](../types/string.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \] +[$BotInlineMessage](../types/BotInlineMessage.md) = \['caption' => [string](../types/string.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \]; -[$BotInlineMessage](../types/BotInlineMessage.md)\['[botInlineMessageMediaContact](botInlineMessageMediaContact.md)'\] = \['phone\_number' => [string](../types/string.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \] +[$BotInlineMessage](../types/BotInlineMessage.md) = \['phone\_number' => [string](../types/string.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \]; -[$BotInlineMessage](../types/BotInlineMessage.md)\['[botInlineMessageMediaGeo](botInlineMessageMediaGeo.md)'\] = \['geo' => [GeoPoint](../types/GeoPoint.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \] +[$BotInlineMessage](../types/BotInlineMessage.md) = \['geo' => [GeoPoint](../types/GeoPoint.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \]; -[$BotInlineMessage](../types/BotInlineMessage.md)\['[botInlineMessageMediaVenue](botInlineMessageMediaVenue.md)'\] = \['geo' => [GeoPoint](../types/GeoPoint.md), 'title' => [string](../types/string.md), 'address' => [string](../types/string.md), 'provider' => [string](../types/string.md), 'venue\_id' => [string](../types/string.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \] +[$BotInlineMessage](../types/BotInlineMessage.md) = \['geo' => [GeoPoint](../types/GeoPoint.md), 'title' => [string](../types/string.md), 'address' => [string](../types/string.md), 'provider' => [string](../types/string.md), 'venue\_id' => [string](../types/string.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \]; -[$BotInlineMessage](../types/BotInlineMessage.md)\['[botInlineMessageText](botInlineMessageText.md)'\] = \['no\_webpage' => [Bool](../types/Bool.md), 'message' => [string](../types/string.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \] +[$BotInlineMessage](../types/BotInlineMessage.md) = \['no\_webpage' => [Bool](../types/Bool.md), 'message' => [string](../types/string.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \]; -[$BotInlineResult](../types/BotInlineResult.md)\['[botInlineResult](botInlineResult.md)'\] = \['id' => [string](../types/string.md), 'type' => [string](../types/string.md), 'title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'url' => [string](../types/string.md), 'thumb\_url' => [string](../types/string.md), 'content\_url' => [string](../types/string.md), 'content\_type' => [string](../types/string.md), 'w' => [int](../types/int.md), 'h' => [int](../types/int.md), 'duration' => [int](../types/int.md), 'send\_message' => [BotInlineMessage](../types/BotInlineMessage.md), \] +[$BotInlineResult](../types/BotInlineResult.md) = \['id' => [string](../types/string.md), 'type' => [string](../types/string.md), 'title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'url' => [string](../types/string.md), 'thumb\_url' => [string](../types/string.md), 'content\_url' => [string](../types/string.md), 'content\_type' => [string](../types/string.md), 'w' => [int](../types/int.md), 'h' => [int](../types/int.md), 'duration' => [int](../types/int.md), 'send\_message' => [BotInlineMessage](../types/BotInlineMessage.md), \]; -[$Chat](../types/Chat.md)\['[channel](channel.md)'\] = \['creator' => [Bool](../types/Bool.md), 'kicked' => [Bool](../types/Bool.md), 'left' => [Bool](../types/Bool.md), 'editor' => [Bool](../types/Bool.md), 'moderator' => [Bool](../types/Bool.md), 'broadcast' => [Bool](../types/Bool.md), 'verified' => [Bool](../types/Bool.md), 'megagroup' => [Bool](../types/Bool.md), 'restricted' => [Bool](../types/Bool.md), 'democracy' => [Bool](../types/Bool.md), 'signatures' => [Bool](../types/Bool.md), 'min' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), 'title' => [string](../types/string.md), 'username' => [string](../types/string.md), 'photo' => [ChatPhoto](../types/ChatPhoto.md), 'date' => [int](../types/int.md), 'version' => [int](../types/int.md), 'restriction\_reason' => [string](../types/string.md), \] +[$Chat](../types/Chat.md) = \['creator' => [Bool](../types/Bool.md), 'kicked' => [Bool](../types/Bool.md), 'left' => [Bool](../types/Bool.md), 'editor' => [Bool](../types/Bool.md), 'moderator' => [Bool](../types/Bool.md), 'broadcast' => [Bool](../types/Bool.md), 'verified' => [Bool](../types/Bool.md), 'megagroup' => [Bool](../types/Bool.md), 'restricted' => [Bool](../types/Bool.md), 'democracy' => [Bool](../types/Bool.md), 'signatures' => [Bool](../types/Bool.md), 'min' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), 'title' => [string](../types/string.md), 'username' => [string](../types/string.md), 'photo' => [ChatPhoto](../types/ChatPhoto.md), 'date' => [int](../types/int.md), 'version' => [int](../types/int.md), 'restriction\_reason' => [string](../types/string.md), \]; -[$Chat](../types/Chat.md)\['[channelForbidden](channelForbidden.md)'\] = \['broadcast' => [Bool](../types/Bool.md), 'megagroup' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), 'title' => [string](../types/string.md), \] +[$Chat](../types/Chat.md) = \['broadcast' => [Bool](../types/Bool.md), 'megagroup' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), 'title' => [string](../types/string.md), \]; -[$ChatFull](../types/ChatFull.md)\['[channelFull](channelFull.md)'\] = \['can\_view\_participants' => [Bool](../types/Bool.md), 'can\_set\_username' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'about' => [string](../types/string.md), 'participants\_count' => [int](../types/int.md), 'admins\_count' => [int](../types/int.md), 'kicked\_count' => [int](../types/int.md), 'read\_inbox\_max\_id' => [int](../types/int.md), 'read\_outbox\_max\_id' => [int](../types/int.md), 'unread\_count' => [int](../types/int.md), 'chat\_photo' => [Photo](../types/Photo.md), 'notify\_settings' => [PeerNotifySettings](../types/PeerNotifySettings.md), 'exported\_invite' => [ExportedChatInvite](../types/ExportedChatInvite.md), 'bot\_info' => [[BotInfo](../types/BotInfo.md)], 'migrated\_from\_chat\_id' => [int](../types/int.md), 'migrated\_from\_max\_id' => [int](../types/int.md), 'pinned\_msg\_id' => [int](../types/int.md), \] +[$ChatFull](../types/ChatFull.md) = \['can\_view\_participants' => [Bool](../types/Bool.md), 'can\_set\_username' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'about' => [string](../types/string.md), 'participants\_count' => [int](../types/int.md), 'admins\_count' => [int](../types/int.md), 'kicked\_count' => [int](../types/int.md), 'read\_inbox\_max\_id' => [int](../types/int.md), 'read\_outbox\_max\_id' => [int](../types/int.md), 'unread\_count' => [int](../types/int.md), 'chat\_photo' => [Photo](../types/Photo.md), 'notify\_settings' => [PeerNotifySettings](../types/PeerNotifySettings.md), 'exported\_invite' => [ExportedChatInvite](../types/ExportedChatInvite.md), 'bot\_info' => [[BotInfo](../types/BotInfo.md)], 'migrated\_from\_chat\_id' => [int](../types/int.md), 'migrated\_from\_max\_id' => [int](../types/int.md), 'pinned\_msg\_id' => [int](../types/int.md), \]; -[$ChannelMessagesFilter](../types/ChannelMessagesFilter.md)\['[channelMessagesFilter](channelMessagesFilter.md)'\] = \['exclude\_new\_messages' => [Bool](../types/Bool.md), 'ranges' => [[MessageRange](../types/MessageRange.md)], \] +[$ChannelMessagesFilter](../types/ChannelMessagesFilter.md) = \['exclude\_new\_messages' => [Bool](../types/Bool.md), 'ranges' => [[MessageRange](../types/MessageRange.md)], \]; -[$ChannelMessagesFilter](../types/ChannelMessagesFilter.md)\['[channelMessagesFilterEmpty](channelMessagesFilterEmpty.md)'\] = +[$ChannelMessagesFilter](../types/ChannelMessagesFilter.md) = \[\]; -[$ChannelParticipant](../types/ChannelParticipant.md)\['[channelParticipant](channelParticipant.md)'\] = \['user\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \] +[$ChannelParticipant](../types/ChannelParticipant.md) = \['user\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \]; -[$ChannelParticipant](../types/ChannelParticipant.md)\['[channelParticipantCreator](channelParticipantCreator.md)'\] = \['user\_id' => [int](../types/int.md), \] +[$ChannelParticipant](../types/ChannelParticipant.md) = \['user\_id' => [int](../types/int.md), \]; -[$ChannelParticipant](../types/ChannelParticipant.md)\['[channelParticipantEditor](channelParticipantEditor.md)'\] = \['user\_id' => [int](../types/int.md), 'inviter\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \] +[$ChannelParticipant](../types/ChannelParticipant.md) = \['user\_id' => [int](../types/int.md), 'inviter\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \]; -[$ChannelParticipant](../types/ChannelParticipant.md)\['[channelParticipantKicked](channelParticipantKicked.md)'\] = \['user\_id' => [int](../types/int.md), 'kicked\_by' => [int](../types/int.md), 'date' => [int](../types/int.md), \] +[$ChannelParticipant](../types/ChannelParticipant.md) = \['user\_id' => [int](../types/int.md), 'kicked\_by' => [int](../types/int.md), 'date' => [int](../types/int.md), \]; -[$ChannelParticipant](../types/ChannelParticipant.md)\['[channelParticipantModerator](channelParticipantModerator.md)'\] = \['user\_id' => [int](../types/int.md), 'inviter\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \] +[$ChannelParticipant](../types/ChannelParticipant.md) = \['user\_id' => [int](../types/int.md), 'inviter\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \]; -[$ChannelParticipant](../types/ChannelParticipant.md)\['[channelParticipantSelf](channelParticipantSelf.md)'\] = \['user\_id' => [int](../types/int.md), 'inviter\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \] +[$ChannelParticipant](../types/ChannelParticipant.md) = \['user\_id' => [int](../types/int.md), 'inviter\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \]; -[$ChannelParticipantsFilter](../types/ChannelParticipantsFilter.md)\['[channelParticipantsAdmins](channelParticipantsAdmins.md)'\] = +[$ChannelParticipantsFilter](../types/ChannelParticipantsFilter.md) = \[\]; -[$ChannelParticipantsFilter](../types/ChannelParticipantsFilter.md)\['[channelParticipantsBots](channelParticipantsBots.md)'\] = +[$ChannelParticipantsFilter](../types/ChannelParticipantsFilter.md) = \[\]; -[$ChannelParticipantsFilter](../types/ChannelParticipantsFilter.md)\['[channelParticipantsKicked](channelParticipantsKicked.md)'\] = +[$ChannelParticipantsFilter](../types/ChannelParticipantsFilter.md) = \[\]; -[$ChannelParticipantsFilter](../types/ChannelParticipantsFilter.md)\['[channelParticipantsRecent](channelParticipantsRecent.md)'\] = +[$ChannelParticipantsFilter](../types/ChannelParticipantsFilter.md) = \[\]; -[$ChannelParticipantRole](../types/ChannelParticipantRole.md)\['[channelRoleEditor](channelRoleEditor.md)'\] = +[$ChannelParticipantRole](../types/ChannelParticipantRole.md) = \[\]; -[$ChannelParticipantRole](../types/ChannelParticipantRole.md)\['[channelRoleEmpty](channelRoleEmpty.md)'\] = +[$ChannelParticipantRole](../types/ChannelParticipantRole.md) = \[\]; -[$ChannelParticipantRole](../types/ChannelParticipantRole.md)\['[channelRoleModerator](channelRoleModerator.md)'\] = +[$ChannelParticipantRole](../types/ChannelParticipantRole.md) = \[\]; -[$channels\_ChannelParticipant](../types/channels\_ChannelParticipant.md)\['[channels\_channelParticipant](channels\_channelParticipant.md)'\] = \['participant' => [ChannelParticipant](../types/ChannelParticipant.md), 'users' => [[User](../types/User.md)], \] +[$channels\_ChannelParticipant](../types/channels\_ChannelParticipant.md) = \['participant' => [ChannelParticipant](../types/ChannelParticipant.md), 'users' => [[User](../types/User.md)], \]; -[$channels\_ChannelParticipants](../types/channels\_ChannelParticipants.md)\['[channels\_channelParticipants](channels\_channelParticipants.md)'\] = \['count' => [int](../types/int.md), 'participants' => [[ChannelParticipant](../types/ChannelParticipant.md)], 'users' => [[User](../types/User.md)], \] +[$channels\_ChannelParticipants](../types/channels\_ChannelParticipants.md) = \['count' => [int](../types/int.md), 'participants' => [[ChannelParticipant](../types/ChannelParticipant.md)], 'users' => [[User](../types/User.md)], \]; -[$Chat](../types/Chat.md)\['[chat](chat.md)'\] = \['creator' => [Bool](../types/Bool.md), 'kicked' => [Bool](../types/Bool.md), 'left' => [Bool](../types/Bool.md), 'admins\_enabled' => [Bool](../types/Bool.md), 'admin' => [Bool](../types/Bool.md), 'deactivated' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'title' => [string](../types/string.md), 'photo' => [ChatPhoto](../types/ChatPhoto.md), 'participants\_count' => [int](../types/int.md), 'date' => [int](../types/int.md), 'version' => [int](../types/int.md), 'migrated\_to' => [InputChannel](../types/InputChannel.md), \] +[$Chat](../types/Chat.md) = \['creator' => [Bool](../types/Bool.md), 'kicked' => [Bool](../types/Bool.md), 'left' => [Bool](../types/Bool.md), 'admins\_enabled' => [Bool](../types/Bool.md), 'admin' => [Bool](../types/Bool.md), 'deactivated' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'title' => [string](../types/string.md), 'photo' => [ChatPhoto](../types/ChatPhoto.md), 'participants\_count' => [int](../types/int.md), 'date' => [int](../types/int.md), 'version' => [int](../types/int.md), 'migrated\_to' => [InputChannel](../types/InputChannel.md), \]; -[$Chat](../types/Chat.md)\['[chatEmpty](chatEmpty.md)'\] = \['id' => [int](../types/int.md), \] +[$Chat](../types/Chat.md) = \['id' => [int](../types/int.md), \]; -[$Chat](../types/Chat.md)\['[chatForbidden](chatForbidden.md)'\] = \['id' => [int](../types/int.md), 'title' => [string](../types/string.md), \] +[$Chat](../types/Chat.md) = \['id' => [int](../types/int.md), 'title' => [string](../types/string.md), \]; -[$ChatFull](../types/ChatFull.md)\['[chatFull](chatFull.md)'\] = \['id' => [int](../types/int.md), 'participants' => [ChatParticipants](../types/ChatParticipants.md), 'chat\_photo' => [Photo](../types/Photo.md), 'notify\_settings' => [PeerNotifySettings](../types/PeerNotifySettings.md), 'exported\_invite' => [ExportedChatInvite](../types/ExportedChatInvite.md), 'bot\_info' => [[BotInfo](../types/BotInfo.md)], \] +[$ChatFull](../types/ChatFull.md) = \['id' => [int](../types/int.md), 'participants' => [ChatParticipants](../types/ChatParticipants.md), 'chat\_photo' => [Photo](../types/Photo.md), 'notify\_settings' => [PeerNotifySettings](../types/PeerNotifySettings.md), 'exported\_invite' => [ExportedChatInvite](../types/ExportedChatInvite.md), 'bot\_info' => [[BotInfo](../types/BotInfo.md)], \]; -[$ChatInvite](../types/ChatInvite.md)\['[chatInvite](chatInvite.md)'\] = \['channel' => [Bool](../types/Bool.md), 'broadcast' => [Bool](../types/Bool.md), 'public' => [Bool](../types/Bool.md), 'megagroup' => [Bool](../types/Bool.md), 'title' => [string](../types/string.md), 'photo' => [ChatPhoto](../types/ChatPhoto.md), 'participants\_count' => [int](../types/int.md), 'participants' => [[User](../types/User.md)], \] +[$ChatInvite](../types/ChatInvite.md) = \['channel' => [Bool](../types/Bool.md), 'broadcast' => [Bool](../types/Bool.md), 'public' => [Bool](../types/Bool.md), 'megagroup' => [Bool](../types/Bool.md), 'title' => [string](../types/string.md), 'photo' => [ChatPhoto](../types/ChatPhoto.md), 'participants\_count' => [int](../types/int.md), 'participants' => [[User](../types/User.md)], \]; -[$ChatInvite](../types/ChatInvite.md)\['[chatInviteAlready](chatInviteAlready.md)'\] = \['chat' => [Chat](../types/Chat.md), \] +[$ChatInvite](../types/ChatInvite.md) = \['chat' => [Chat](../types/Chat.md), \]; -[$ExportedChatInvite](../types/ExportedChatInvite.md)\['[chatInviteEmpty](chatInviteEmpty.md)'\] = +[$ExportedChatInvite](../types/ExportedChatInvite.md) = \[\]; -[$ExportedChatInvite](../types/ExportedChatInvite.md)\['[chatInviteExported](chatInviteExported.md)'\] = \['link' => [string](../types/string.md), \] +[$ExportedChatInvite](../types/ExportedChatInvite.md) = \['link' => [string](../types/string.md), \]; -[$ChatParticipant](../types/ChatParticipant.md)\['[chatParticipant](chatParticipant.md)'\] = \['user\_id' => [int](../types/int.md), 'inviter\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \] +[$ChatParticipant](../types/ChatParticipant.md) = \['user\_id' => [int](../types/int.md), 'inviter\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \]; -[$ChatParticipant](../types/ChatParticipant.md)\['[chatParticipantAdmin](chatParticipantAdmin.md)'\] = \['user\_id' => [int](../types/int.md), 'inviter\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \] +[$ChatParticipant](../types/ChatParticipant.md) = \['user\_id' => [int](../types/int.md), 'inviter\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \]; -[$ChatParticipant](../types/ChatParticipant.md)\['[chatParticipantCreator](chatParticipantCreator.md)'\] = \['user\_id' => [int](../types/int.md), \] +[$ChatParticipant](../types/ChatParticipant.md) = \['user\_id' => [int](../types/int.md), \]; -[$ChatParticipants](../types/ChatParticipants.md)\['[chatParticipants](chatParticipants.md)'\] = \['chat\_id' => [int](../types/int.md), 'participants' => [[ChatParticipant](../types/ChatParticipant.md)], 'version' => [int](../types/int.md), \] +[$ChatParticipants](../types/ChatParticipants.md) = \['chat\_id' => [int](../types/int.md), 'participants' => [[ChatParticipant](../types/ChatParticipant.md)], 'version' => [int](../types/int.md), \]; -[$ChatParticipants](../types/ChatParticipants.md)\['[chatParticipantsForbidden](chatParticipantsForbidden.md)'\] = \['chat\_id' => [int](../types/int.md), 'self\_participant' => [ChatParticipant](../types/ChatParticipant.md), \] +[$ChatParticipants](../types/ChatParticipants.md) = \['chat\_id' => [int](../types/int.md), 'self\_participant' => [ChatParticipant](../types/ChatParticipant.md), \]; -[$ChatPhoto](../types/ChatPhoto.md)\['[chatPhoto](chatPhoto.md)'\] = \['photo\_small' => [FileLocation](../types/FileLocation.md), 'photo\_big' => [FileLocation](../types/FileLocation.md), \] +[$ChatPhoto](../types/ChatPhoto.md) = \['photo\_small' => [FileLocation](../types/FileLocation.md), 'photo\_big' => [FileLocation](../types/FileLocation.md), \]; -[$ChatPhoto](../types/ChatPhoto.md)\['[chatPhotoEmpty](chatPhotoEmpty.md)'\] = +[$ChatPhoto](../types/ChatPhoto.md) = \[\]; -[$Config](../types/Config.md)\['[config](config.md)'\] = \['date' => [int](../types/int.md), 'expires' => [int](../types/int.md), 'test\_mode' => [Bool](../types/Bool.md), 'this\_dc' => [int](../types/int.md), 'dc\_options' => [[DcOption](../types/DcOption.md)], 'chat\_size\_max' => [int](../types/int.md), 'megagroup\_size\_max' => [int](../types/int.md), 'forwarded\_count\_max' => [int](../types/int.md), 'online\_update\_period\_ms' => [int](../types/int.md), 'offline\_blur\_timeout\_ms' => [int](../types/int.md), 'offline\_idle\_timeout\_ms' => [int](../types/int.md), 'online\_cloud\_timeout\_ms' => [int](../types/int.md), 'notify\_cloud\_delay\_ms' => [int](../types/int.md), 'notify\_default\_delay\_ms' => [int](../types/int.md), 'chat\_big\_size' => [int](../types/int.md), 'push\_chat\_period\_ms' => [int](../types/int.md), 'push\_chat\_limit' => [int](../types/int.md), 'saved\_gifs\_limit' => [int](../types/int.md), 'edit\_time\_limit' => [int](../types/int.md), 'rating\_e\_decay' => [int](../types/int.md), 'stickers\_recent\_limit' => [int](../types/int.md), 'tmp\_sessions' => [int](../types/int.md), 'disabled\_features' => [[DisabledFeature](../types/DisabledFeature.md)], \] +[$Config](../types/Config.md) = \['date' => [int](../types/int.md), 'expires' => [int](../types/int.md), 'test\_mode' => [Bool](../types/Bool.md), 'this\_dc' => [int](../types/int.md), 'dc\_options' => [[DcOption](../types/DcOption.md)], 'chat\_size\_max' => [int](../types/int.md), 'megagroup\_size\_max' => [int](../types/int.md), 'forwarded\_count\_max' => [int](../types/int.md), 'online\_update\_period\_ms' => [int](../types/int.md), 'offline\_blur\_timeout\_ms' => [int](../types/int.md), 'offline\_idle\_timeout\_ms' => [int](../types/int.md), 'online\_cloud\_timeout\_ms' => [int](../types/int.md), 'notify\_cloud\_delay\_ms' => [int](../types/int.md), 'notify\_default\_delay\_ms' => [int](../types/int.md), 'chat\_big\_size' => [int](../types/int.md), 'push\_chat\_period\_ms' => [int](../types/int.md), 'push\_chat\_limit' => [int](../types/int.md), 'saved\_gifs\_limit' => [int](../types/int.md), 'edit\_time\_limit' => [int](../types/int.md), 'rating\_e\_decay' => [int](../types/int.md), 'stickers\_recent\_limit' => [int](../types/int.md), 'tmp\_sessions' => [int](../types/int.md), 'disabled\_features' => [[DisabledFeature](../types/DisabledFeature.md)], \]; -[$Contact](../types/Contact.md)\['[contact](contact.md)'\] = \['user\_id' => [int](../types/int.md), 'mutual' => [Bool](../types/Bool.md), \] +[$Contact](../types/Contact.md) = \['user\_id' => [int](../types/int.md), 'mutual' => [Bool](../types/Bool.md), \]; -[$ContactBlocked](../types/ContactBlocked.md)\['[contactBlocked](contactBlocked.md)'\] = \['user\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \] +[$ContactBlocked](../types/ContactBlocked.md) = \['user\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \]; -[$ContactLink](../types/ContactLink.md)\['[contactLinkContact](contactLinkContact.md)'\] = +[$ContactLink](../types/ContactLink.md) = \[\]; -[$ContactLink](../types/ContactLink.md)\['[contactLinkHasPhone](contactLinkHasPhone.md)'\] = +[$ContactLink](../types/ContactLink.md) = \[\]; -[$ContactLink](../types/ContactLink.md)\['[contactLinkNone](contactLinkNone.md)'\] = +[$ContactLink](../types/ContactLink.md) = \[\]; -[$ContactLink](../types/ContactLink.md)\['[contactLinkUnknown](contactLinkUnknown.md)'\] = +[$ContactLink](../types/ContactLink.md) = \[\]; -[$ContactStatus](../types/ContactStatus.md)\['[contactStatus](contactStatus.md)'\] = \['user\_id' => [int](../types/int.md), 'status' => [UserStatus](../types/UserStatus.md), \] +[$ContactStatus](../types/ContactStatus.md) = \['user\_id' => [int](../types/int.md), 'status' => [UserStatus](../types/UserStatus.md), \]; -[$contacts\_Blocked](../types/contacts\_Blocked.md)\['[contacts\_blocked](contacts\_blocked.md)'\] = \['blocked' => [[ContactBlocked](../types/ContactBlocked.md)], 'users' => [[User](../types/User.md)], \] +[$contacts\_Blocked](../types/contacts\_Blocked.md) = \['blocked' => [[ContactBlocked](../types/ContactBlocked.md)], 'users' => [[User](../types/User.md)], \]; -[$contacts\_Blocked](../types/contacts\_Blocked.md)\['[contacts\_blockedSlice](contacts\_blockedSlice.md)'\] = \['count' => [int](../types/int.md), 'blocked' => [[ContactBlocked](../types/ContactBlocked.md)], 'users' => [[User](../types/User.md)], \] +[$contacts\_Blocked](../types/contacts\_Blocked.md) = \['count' => [int](../types/int.md), 'blocked' => [[ContactBlocked](../types/ContactBlocked.md)], 'users' => [[User](../types/User.md)], \]; -[$contacts\_Contacts](../types/contacts\_Contacts.md)\['[contacts\_contacts](contacts\_contacts.md)'\] = \['contacts' => [[Contact](../types/Contact.md)], 'users' => [[User](../types/User.md)], \] +[$contacts\_Contacts](../types/contacts\_Contacts.md) = \['contacts' => [[Contact](../types/Contact.md)], 'users' => [[User](../types/User.md)], \]; -[$contacts\_Contacts](../types/contacts\_Contacts.md)\['[contacts\_contactsNotModified](contacts\_contactsNotModified.md)'\] = +[$contacts\_Contacts](../types/contacts\_Contacts.md) = \[\]; -[$contacts\_Found](../types/contacts\_Found.md)\['[contacts\_found](contacts\_found.md)'\] = \['results' => [[Peer](../types/Peer.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \] +[$contacts\_Found](../types/contacts\_Found.md) = \['results' => [[Peer](../types/Peer.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \]; -[$contacts\_ImportedContacts](../types/contacts\_ImportedContacts.md)\['[contacts\_importedContacts](contacts\_importedContacts.md)'\] = \['imported' => [[ImportedContact](../types/ImportedContact.md)], 'retry\_contacts' => [[long](../types/long.md)], 'users' => [[User](../types/User.md)], \] +[$contacts\_ImportedContacts](../types/contacts\_ImportedContacts.md) = \['imported' => [[ImportedContact](../types/ImportedContact.md)], 'retry\_contacts' => [[long](../types/long.md)], 'users' => [[User](../types/User.md)], \]; -[$contacts\_Link](../types/contacts\_Link.md)\['[contacts\_link](contacts\_link.md)'\] = \['my\_link' => [ContactLink](../types/ContactLink.md), 'foreign\_link' => [ContactLink](../types/ContactLink.md), 'user' => [User](../types/User.md), \] +[$contacts\_Link](../types/contacts\_Link.md) = \['my\_link' => [ContactLink](../types/ContactLink.md), 'foreign\_link' => [ContactLink](../types/ContactLink.md), 'user' => [User](../types/User.md), \]; -[$contacts\_ResolvedPeer](../types/contacts\_ResolvedPeer.md)\['[contacts\_resolvedPeer](contacts\_resolvedPeer.md)'\] = \['peer' => [Peer](../types/Peer.md), 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \] +[$contacts\_ResolvedPeer](../types/contacts\_ResolvedPeer.md) = \['peer' => [Peer](../types/Peer.md), 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \]; -[$contacts\_TopPeers](../types/contacts\_TopPeers.md)\['[contacts\_topPeers](contacts\_topPeers.md)'\] = \['categories' => [[TopPeerCategoryPeers](../types/TopPeerCategoryPeers.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \] +[$contacts\_TopPeers](../types/contacts\_TopPeers.md) = \['categories' => [[TopPeerCategoryPeers](../types/TopPeerCategoryPeers.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \]; -[$contacts\_TopPeers](../types/contacts\_TopPeers.md)\['[contacts\_topPeersNotModified](contacts\_topPeersNotModified.md)'\] = +[$contacts\_TopPeers](../types/contacts\_TopPeers.md) = \[\]; -[$DcOption](../types/DcOption.md)\['[dcOption](dcOption.md)'\] = \['ipv6' => [Bool](../types/Bool.md), 'media\_only' => [Bool](../types/Bool.md), 'tcpo\_only' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'ip\_address' => [string](../types/string.md), 'port' => [int](../types/int.md), \] +[$DcOption](../types/DcOption.md) = \['ipv6' => [Bool](../types/Bool.md), 'media\_only' => [Bool](../types/Bool.md), 'tcpo\_only' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'ip\_address' => [string](../types/string.md), 'port' => [int](../types/int.md), \]; -[$Dialog](../types/Dialog.md)\['[dialog](dialog.md)'\] = \['peer' => [Peer](../types/Peer.md), 'top\_message' => [int](../types/int.md), 'read\_inbox\_max\_id' => [int](../types/int.md), 'read\_outbox\_max\_id' => [int](../types/int.md), 'unread\_count' => [int](../types/int.md), 'notify\_settings' => [PeerNotifySettings](../types/PeerNotifySettings.md), 'pts' => [int](../types/int.md), 'draft' => [DraftMessage](../types/DraftMessage.md), \] +[$Dialog](../types/Dialog.md) = \['peer' => [Peer](../types/Peer.md), 'top\_message' => [int](../types/int.md), 'read\_inbox\_max\_id' => [int](../types/int.md), 'read\_outbox\_max\_id' => [int](../types/int.md), 'unread\_count' => [int](../types/int.md), 'notify\_settings' => [PeerNotifySettings](../types/PeerNotifySettings.md), 'pts' => [int](../types/int.md), 'draft' => [DraftMessage](../types/DraftMessage.md), \]; -[$DisabledFeature](../types/DisabledFeature.md)\['[disabledFeature](disabledFeature.md)'\] = \['feature' => [string](../types/string.md), 'description' => [string](../types/string.md), \] +[$DisabledFeature](../types/DisabledFeature.md) = \['feature' => [string](../types/string.md), 'description' => [string](../types/string.md), \]; -[$Document](../types/Document.md)\['[document](document.md)'\] = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), 'date' => [int](../types/int.md), 'mime\_type' => [string](../types/string.md), 'size' => [int](../types/int.md), 'thumb' => [PhotoSize](../types/PhotoSize.md), 'dc\_id' => [int](../types/int.md), 'version' => [int](../types/int.md), 'attributes' => [[DocumentAttribute](../types/DocumentAttribute.md)], \] +[$Document](../types/Document.md) = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), 'date' => [int](../types/int.md), 'mime\_type' => [string](../types/string.md), 'size' => [int](../types/int.md), 'thumb' => [PhotoSize](../types/PhotoSize.md), 'dc\_id' => [int](../types/int.md), 'version' => [int](../types/int.md), 'attributes' => [[DocumentAttribute](../types/DocumentAttribute.md)], \]; -[$DocumentAttribute](../types/DocumentAttribute.md)\['[documentAttributeAnimated](documentAttributeAnimated.md)'\] = +[$DocumentAttribute](../types/DocumentAttribute.md) = \[\]; -[$DocumentAttribute](../types/DocumentAttribute.md)\['[documentAttributeAudio](documentAttributeAudio.md)'\] = \['voice' => [Bool](../types/Bool.md), 'duration' => [int](../types/int.md), 'title' => [string](../types/string.md), 'performer' => [string](../types/string.md), 'waveform' => [bytes](../types/bytes.md), \] +[$DocumentAttribute](../types/DocumentAttribute.md) = \['voice' => [Bool](../types/Bool.md), 'duration' => [int](../types/int.md), 'title' => [string](../types/string.md), 'performer' => [string](../types/string.md), 'waveform' => [bytes](../types/bytes.md), \]; -[$DocumentAttribute](../types/DocumentAttribute.md)\['[documentAttributeFilename](documentAttributeFilename.md)'\] = \['file\_name' => [string](../types/string.md), \] +[$DocumentAttribute](../types/DocumentAttribute.md) = \['file\_name' => [string](../types/string.md), \]; -[$DocumentAttribute](../types/DocumentAttribute.md)\['[documentAttributeHasStickers](documentAttributeHasStickers.md)'\] = +[$DocumentAttribute](../types/DocumentAttribute.md) = \[\]; -[$DocumentAttribute](../types/DocumentAttribute.md)\['[documentAttributeImageSize](documentAttributeImageSize.md)'\] = \['w' => [int](../types/int.md), 'h' => [int](../types/int.md), \] +[$DocumentAttribute](../types/DocumentAttribute.md) = \['w' => [int](../types/int.md), 'h' => [int](../types/int.md), \]; -[$DocumentAttribute](../types/DocumentAttribute.md)\['[documentAttributeSticker](documentAttributeSticker.md)'\] = \['mask' => [Bool](../types/Bool.md), 'alt' => [string](../types/string.md), 'stickerset' => [InputStickerSet](../types/InputStickerSet.md), 'mask\_coords' => [MaskCoords](../types/MaskCoords.md), \] +[$DocumentAttribute](../types/DocumentAttribute.md) = \['mask' => [Bool](../types/Bool.md), 'alt' => [string](../types/string.md), 'stickerset' => [InputStickerSet](../types/InputStickerSet.md), 'mask\_coords' => [MaskCoords](../types/MaskCoords.md), \]; -[$DocumentAttribute](../types/DocumentAttribute.md)\['[documentAttributeVideo](documentAttributeVideo.md)'\] = \['duration' => [int](../types/int.md), 'w' => [int](../types/int.md), 'h' => [int](../types/int.md), \] +[$DocumentAttribute](../types/DocumentAttribute.md) = \['duration' => [int](../types/int.md), 'w' => [int](../types/int.md), 'h' => [int](../types/int.md), \]; -[$Document](../types/Document.md)\['[documentEmpty](documentEmpty.md)'\] = \['id' => [long](../types/long.md), \] +[$Document](../types/Document.md) = \['id' => [long](../types/long.md), \]; -[$DraftMessage](../types/DraftMessage.md)\['[draftMessage](draftMessage.md)'\] = \['no\_webpage' => [Bool](../types/Bool.md), 'reply\_to\_msg\_id' => [int](../types/int.md), 'message' => [string](../types/string.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], 'date' => [int](../types/int.md), \] +[$DraftMessage](../types/DraftMessage.md) = \['no\_webpage' => [Bool](../types/Bool.md), 'reply\_to\_msg\_id' => [int](../types/int.md), 'message' => [string](../types/string.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], 'date' => [int](../types/int.md), \]; -[$DraftMessage](../types/DraftMessage.md)\['[draftMessageEmpty](draftMessageEmpty.md)'\] = +[$DraftMessage](../types/DraftMessage.md) = \[\]; -[$EncryptedChat](../types/EncryptedChat.md)\['[encryptedChat](encryptedChat.md)'\] = \['id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), 'date' => [int](../types/int.md), 'admin\_id' => [int](../types/int.md), 'participant\_id' => [int](../types/int.md), 'g\_a\_or\_b' => [bytes](../types/bytes.md), 'key\_fingerprint' => [long](../types/long.md), \] +[$EncryptedChat](../types/EncryptedChat.md) = \['id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), 'date' => [int](../types/int.md), 'admin\_id' => [int](../types/int.md), 'participant\_id' => [int](../types/int.md), 'g\_a\_or\_b' => [bytes](../types/bytes.md), 'key\_fingerprint' => [long](../types/long.md), \]; -[$EncryptedChat](../types/EncryptedChat.md)\['[encryptedChatDiscarded](encryptedChatDiscarded.md)'\] = \['id' => [int](../types/int.md), \] +[$EncryptedChat](../types/EncryptedChat.md) = \['id' => [int](../types/int.md), \]; -[$EncryptedChat](../types/EncryptedChat.md)\['[encryptedChatEmpty](encryptedChatEmpty.md)'\] = \['id' => [int](../types/int.md), \] +[$EncryptedChat](../types/EncryptedChat.md) = \['id' => [int](../types/int.md), \]; -[$EncryptedChat](../types/EncryptedChat.md)\['[encryptedChatRequested](encryptedChatRequested.md)'\] = \['id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), 'date' => [int](../types/int.md), 'admin\_id' => [int](../types/int.md), 'participant\_id' => [int](../types/int.md), 'g\_a' => [bytes](../types/bytes.md), \] +[$EncryptedChat](../types/EncryptedChat.md) = \['id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), 'date' => [int](../types/int.md), 'admin\_id' => [int](../types/int.md), 'participant\_id' => [int](../types/int.md), 'g\_a' => [bytes](../types/bytes.md), \]; -[$EncryptedChat](../types/EncryptedChat.md)\['[encryptedChatWaiting](encryptedChatWaiting.md)'\] = \['id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), 'date' => [int](../types/int.md), 'admin\_id' => [int](../types/int.md), 'participant\_id' => [int](../types/int.md), \] +[$EncryptedChat](../types/EncryptedChat.md) = \['id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), 'date' => [int](../types/int.md), 'admin\_id' => [int](../types/int.md), 'participant\_id' => [int](../types/int.md), \]; -[$EncryptedFile](../types/EncryptedFile.md)\['[encryptedFile](encryptedFile.md)'\] = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), 'size' => [int](../types/int.md), 'dc\_id' => [int](../types/int.md), 'key\_fingerprint' => [int](../types/int.md), \] +[$EncryptedFile](../types/EncryptedFile.md) = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), 'size' => [int](../types/int.md), 'dc\_id' => [int](../types/int.md), 'key\_fingerprint' => [int](../types/int.md), \]; -[$EncryptedFile](../types/EncryptedFile.md)\['[encryptedFileEmpty](encryptedFileEmpty.md)'\] = +[$EncryptedFile](../types/EncryptedFile.md) = \[\]; -[$EncryptedMessage](../types/EncryptedMessage.md)\['[encryptedMessage](encryptedMessage.md)'\] = \['random\_id' => [long](../types/long.md), 'chat\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'bytes' => [bytes](../types/bytes.md), 'file' => [EncryptedFile](../types/EncryptedFile.md), \] +[$EncryptedMessage](../types/EncryptedMessage.md) = \['random\_id' => [long](../types/long.md), 'chat\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'bytes' => [bytes](../types/bytes.md), 'file' => [EncryptedFile](../types/EncryptedFile.md), \]; -[$EncryptedMessage](../types/EncryptedMessage.md)\['[encryptedMessageService](encryptedMessageService.md)'\] = \['random\_id' => [long](../types/long.md), 'chat\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'bytes' => [bytes](../types/bytes.md), \] +[$EncryptedMessage](../types/EncryptedMessage.md) = \['random\_id' => [long](../types/long.md), 'chat\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'bytes' => [bytes](../types/bytes.md), \]; -[$Error](../types/Error.md)\['[error](error.md)'\] = \['code' => [int](../types/int.md), 'text' => [string](../types/string.md), \] +[$Error](../types/Error.md) = \['code' => [int](../types/int.md), 'text' => [string](../types/string.md), \]; -[$ExportedMessageLink](../types/ExportedMessageLink.md)\['[exportedMessageLink](exportedMessageLink.md)'\] = \['link' => [string](../types/string.md), \] +[$ExportedMessageLink](../types/ExportedMessageLink.md) = \['link' => [string](../types/string.md), \]; -[$FileLocation](../types/FileLocation.md)\['[fileLocation](fileLocation.md)'\] = \['dc\_id' => [int](../types/int.md), 'volume\_id' => [long](../types/long.md), 'local\_id' => [int](../types/int.md), 'secret' => [long](../types/long.md), \] +[$FileLocation](../types/FileLocation.md) = \['dc\_id' => [int](../types/int.md), 'volume\_id' => [long](../types/long.md), 'local\_id' => [int](../types/int.md), 'secret' => [long](../types/long.md), \]; -[$FileLocation](../types/FileLocation.md)\['[fileLocationUnavailable](fileLocationUnavailable.md)'\] = \['volume\_id' => [long](../types/long.md), 'local\_id' => [int](../types/int.md), 'secret' => [long](../types/long.md), \] +[$FileLocation](../types/FileLocation.md) = \['volume\_id' => [long](../types/long.md), 'local\_id' => [int](../types/int.md), 'secret' => [long](../types/long.md), \]; -[$FoundGif](../types/FoundGif.md)\['[foundGif](foundGif.md)'\] = \['url' => [string](../types/string.md), 'thumb\_url' => [string](../types/string.md), 'content\_url' => [string](../types/string.md), 'content\_type' => [string](../types/string.md), 'w' => [int](../types/int.md), 'h' => [int](../types/int.md), \] +[$FoundGif](../types/FoundGif.md) = \['url' => [string](../types/string.md), 'thumb\_url' => [string](../types/string.md), 'content\_url' => [string](../types/string.md), 'content\_type' => [string](../types/string.md), 'w' => [int](../types/int.md), 'h' => [int](../types/int.md), \]; -[$FoundGif](../types/FoundGif.md)\['[foundGifCached](foundGifCached.md)'\] = \['url' => [string](../types/string.md), 'photo' => [Photo](../types/Photo.md), 'document' => [Document](../types/Document.md), \] +[$FoundGif](../types/FoundGif.md) = \['url' => [string](../types/string.md), 'photo' => [Photo](../types/Photo.md), 'document' => [Document](../types/Document.md), \]; -[$Game](../types/Game.md)\['[game](game.md)'\] = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), 'short\_name' => [string](../types/string.md), 'title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'photo' => [Photo](../types/Photo.md), 'document' => [Document](../types/Document.md), \] +[$Game](../types/Game.md) = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), 'short\_name' => [string](../types/string.md), 'title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'photo' => [Photo](../types/Photo.md), 'document' => [Document](../types/Document.md), \]; -[$GeoPoint](../types/GeoPoint.md)\['[geoPoint](geoPoint.md)'\] = \['long' => [double](../types/double.md), 'lat' => [double](../types/double.md), \] +[$GeoPoint](../types/GeoPoint.md) = \['long' => [double](../types/double.md), 'lat' => [double](../types/double.md), \]; -[$GeoPoint](../types/GeoPoint.md)\['[geoPointEmpty](geoPointEmpty.md)'\] = +[$GeoPoint](../types/GeoPoint.md) = \[\]; -[$help\_AppChangelog](../types/help\_AppChangelog.md)\['[help\_appChangelog](help\_appChangelog.md)'\] = \['text' => [string](../types/string.md), \] +[$help\_AppChangelog](../types/help\_AppChangelog.md) = \['text' => [string](../types/string.md), \]; -[$help\_AppChangelog](../types/help\_AppChangelog.md)\['[help\_appChangelogEmpty](help\_appChangelogEmpty.md)'\] = +[$help\_AppChangelog](../types/help\_AppChangelog.md) = \[\]; -[$help\_AppUpdate](../types/help\_AppUpdate.md)\['[help\_appUpdate](help\_appUpdate.md)'\] = \['id' => [int](../types/int.md), 'critical' => [Bool](../types/Bool.md), 'url' => [string](../types/string.md), 'text' => [string](../types/string.md), \] +[$help\_AppUpdate](../types/help\_AppUpdate.md) = \['id' => [int](../types/int.md), 'critical' => [Bool](../types/Bool.md), 'url' => [string](../types/string.md), 'text' => [string](../types/string.md), \]; -[$help\_InviteText](../types/help\_InviteText.md)\['[help\_inviteText](help\_inviteText.md)'\] = \['message' => [string](../types/string.md), \] +[$help\_InviteText](../types/help\_InviteText.md) = \['message' => [string](../types/string.md), \]; -[$help\_AppUpdate](../types/help\_AppUpdate.md)\['[help\_noAppUpdate](help\_noAppUpdate.md)'\] = +[$help\_AppUpdate](../types/help\_AppUpdate.md) = \[\]; -[$help\_Support](../types/help\_Support.md)\['[help\_support](help\_support.md)'\] = \['phone\_number' => [string](../types/string.md), 'user' => [User](../types/User.md), \] +[$help\_Support](../types/help\_Support.md) = \['phone\_number' => [string](../types/string.md), 'user' => [User](../types/User.md), \]; -[$help\_TermsOfService](../types/help\_TermsOfService.md)\['[help\_termsOfService](help\_termsOfService.md)'\] = \['text' => [string](../types/string.md), \] +[$help\_TermsOfService](../types/help\_TermsOfService.md) = \['text' => [string](../types/string.md), \]; -[$HighScore](../types/HighScore.md)\['[highScore](highScore.md)'\] = \['pos' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), 'score' => [int](../types/int.md), \] +[$HighScore](../types/HighScore.md) = \['pos' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), 'score' => [int](../types/int.md), \]; -[$ImportedContact](../types/ImportedContact.md)\['[importedContact](importedContact.md)'\] = \['user\_id' => [int](../types/int.md), 'client\_id' => [long](../types/long.md), \] +[$ImportedContact](../types/ImportedContact.md) = \['user\_id' => [int](../types/int.md), 'client\_id' => [long](../types/long.md), \]; -[$InlineBotSwitchPM](../types/InlineBotSwitchPM.md)\['[inlineBotSwitchPM](inlineBotSwitchPM.md)'\] = \['text' => [string](../types/string.md), 'start\_param' => [string](../types/string.md), \] +[$InlineBotSwitchPM](../types/InlineBotSwitchPM.md) = \['text' => [string](../types/string.md), 'start\_param' => [string](../types/string.md), \]; -[$InputAppEvent](../types/InputAppEvent.md)\['[inputAppEvent](inputAppEvent.md)'\] = \['time' => [double](../types/double.md), 'type' => [string](../types/string.md), 'peer' => [long](../types/long.md), 'data' => [string](../types/string.md), \] +[$InputAppEvent](../types/InputAppEvent.md) = \['time' => [double](../types/double.md), 'type' => [string](../types/string.md), 'peer' => [long](../types/long.md), 'data' => [string](../types/string.md), \]; -[$InputBotInlineMessage](../types/InputBotInlineMessage.md)\['[inputBotInlineMessageGame](inputBotInlineMessageGame.md)'\] = \['reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \] +[$InputBotInlineMessage](../types/InputBotInlineMessage.md) = \['reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \]; -[$InputBotInlineMessageID](../types/InputBotInlineMessageID.md)\['[inputBotInlineMessageID](inputBotInlineMessageID.md)'\] = \['dc\_id' => [int](../types/int.md), 'id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \] +[$InputBotInlineMessageID](../types/InputBotInlineMessageID.md) = \['dc\_id' => [int](../types/int.md), 'id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \]; -[$InputBotInlineMessage](../types/InputBotInlineMessage.md)\['[inputBotInlineMessageMediaAuto](inputBotInlineMessageMediaAuto.md)'\] = \['caption' => [string](../types/string.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \] +[$InputBotInlineMessage](../types/InputBotInlineMessage.md) = \['caption' => [string](../types/string.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \]; -[$InputBotInlineMessage](../types/InputBotInlineMessage.md)\['[inputBotInlineMessageMediaContact](inputBotInlineMessageMediaContact.md)'\] = \['phone\_number' => [string](../types/string.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \] +[$InputBotInlineMessage](../types/InputBotInlineMessage.md) = \['phone\_number' => [string](../types/string.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \]; -[$InputBotInlineMessage](../types/InputBotInlineMessage.md)\['[inputBotInlineMessageMediaGeo](inputBotInlineMessageMediaGeo.md)'\] = \['geo\_point' => [InputGeoPoint](../types/InputGeoPoint.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \] +[$InputBotInlineMessage](../types/InputBotInlineMessage.md) = \['geo\_point' => [InputGeoPoint](../types/InputGeoPoint.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \]; -[$InputBotInlineMessage](../types/InputBotInlineMessage.md)\['[inputBotInlineMessageMediaVenue](inputBotInlineMessageMediaVenue.md)'\] = \['geo\_point' => [InputGeoPoint](../types/InputGeoPoint.md), 'title' => [string](../types/string.md), 'address' => [string](../types/string.md), 'provider' => [string](../types/string.md), 'venue\_id' => [string](../types/string.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \] +[$InputBotInlineMessage](../types/InputBotInlineMessage.md) = \['geo\_point' => [InputGeoPoint](../types/InputGeoPoint.md), 'title' => [string](../types/string.md), 'address' => [string](../types/string.md), 'provider' => [string](../types/string.md), 'venue\_id' => [string](../types/string.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \]; -[$InputBotInlineMessage](../types/InputBotInlineMessage.md)\['[inputBotInlineMessageText](inputBotInlineMessageText.md)'\] = \['no\_webpage' => [Bool](../types/Bool.md), 'message' => [string](../types/string.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \] +[$InputBotInlineMessage](../types/InputBotInlineMessage.md) = \['no\_webpage' => [Bool](../types/Bool.md), 'message' => [string](../types/string.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \]; -[$InputBotInlineResult](../types/InputBotInlineResult.md)\['[inputBotInlineResult](inputBotInlineResult.md)'\] = \['id' => [string](../types/string.md), 'type' => [string](../types/string.md), 'title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'url' => [string](../types/string.md), 'thumb\_url' => [string](../types/string.md), 'content\_url' => [string](../types/string.md), 'content\_type' => [string](../types/string.md), 'w' => [int](../types/int.md), 'h' => [int](../types/int.md), 'duration' => [int](../types/int.md), 'send\_message' => [InputBotInlineMessage](../types/InputBotInlineMessage.md), \] +[$InputBotInlineResult](../types/InputBotInlineResult.md) = \['id' => [string](../types/string.md), 'type' => [string](../types/string.md), 'title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'url' => [string](../types/string.md), 'thumb\_url' => [string](../types/string.md), 'content\_url' => [string](../types/string.md), 'content\_type' => [string](../types/string.md), 'w' => [int](../types/int.md), 'h' => [int](../types/int.md), 'duration' => [int](../types/int.md), 'send\_message' => [InputBotInlineMessage](../types/InputBotInlineMessage.md), \]; -[$InputBotInlineResult](../types/InputBotInlineResult.md)\['[inputBotInlineResultDocument](inputBotInlineResultDocument.md)'\] = \['id' => [string](../types/string.md), 'type' => [string](../types/string.md), 'title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'document' => [InputDocument](../types/InputDocument.md), 'send\_message' => [InputBotInlineMessage](../types/InputBotInlineMessage.md), \] +[$InputBotInlineResult](../types/InputBotInlineResult.md) = \['id' => [string](../types/string.md), 'type' => [string](../types/string.md), 'title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'document' => [InputDocument](../types/InputDocument.md), 'send\_message' => [InputBotInlineMessage](../types/InputBotInlineMessage.md), \]; -[$InputBotInlineResult](../types/InputBotInlineResult.md)\['[inputBotInlineResultGame](inputBotInlineResultGame.md)'\] = \['id' => [string](../types/string.md), 'short\_name' => [string](../types/string.md), 'send\_message' => [InputBotInlineMessage](../types/InputBotInlineMessage.md), \] +[$InputBotInlineResult](../types/InputBotInlineResult.md) = \['id' => [string](../types/string.md), 'short\_name' => [string](../types/string.md), 'send\_message' => [InputBotInlineMessage](../types/InputBotInlineMessage.md), \]; -[$InputBotInlineResult](../types/InputBotInlineResult.md)\['[inputBotInlineResultPhoto](inputBotInlineResultPhoto.md)'\] = \['id' => [string](../types/string.md), 'type' => [string](../types/string.md), 'photo' => [InputPhoto](../types/InputPhoto.md), 'send\_message' => [InputBotInlineMessage](../types/InputBotInlineMessage.md), \] +[$InputBotInlineResult](../types/InputBotInlineResult.md) = \['id' => [string](../types/string.md), 'type' => [string](../types/string.md), 'photo' => [InputPhoto](../types/InputPhoto.md), 'send\_message' => [InputBotInlineMessage](../types/InputBotInlineMessage.md), \]; -[$InputChannel](../types/InputChannel.md)\['[inputChannel](inputChannel.md)'\] = \['channel\_id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), \] +[$InputChannel](../types/InputChannel.md) = \['channel\_id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), \]; -[$InputChannel](../types/InputChannel.md)\['[inputChannelEmpty](inputChannelEmpty.md)'\] = +[$InputChannel](../types/InputChannel.md) = \[\]; -[$InputChatPhoto](../types/InputChatPhoto.md)\['[inputChatPhoto](inputChatPhoto.md)'\] = \['id' => [InputPhoto](../types/InputPhoto.md), \] +[$InputChatPhoto](../types/InputChatPhoto.md) = \['id' => [InputPhoto](../types/InputPhoto.md), \]; -[$InputChatPhoto](../types/InputChatPhoto.md)\['[inputChatPhotoEmpty](inputChatPhotoEmpty.md)'\] = +[$InputChatPhoto](../types/InputChatPhoto.md) = \[\]; -[$InputChatPhoto](../types/InputChatPhoto.md)\['[inputChatUploadedPhoto](inputChatUploadedPhoto.md)'\] = \['file' => [InputFile](../types/InputFile.md), \] +[$InputChatPhoto](../types/InputChatPhoto.md) = \['file' => [InputFile](../types/InputFile.md), \]; -[$InputDocument](../types/InputDocument.md)\['[inputDocument](inputDocument.md)'\] = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \] +[$InputDocument](../types/InputDocument.md) = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \]; -[$InputDocument](../types/InputDocument.md)\['[inputDocumentEmpty](inputDocumentEmpty.md)'\] = +[$InputDocument](../types/InputDocument.md) = \[\]; -[$InputFileLocation](../types/InputFileLocation.md)\['[inputDocumentFileLocation](inputDocumentFileLocation.md)'\] = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), 'version' => [int](../types/int.md), \] +[$InputFileLocation](../types/InputFileLocation.md) = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), 'version' => [int](../types/int.md), \]; -[$InputEncryptedChat](../types/InputEncryptedChat.md)\['[inputEncryptedChat](inputEncryptedChat.md)'\] = \['chat\_id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), \] +[$InputEncryptedChat](../types/InputEncryptedChat.md) = \['chat\_id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), \]; -[$InputEncryptedFile](../types/InputEncryptedFile.md)\['[inputEncryptedFile](inputEncryptedFile.md)'\] = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \] +[$InputEncryptedFile](../types/InputEncryptedFile.md) = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \]; -[$InputEncryptedFile](../types/InputEncryptedFile.md)\['[inputEncryptedFileBigUploaded](inputEncryptedFileBigUploaded.md)'\] = \['id' => [long](../types/long.md), 'parts' => [int](../types/int.md), 'key\_fingerprint' => [int](../types/int.md), \] +[$InputEncryptedFile](../types/InputEncryptedFile.md) = \['id' => [long](../types/long.md), 'parts' => [int](../types/int.md), 'key\_fingerprint' => [int](../types/int.md), \]; -[$InputEncryptedFile](../types/InputEncryptedFile.md)\['[inputEncryptedFileEmpty](inputEncryptedFileEmpty.md)'\] = +[$InputEncryptedFile](../types/InputEncryptedFile.md) = \[\]; -[$InputFileLocation](../types/InputFileLocation.md)\['[inputEncryptedFileLocation](inputEncryptedFileLocation.md)'\] = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \] +[$InputFileLocation](../types/InputFileLocation.md) = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \]; -[$InputEncryptedFile](../types/InputEncryptedFile.md)\['[inputEncryptedFileUploaded](inputEncryptedFileUploaded.md)'\] = \['id' => [long](../types/long.md), 'parts' => [int](../types/int.md), 'md5\_checksum' => [string](../types/string.md), 'key\_fingerprint' => [int](../types/int.md), \] +[$InputEncryptedFile](../types/InputEncryptedFile.md) = \['id' => [long](../types/long.md), 'parts' => [int](../types/int.md), 'md5\_checksum' => [string](../types/string.md), 'key\_fingerprint' => [int](../types/int.md), \]; -[$InputFile](../types/InputFile.md)\['[inputFile](inputFile.md)'\] = \['id' => [long](../types/long.md), 'parts' => [int](../types/int.md), 'name' => [string](../types/string.md), 'md5\_checksum' => [string](../types/string.md), \] +[$InputFile](../types/InputFile.md) = \['id' => [long](../types/long.md), 'parts' => [int](../types/int.md), 'name' => [string](../types/string.md), 'md5\_checksum' => [string](../types/string.md), \]; -[$InputFile](../types/InputFile.md)\['[inputFileBig](inputFileBig.md)'\] = \['id' => [long](../types/long.md), 'parts' => [int](../types/int.md), 'name' => [string](../types/string.md), \] +[$InputFile](../types/InputFile.md) = \['id' => [long](../types/long.md), 'parts' => [int](../types/int.md), 'name' => [string](../types/string.md), \]; -[$InputFileLocation](../types/InputFileLocation.md)\['[inputFileLocation](inputFileLocation.md)'\] = \['volume\_id' => [long](../types/long.md), 'local\_id' => [int](../types/int.md), 'secret' => [long](../types/long.md), \] +[$InputFileLocation](../types/InputFileLocation.md) = \['volume\_id' => [long](../types/long.md), 'local\_id' => [int](../types/int.md), 'secret' => [long](../types/long.md), \]; -[$InputGame](../types/InputGame.md)\['[inputGameID](inputGameID.md)'\] = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \] +[$InputGame](../types/InputGame.md) = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \]; -[$InputGame](../types/InputGame.md)\['[inputGameShortName](inputGameShortName.md)'\] = \['bot\_id' => [InputUser](../types/InputUser.md), 'short\_name' => [string](../types/string.md), \] +[$InputGame](../types/InputGame.md) = \['bot\_id' => [InputUser](../types/InputUser.md), 'short\_name' => [string](../types/string.md), \]; -[$InputGeoPoint](../types/InputGeoPoint.md)\['[inputGeoPoint](inputGeoPoint.md)'\] = \['lat' => [double](../types/double.md), 'long' => [double](../types/double.md), \] +[$InputGeoPoint](../types/InputGeoPoint.md) = \['lat' => [double](../types/double.md), 'long' => [double](../types/double.md), \]; -[$InputGeoPoint](../types/InputGeoPoint.md)\['[inputGeoPointEmpty](inputGeoPointEmpty.md)'\] = +[$InputGeoPoint](../types/InputGeoPoint.md) = \[\]; -[$InputMedia](../types/InputMedia.md)\['[inputMediaContact](inputMediaContact.md)'\] = \['phone\_number' => [string](../types/string.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), \] +[$InputMedia](../types/InputMedia.md) = \['phone\_number' => [string](../types/string.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), \]; -[$InputMedia](../types/InputMedia.md)\['[inputMediaDocument](inputMediaDocument.md)'\] = \['id' => [InputDocument](../types/InputDocument.md), 'caption' => [string](../types/string.md), \] +[$InputMedia](../types/InputMedia.md) = \['id' => [InputDocument](../types/InputDocument.md), 'caption' => [string](../types/string.md), \]; -[$InputMedia](../types/InputMedia.md)\['[inputMediaDocumentExternal](inputMediaDocumentExternal.md)'\] = \['url' => [string](../types/string.md), 'caption' => [string](../types/string.md), \] +[$InputMedia](../types/InputMedia.md) = \['url' => [string](../types/string.md), 'caption' => [string](../types/string.md), \]; -[$InputMedia](../types/InputMedia.md)\['[inputMediaEmpty](inputMediaEmpty.md)'\] = +[$InputMedia](../types/InputMedia.md) = \[\]; -[$InputMedia](../types/InputMedia.md)\['[inputMediaGame](inputMediaGame.md)'\] = \['id' => [InputGame](../types/InputGame.md), \] +[$InputMedia](../types/InputMedia.md) = \['id' => [InputGame](../types/InputGame.md), \]; -[$InputMedia](../types/InputMedia.md)\['[inputMediaGeoPoint](inputMediaGeoPoint.md)'\] = \['geo\_point' => [InputGeoPoint](../types/InputGeoPoint.md), \] +[$InputMedia](../types/InputMedia.md) = \['geo\_point' => [InputGeoPoint](../types/InputGeoPoint.md), \]; -[$InputMedia](../types/InputMedia.md)\['[inputMediaGifExternal](inputMediaGifExternal.md)'\] = \['url' => [string](../types/string.md), 'q' => [string](../types/string.md), \] +[$InputMedia](../types/InputMedia.md) = \['url' => [string](../types/string.md), 'q' => [string](../types/string.md), \]; -[$InputMedia](../types/InputMedia.md)\['[inputMediaPhoto](inputMediaPhoto.md)'\] = \['id' => [InputPhoto](../types/InputPhoto.md), 'caption' => [string](../types/string.md), \] +[$InputMedia](../types/InputMedia.md) = \['id' => [InputPhoto](../types/InputPhoto.md), 'caption' => [string](../types/string.md), \]; -[$InputMedia](../types/InputMedia.md)\['[inputMediaPhotoExternal](inputMediaPhotoExternal.md)'\] = \['url' => [string](../types/string.md), 'caption' => [string](../types/string.md), \] +[$InputMedia](../types/InputMedia.md) = \['url' => [string](../types/string.md), 'caption' => [string](../types/string.md), \]; -[$InputMedia](../types/InputMedia.md)\['[inputMediaUploadedDocument](inputMediaUploadedDocument.md)'\] = \['file' => [InputFile](../types/InputFile.md), 'mime\_type' => [string](../types/string.md), 'attributes' => [[DocumentAttribute](../types/DocumentAttribute.md)], 'caption' => [string](../types/string.md), 'stickers' => [[InputDocument](../types/InputDocument.md)], \] +[$InputMedia](../types/InputMedia.md) = \['file' => [InputFile](../types/InputFile.md), 'mime\_type' => [string](../types/string.md), 'attributes' => [[DocumentAttribute](../types/DocumentAttribute.md)], 'caption' => [string](../types/string.md), 'stickers' => [[InputDocument](../types/InputDocument.md)], \]; -[$InputMedia](../types/InputMedia.md)\['[inputMediaUploadedPhoto](inputMediaUploadedPhoto.md)'\] = \['file' => [InputFile](../types/InputFile.md), 'caption' => [string](../types/string.md), 'stickers' => [[InputDocument](../types/InputDocument.md)], \] +[$InputMedia](../types/InputMedia.md) = \['file' => [InputFile](../types/InputFile.md), 'caption' => [string](../types/string.md), 'stickers' => [[InputDocument](../types/InputDocument.md)], \]; -[$InputMedia](../types/InputMedia.md)\['[inputMediaUploadedThumbDocument](inputMediaUploadedThumbDocument.md)'\] = \['file' => [InputFile](../types/InputFile.md), 'thumb' => [InputFile](../types/InputFile.md), 'mime\_type' => [string](../types/string.md), 'attributes' => [[DocumentAttribute](../types/DocumentAttribute.md)], 'caption' => [string](../types/string.md), 'stickers' => [[InputDocument](../types/InputDocument.md)], \] +[$InputMedia](../types/InputMedia.md) = \['file' => [InputFile](../types/InputFile.md), 'thumb' => [InputFile](../types/InputFile.md), 'mime\_type' => [string](../types/string.md), 'attributes' => [[DocumentAttribute](../types/DocumentAttribute.md)], 'caption' => [string](../types/string.md), 'stickers' => [[InputDocument](../types/InputDocument.md)], \]; -[$InputMedia](../types/InputMedia.md)\['[inputMediaVenue](inputMediaVenue.md)'\] = \['geo\_point' => [InputGeoPoint](../types/InputGeoPoint.md), 'title' => [string](../types/string.md), 'address' => [string](../types/string.md), 'provider' => [string](../types/string.md), 'venue\_id' => [string](../types/string.md), \] +[$InputMedia](../types/InputMedia.md) = \['geo\_point' => [InputGeoPoint](../types/InputGeoPoint.md), 'title' => [string](../types/string.md), 'address' => [string](../types/string.md), 'provider' => [string](../types/string.md), 'venue\_id' => [string](../types/string.md), \]; -[$MessageEntity](../types/MessageEntity.md)\['[inputMessageEntityMentionName](inputMessageEntityMentionName.md)'\] = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), 'user\_id' => [InputUser](../types/InputUser.md), \] +[$MessageEntity](../types/MessageEntity.md) = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), 'user\_id' => [InputUser](../types/InputUser.md), \]; -[$MessagesFilter](../types/MessagesFilter.md)\['[inputMessagesFilterChatPhotos](inputMessagesFilterChatPhotos.md)'\] = +[$MessagesFilter](../types/MessagesFilter.md) = \[\]; -[$MessagesFilter](../types/MessagesFilter.md)\['[inputMessagesFilterDocument](inputMessagesFilterDocument.md)'\] = +[$MessagesFilter](../types/MessagesFilter.md) = \[\]; -[$MessagesFilter](../types/MessagesFilter.md)\['[inputMessagesFilterEmpty](inputMessagesFilterEmpty.md)'\] = +[$MessagesFilter](../types/MessagesFilter.md) = \[\]; -[$MessagesFilter](../types/MessagesFilter.md)\['[inputMessagesFilterGif](inputMessagesFilterGif.md)'\] = +[$MessagesFilter](../types/MessagesFilter.md) = \[\]; -[$MessagesFilter](../types/MessagesFilter.md)\['[inputMessagesFilterMusic](inputMessagesFilterMusic.md)'\] = +[$MessagesFilter](../types/MessagesFilter.md) = \[\]; -[$MessagesFilter](../types/MessagesFilter.md)\['[inputMessagesFilterPhotoVideo](inputMessagesFilterPhotoVideo.md)'\] = +[$MessagesFilter](../types/MessagesFilter.md) = \[\]; -[$MessagesFilter](../types/MessagesFilter.md)\['[inputMessagesFilterPhotoVideoDocuments](inputMessagesFilterPhotoVideoDocuments.md)'\] = +[$MessagesFilter](../types/MessagesFilter.md) = \[\]; -[$MessagesFilter](../types/MessagesFilter.md)\['[inputMessagesFilterPhotos](inputMessagesFilterPhotos.md)'\] = +[$MessagesFilter](../types/MessagesFilter.md) = \[\]; -[$MessagesFilter](../types/MessagesFilter.md)\['[inputMessagesFilterUrl](inputMessagesFilterUrl.md)'\] = +[$MessagesFilter](../types/MessagesFilter.md) = \[\]; -[$MessagesFilter](../types/MessagesFilter.md)\['[inputMessagesFilterVideo](inputMessagesFilterVideo.md)'\] = +[$MessagesFilter](../types/MessagesFilter.md) = \[\]; -[$MessagesFilter](../types/MessagesFilter.md)\['[inputMessagesFilterVoice](inputMessagesFilterVoice.md)'\] = +[$MessagesFilter](../types/MessagesFilter.md) = \[\]; -[$InputNotifyPeer](../types/InputNotifyPeer.md)\['[inputNotifyAll](inputNotifyAll.md)'\] = +[$InputNotifyPeer](../types/InputNotifyPeer.md) = \[\]; -[$InputNotifyPeer](../types/InputNotifyPeer.md)\['[inputNotifyChats](inputNotifyChats.md)'\] = +[$InputNotifyPeer](../types/InputNotifyPeer.md) = \[\]; -[$InputNotifyPeer](../types/InputNotifyPeer.md)\['[inputNotifyPeer](inputNotifyPeer.md)'\] = \['peer' => [InputPeer](../types/InputPeer.md), \] +[$InputNotifyPeer](../types/InputNotifyPeer.md) = \['peer' => [InputPeer](../types/InputPeer.md), \]; -[$InputNotifyPeer](../types/InputNotifyPeer.md)\['[inputNotifyUsers](inputNotifyUsers.md)'\] = +[$InputNotifyPeer](../types/InputNotifyPeer.md) = \[\]; -[$InputPeer](../types/InputPeer.md)\['[inputPeerChannel](inputPeerChannel.md)'\] = \['channel\_id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), \] +[$InputPeer](../types/InputPeer.md) = \['channel\_id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), \]; -[$InputPeer](../types/InputPeer.md)\['[inputPeerChat](inputPeerChat.md)'\] = \['chat\_id' => [int](../types/int.md), \] +[$InputPeer](../types/InputPeer.md) = \['chat\_id' => [int](../types/int.md), \]; -[$InputPeer](../types/InputPeer.md)\['[inputPeerEmpty](inputPeerEmpty.md)'\] = +[$InputPeer](../types/InputPeer.md) = \[\]; -[$InputPeerNotifyEvents](../types/InputPeerNotifyEvents.md)\['[inputPeerNotifyEventsAll](inputPeerNotifyEventsAll.md)'\] = +[$InputPeerNotifyEvents](../types/InputPeerNotifyEvents.md) = \[\]; -[$InputPeerNotifyEvents](../types/InputPeerNotifyEvents.md)\['[inputPeerNotifyEventsEmpty](inputPeerNotifyEventsEmpty.md)'\] = +[$InputPeerNotifyEvents](../types/InputPeerNotifyEvents.md) = \[\]; -[$InputPeerNotifySettings](../types/InputPeerNotifySettings.md)\['[inputPeerNotifySettings](inputPeerNotifySettings.md)'\] = \['show\_previews' => [Bool](../types/Bool.md), 'silent' => [Bool](../types/Bool.md), 'mute\_until' => [int](../types/int.md), 'sound' => [string](../types/string.md), \] +[$InputPeerNotifySettings](../types/InputPeerNotifySettings.md) = \['show\_previews' => [Bool](../types/Bool.md), 'silent' => [Bool](../types/Bool.md), 'mute\_until' => [int](../types/int.md), 'sound' => [string](../types/string.md), \]; -[$InputPeer](../types/InputPeer.md)\['[inputPeerSelf](inputPeerSelf.md)'\] = +[$InputPeer](../types/InputPeer.md) = \[\]; -[$InputPeer](../types/InputPeer.md)\['[inputPeerUser](inputPeerUser.md)'\] = \['user\_id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), \] +[$InputPeer](../types/InputPeer.md) = \['user\_id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), \]; -[$InputContact](../types/InputContact.md)\['[inputPhoneContact](inputPhoneContact.md)'\] = \['client\_id' => [long](../types/long.md), 'phone' => [string](../types/string.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), \] +[$InputContact](../types/InputContact.md) = \['client\_id' => [long](../types/long.md), 'phone' => [string](../types/string.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), \]; -[$InputPhoto](../types/InputPhoto.md)\['[inputPhoto](inputPhoto.md)'\] = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \] +[$InputPhoto](../types/InputPhoto.md) = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \]; -[$InputPhoto](../types/InputPhoto.md)\['[inputPhotoEmpty](inputPhotoEmpty.md)'\] = +[$InputPhoto](../types/InputPhoto.md) = \[\]; -[$InputPrivacyKey](../types/InputPrivacyKey.md)\['[inputPrivacyKeyChatInvite](inputPrivacyKeyChatInvite.md)'\] = +[$InputPrivacyKey](../types/InputPrivacyKey.md) = \[\]; -[$InputPrivacyKey](../types/InputPrivacyKey.md)\['[inputPrivacyKeyStatusTimestamp](inputPrivacyKeyStatusTimestamp.md)'\] = +[$InputPrivacyKey](../types/InputPrivacyKey.md) = \[\]; -[$InputPrivacyRule](../types/InputPrivacyRule.md)\['[inputPrivacyValueAllowAll](inputPrivacyValueAllowAll.md)'\] = +[$InputPrivacyRule](../types/InputPrivacyRule.md) = \[\]; -[$InputPrivacyRule](../types/InputPrivacyRule.md)\['[inputPrivacyValueAllowContacts](inputPrivacyValueAllowContacts.md)'\] = +[$InputPrivacyRule](../types/InputPrivacyRule.md) = \[\]; -[$InputPrivacyRule](../types/InputPrivacyRule.md)\['[inputPrivacyValueAllowUsers](inputPrivacyValueAllowUsers.md)'\] = \['users' => [[InputUser](../types/InputUser.md)], \] +[$InputPrivacyRule](../types/InputPrivacyRule.md) = \['users' => [[InputUser](../types/InputUser.md)], \]; -[$InputPrivacyRule](../types/InputPrivacyRule.md)\['[inputPrivacyValueDisallowAll](inputPrivacyValueDisallowAll.md)'\] = +[$InputPrivacyRule](../types/InputPrivacyRule.md) = \[\]; -[$InputPrivacyRule](../types/InputPrivacyRule.md)\['[inputPrivacyValueDisallowContacts](inputPrivacyValueDisallowContacts.md)'\] = +[$InputPrivacyRule](../types/InputPrivacyRule.md) = \[\]; -[$InputPrivacyRule](../types/InputPrivacyRule.md)\['[inputPrivacyValueDisallowUsers](inputPrivacyValueDisallowUsers.md)'\] = \['users' => [[InputUser](../types/InputUser.md)], \] +[$InputPrivacyRule](../types/InputPrivacyRule.md) = \['users' => [[InputUser](../types/InputUser.md)], \]; -[$ReportReason](../types/ReportReason.md)\['[inputReportReasonOther](inputReportReasonOther.md)'\] = \['text' => [string](../types/string.md), \] +[$ReportReason](../types/ReportReason.md) = \['text' => [string](../types/string.md), \]; -[$ReportReason](../types/ReportReason.md)\['[inputReportReasonPornography](inputReportReasonPornography.md)'\] = +[$ReportReason](../types/ReportReason.md) = \[\]; -[$ReportReason](../types/ReportReason.md)\['[inputReportReasonSpam](inputReportReasonSpam.md)'\] = +[$ReportReason](../types/ReportReason.md) = \[\]; -[$ReportReason](../types/ReportReason.md)\['[inputReportReasonViolence](inputReportReasonViolence.md)'\] = +[$ReportReason](../types/ReportReason.md) = \[\]; -[$InputStickerSet](../types/InputStickerSet.md)\['[inputStickerSetEmpty](inputStickerSetEmpty.md)'\] = +[$InputStickerSet](../types/InputStickerSet.md) = \[\]; -[$InputStickerSet](../types/InputStickerSet.md)\['[inputStickerSetID](inputStickerSetID.md)'\] = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \] +[$InputStickerSet](../types/InputStickerSet.md) = \['id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), \]; -[$InputStickerSet](../types/InputStickerSet.md)\['[inputStickerSetShortName](inputStickerSetShortName.md)'\] = \['short\_name' => [string](../types/string.md), \] +[$InputStickerSet](../types/InputStickerSet.md) = \['short\_name' => [string](../types/string.md), \]; -[$InputStickeredMedia](../types/InputStickeredMedia.md)\['[inputStickeredMediaDocument](inputStickeredMediaDocument.md)'\] = \['id' => [InputDocument](../types/InputDocument.md), \] +[$InputStickeredMedia](../types/InputStickeredMedia.md) = \['id' => [InputDocument](../types/InputDocument.md), \]; -[$InputStickeredMedia](../types/InputStickeredMedia.md)\['[inputStickeredMediaPhoto](inputStickeredMediaPhoto.md)'\] = \['id' => [InputPhoto](../types/InputPhoto.md), \] +[$InputStickeredMedia](../types/InputStickeredMedia.md) = \['id' => [InputPhoto](../types/InputPhoto.md), \]; -[$InputUser](../types/InputUser.md)\['[inputUser](inputUser.md)'\] = \['user\_id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), \] +[$InputUser](../types/InputUser.md) = \['user\_id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), \]; -[$InputUser](../types/InputUser.md)\['[inputUserEmpty](inputUserEmpty.md)'\] = +[$InputUser](../types/InputUser.md) = \[\]; -[$InputUser](../types/InputUser.md)\['[inputUserSelf](inputUserSelf.md)'\] = +[$InputUser](../types/InputUser.md) = \[\]; -[$KeyboardButton](../types/KeyboardButton.md)\['[keyboardButton](keyboardButton.md)'\] = \['text' => [string](../types/string.md), \] +[$KeyboardButton](../types/KeyboardButton.md) = \['text' => [string](../types/string.md), \]; -[$KeyboardButton](../types/KeyboardButton.md)\['[keyboardButtonCallback](keyboardButtonCallback.md)'\] = \['text' => [string](../types/string.md), 'data' => [bytes](../types/bytes.md), \] +[$KeyboardButton](../types/KeyboardButton.md) = \['text' => [string](../types/string.md), 'data' => [bytes](../types/bytes.md), \]; -[$KeyboardButton](../types/KeyboardButton.md)\['[keyboardButtonGame](keyboardButtonGame.md)'\] = \['text' => [string](../types/string.md), \] +[$KeyboardButton](../types/KeyboardButton.md) = \['text' => [string](../types/string.md), \]; -[$KeyboardButton](../types/KeyboardButton.md)\['[keyboardButtonRequestGeoLocation](keyboardButtonRequestGeoLocation.md)'\] = \['text' => [string](../types/string.md), \] +[$KeyboardButton](../types/KeyboardButton.md) = \['text' => [string](../types/string.md), \]; -[$KeyboardButton](../types/KeyboardButton.md)\['[keyboardButtonRequestPhone](keyboardButtonRequestPhone.md)'\] = \['text' => [string](../types/string.md), \] +[$KeyboardButton](../types/KeyboardButton.md) = \['text' => [string](../types/string.md), \]; -[$KeyboardButtonRow](../types/KeyboardButtonRow.md)\['[keyboardButtonRow](keyboardButtonRow.md)'\] = \['buttons' => [[KeyboardButton](../types/KeyboardButton.md)], \] +[$KeyboardButtonRow](../types/KeyboardButtonRow.md) = \['buttons' => [[KeyboardButton](../types/KeyboardButton.md)], \]; -[$KeyboardButton](../types/KeyboardButton.md)\['[keyboardButtonSwitchInline](keyboardButtonSwitchInline.md)'\] = \['same\_peer' => [Bool](../types/Bool.md), 'text' => [string](../types/string.md), 'query' => [string](../types/string.md), \] +[$KeyboardButton](../types/KeyboardButton.md) = \['same\_peer' => [Bool](../types/Bool.md), 'text' => [string](../types/string.md), 'query' => [string](../types/string.md), \]; -[$KeyboardButton](../types/KeyboardButton.md)\['[keyboardButtonUrl](keyboardButtonUrl.md)'\] = \['text' => [string](../types/string.md), 'url' => [string](../types/string.md), \] +[$KeyboardButton](../types/KeyboardButton.md) = \['text' => [string](../types/string.md), 'url' => [string](../types/string.md), \]; -[$MaskCoords](../types/MaskCoords.md)\['[maskCoords](maskCoords.md)'\] = \['n' => [int](../types/int.md), 'x' => [double](../types/double.md), 'y' => [double](../types/double.md), 'zoom' => [double](../types/double.md), \] +[$MaskCoords](../types/MaskCoords.md) = \['n' => [int](../types/int.md), 'x' => [double](../types/double.md), 'y' => [double](../types/double.md), 'zoom' => [double](../types/double.md), \]; -[$Message](../types/Message.md)\['[message](message.md)'\] = \['out' => [Bool](../types/Bool.md), 'mentioned' => [Bool](../types/Bool.md), 'media\_unread' => [Bool](../types/Bool.md), 'silent' => [Bool](../types/Bool.md), 'post' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'from\_id' => [int](../types/int.md), 'to\_id' => [Peer](../types/Peer.md), 'fwd\_from' => [MessageFwdHeader](../types/MessageFwdHeader.md), 'via\_bot\_id' => [int](../types/int.md), 'reply\_to\_msg\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'message' => [string](../types/string.md), 'media' => [MessageMedia](../types/MessageMedia.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], 'views' => [int](../types/int.md), 'edit\_date' => [int](../types/int.md), \] +[$Message](../types/Message.md) = \['out' => [Bool](../types/Bool.md), 'mentioned' => [Bool](../types/Bool.md), 'media\_unread' => [Bool](../types/Bool.md), 'silent' => [Bool](../types/Bool.md), 'post' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'from\_id' => [int](../types/int.md), 'to\_id' => [Peer](../types/Peer.md), 'fwd\_from' => [MessageFwdHeader](../types/MessageFwdHeader.md), 'via\_bot\_id' => [int](../types/int.md), 'reply\_to\_msg\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'message' => [string](../types/string.md), 'media' => [MessageMedia](../types/MessageMedia.md), 'reply\_markup' => [ReplyMarkup](../types/ReplyMarkup.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], 'views' => [int](../types/int.md), 'edit\_date' => [int](../types/int.md), \]; -[$MessageAction](../types/MessageAction.md)\['[messageActionChannelCreate](messageActionChannelCreate.md)'\] = \['title' => [string](../types/string.md), \] +[$MessageAction](../types/MessageAction.md) = \['title' => [string](../types/string.md), \]; -[$MessageAction](../types/MessageAction.md)\['[messageActionChannelMigrateFrom](messageActionChannelMigrateFrom.md)'\] = \['title' => [string](../types/string.md), 'chat\_id' => [int](../types/int.md), \] +[$MessageAction](../types/MessageAction.md) = \['title' => [string](../types/string.md), 'chat\_id' => [int](../types/int.md), \]; -[$MessageAction](../types/MessageAction.md)\['[messageActionChatAddUser](messageActionChatAddUser.md)'\] = \['users' => [[int](../types/int.md)], \] +[$MessageAction](../types/MessageAction.md) = \['users' => [[int](../types/int.md)], \]; -[$MessageAction](../types/MessageAction.md)\['[messageActionChatCreate](messageActionChatCreate.md)'\] = \['title' => [string](../types/string.md), 'users' => [[int](../types/int.md)], \] +[$MessageAction](../types/MessageAction.md) = \['title' => [string](../types/string.md), 'users' => [[int](../types/int.md)], \]; -[$MessageAction](../types/MessageAction.md)\['[messageActionChatDeletePhoto](messageActionChatDeletePhoto.md)'\] = +[$MessageAction](../types/MessageAction.md) = \[\]; -[$MessageAction](../types/MessageAction.md)\['[messageActionChatDeleteUser](messageActionChatDeleteUser.md)'\] = \['user\_id' => [int](../types/int.md), \] +[$MessageAction](../types/MessageAction.md) = \['user\_id' => [int](../types/int.md), \]; -[$MessageAction](../types/MessageAction.md)\['[messageActionChatEditPhoto](messageActionChatEditPhoto.md)'\] = \['photo' => [Photo](../types/Photo.md), \] +[$MessageAction](../types/MessageAction.md) = \['photo' => [Photo](../types/Photo.md), \]; -[$MessageAction](../types/MessageAction.md)\['[messageActionChatEditTitle](messageActionChatEditTitle.md)'\] = \['title' => [string](../types/string.md), \] +[$MessageAction](../types/MessageAction.md) = \['title' => [string](../types/string.md), \]; -[$MessageAction](../types/MessageAction.md)\['[messageActionChatJoinedByLink](messageActionChatJoinedByLink.md)'\] = \['inviter\_id' => [int](../types/int.md), \] +[$MessageAction](../types/MessageAction.md) = \['inviter\_id' => [int](../types/int.md), \]; -[$MessageAction](../types/MessageAction.md)\['[messageActionChatMigrateTo](messageActionChatMigrateTo.md)'\] = \['channel\_id' => [int](../types/int.md), \] +[$MessageAction](../types/MessageAction.md) = \['channel\_id' => [int](../types/int.md), \]; -[$MessageAction](../types/MessageAction.md)\['[messageActionEmpty](messageActionEmpty.md)'\] = +[$MessageAction](../types/MessageAction.md) = \[\]; -[$MessageAction](../types/MessageAction.md)\['[messageActionGameScore](messageActionGameScore.md)'\] = \['game\_id' => [long](../types/long.md), 'score' => [int](../types/int.md), \] +[$MessageAction](../types/MessageAction.md) = \['game\_id' => [long](../types/long.md), 'score' => [int](../types/int.md), \]; -[$MessageAction](../types/MessageAction.md)\['[messageActionHistoryClear](messageActionHistoryClear.md)'\] = +[$MessageAction](../types/MessageAction.md) = \[\]; -[$MessageAction](../types/MessageAction.md)\['[messageActionPinMessage](messageActionPinMessage.md)'\] = +[$MessageAction](../types/MessageAction.md) = \[\]; -[$Message](../types/Message.md)\['[messageEmpty](messageEmpty.md)'\] = \['id' => [int](../types/int.md), \] +[$Message](../types/Message.md) = \['id' => [int](../types/int.md), \]; -[$MessageEntity](../types/MessageEntity.md)\['[messageEntityBold](messageEntityBold.md)'\] = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \] +[$MessageEntity](../types/MessageEntity.md) = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \]; -[$MessageEntity](../types/MessageEntity.md)\['[messageEntityBotCommand](messageEntityBotCommand.md)'\] = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \] +[$MessageEntity](../types/MessageEntity.md) = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \]; -[$MessageEntity](../types/MessageEntity.md)\['[messageEntityCode](messageEntityCode.md)'\] = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \] +[$MessageEntity](../types/MessageEntity.md) = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \]; -[$MessageEntity](../types/MessageEntity.md)\['[messageEntityEmail](messageEntityEmail.md)'\] = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \] +[$MessageEntity](../types/MessageEntity.md) = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \]; -[$MessageEntity](../types/MessageEntity.md)\['[messageEntityHashtag](messageEntityHashtag.md)'\] = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \] +[$MessageEntity](../types/MessageEntity.md) = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \]; -[$MessageEntity](../types/MessageEntity.md)\['[messageEntityItalic](messageEntityItalic.md)'\] = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \] +[$MessageEntity](../types/MessageEntity.md) = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \]; -[$MessageEntity](../types/MessageEntity.md)\['[messageEntityMention](messageEntityMention.md)'\] = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \] +[$MessageEntity](../types/MessageEntity.md) = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \]; -[$MessageEntity](../types/MessageEntity.md)\['[messageEntityMentionName](messageEntityMentionName.md)'\] = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), \] +[$MessageEntity](../types/MessageEntity.md) = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), \]; -[$MessageEntity](../types/MessageEntity.md)\['[messageEntityPre](messageEntityPre.md)'\] = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), 'language' => [string](../types/string.md), \] +[$MessageEntity](../types/MessageEntity.md) = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), 'language' => [string](../types/string.md), \]; -[$MessageEntity](../types/MessageEntity.md)\['[messageEntityTextUrl](messageEntityTextUrl.md)'\] = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), 'url' => [string](../types/string.md), \] +[$MessageEntity](../types/MessageEntity.md) = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), 'url' => [string](../types/string.md), \]; -[$MessageEntity](../types/MessageEntity.md)\['[messageEntityUnknown](messageEntityUnknown.md)'\] = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \] +[$MessageEntity](../types/MessageEntity.md) = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \]; -[$MessageEntity](../types/MessageEntity.md)\['[messageEntityUrl](messageEntityUrl.md)'\] = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \] +[$MessageEntity](../types/MessageEntity.md) = \['offset' => [int](../types/int.md), 'length' => [int](../types/int.md), \]; -[$MessageFwdHeader](../types/MessageFwdHeader.md)\['[messageFwdHeader](messageFwdHeader.md)'\] = \['from\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'channel\_id' => [int](../types/int.md), 'channel\_post' => [int](../types/int.md), \] +[$MessageFwdHeader](../types/MessageFwdHeader.md) = \['from\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'channel\_id' => [int](../types/int.md), 'channel\_post' => [int](../types/int.md), \]; -[$MessageMedia](../types/MessageMedia.md)\['[messageMediaContact](messageMediaContact.md)'\] = \['phone\_number' => [string](../types/string.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), 'user\_id' => [int](../types/int.md), \] +[$MessageMedia](../types/MessageMedia.md) = \['phone\_number' => [string](../types/string.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), 'user\_id' => [int](../types/int.md), \]; -[$MessageMedia](../types/MessageMedia.md)\['[messageMediaDocument](messageMediaDocument.md)'\] = \['document' => [Document](../types/Document.md), 'caption' => [string](../types/string.md), \] +[$MessageMedia](../types/MessageMedia.md) = \['document' => [Document](../types/Document.md), 'caption' => [string](../types/string.md), \]; -[$MessageMedia](../types/MessageMedia.md)\['[messageMediaEmpty](messageMediaEmpty.md)'\] = +[$MessageMedia](../types/MessageMedia.md) = \[\]; -[$MessageMedia](../types/MessageMedia.md)\['[messageMediaGame](messageMediaGame.md)'\] = \['game' => [Game](../types/Game.md), \] +[$MessageMedia](../types/MessageMedia.md) = \['game' => [Game](../types/Game.md), \]; -[$MessageMedia](../types/MessageMedia.md)\['[messageMediaGeo](messageMediaGeo.md)'\] = \['geo' => [GeoPoint](../types/GeoPoint.md), \] +[$MessageMedia](../types/MessageMedia.md) = \['geo' => [GeoPoint](../types/GeoPoint.md), \]; -[$MessageMedia](../types/MessageMedia.md)\['[messageMediaPhoto](messageMediaPhoto.md)'\] = \['photo' => [Photo](../types/Photo.md), 'caption' => [string](../types/string.md), \] +[$MessageMedia](../types/MessageMedia.md) = \['photo' => [Photo](../types/Photo.md), 'caption' => [string](../types/string.md), \]; -[$MessageMedia](../types/MessageMedia.md)\['[messageMediaUnsupported](messageMediaUnsupported.md)'\] = +[$MessageMedia](../types/MessageMedia.md) = \[\]; -[$MessageMedia](../types/MessageMedia.md)\['[messageMediaVenue](messageMediaVenue.md)'\] = \['geo' => [GeoPoint](../types/GeoPoint.md), 'title' => [string](../types/string.md), 'address' => [string](../types/string.md), 'provider' => [string](../types/string.md), 'venue\_id' => [string](../types/string.md), \] +[$MessageMedia](../types/MessageMedia.md) = \['geo' => [GeoPoint](../types/GeoPoint.md), 'title' => [string](../types/string.md), 'address' => [string](../types/string.md), 'provider' => [string](../types/string.md), 'venue\_id' => [string](../types/string.md), \]; -[$MessageMedia](../types/MessageMedia.md)\['[messageMediaWebPage](messageMediaWebPage.md)'\] = \['webpage' => [WebPage](../types/WebPage.md), \] +[$MessageMedia](../types/MessageMedia.md) = \['webpage' => [WebPage](../types/WebPage.md), \]; -[$MessageRange](../types/MessageRange.md)\['[messageRange](messageRange.md)'\] = \['min\_id' => [int](../types/int.md), 'max\_id' => [int](../types/int.md), \] +[$MessageRange](../types/MessageRange.md) = \['min\_id' => [int](../types/int.md), 'max\_id' => [int](../types/int.md), \]; -[$Message](../types/Message.md)\['[messageService](messageService.md)'\] = \['out' => [Bool](../types/Bool.md), 'mentioned' => [Bool](../types/Bool.md), 'media\_unread' => [Bool](../types/Bool.md), 'silent' => [Bool](../types/Bool.md), 'post' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'from\_id' => [int](../types/int.md), 'to\_id' => [Peer](../types/Peer.md), 'reply\_to\_msg\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'action' => [MessageAction](../types/MessageAction.md), \] +[$Message](../types/Message.md) = \['out' => [Bool](../types/Bool.md), 'mentioned' => [Bool](../types/Bool.md), 'media\_unread' => [Bool](../types/Bool.md), 'silent' => [Bool](../types/Bool.md), 'post' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'from\_id' => [int](../types/int.md), 'to\_id' => [Peer](../types/Peer.md), 'reply\_to\_msg\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'action' => [MessageAction](../types/MessageAction.md), \]; -[$messages\_AffectedHistory](../types/messages\_AffectedHistory.md)\['[messages\_affectedHistory](messages\_affectedHistory.md)'\] = \['pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), 'offset' => [int](../types/int.md), \] +[$messages\_AffectedHistory](../types/messages\_AffectedHistory.md) = \['pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), 'offset' => [int](../types/int.md), \]; -[$messages\_AffectedMessages](../types/messages\_AffectedMessages.md)\['[messages\_affectedMessages](messages\_affectedMessages.md)'\] = \['pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \] +[$messages\_AffectedMessages](../types/messages\_AffectedMessages.md) = \['pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \]; -[$messages\_AllStickers](../types/messages\_AllStickers.md)\['[messages\_allStickers](messages\_allStickers.md)'\] = \['hash' => [int](../types/int.md), 'sets' => [[StickerSet](../types/StickerSet.md)], \] +[$messages\_AllStickers](../types/messages\_AllStickers.md) = \['hash' => [int](../types/int.md), 'sets' => [[StickerSet](../types/StickerSet.md)], \]; -[$messages\_AllStickers](../types/messages\_AllStickers.md)\['[messages\_allStickersNotModified](messages\_allStickersNotModified.md)'\] = +[$messages\_AllStickers](../types/messages\_AllStickers.md) = \[\]; -[$messages\_ArchivedStickers](../types/messages\_ArchivedStickers.md)\['[messages\_archivedStickers](messages\_archivedStickers.md)'\] = \['count' => [int](../types/int.md), 'sets' => [[StickerSetCovered](../types/StickerSetCovered.md)], \] +[$messages\_ArchivedStickers](../types/messages\_ArchivedStickers.md) = \['count' => [int](../types/int.md), 'sets' => [[StickerSetCovered](../types/StickerSetCovered.md)], \]; -[$messages\_BotCallbackAnswer](../types/messages\_BotCallbackAnswer.md)\['[messages\_botCallbackAnswer](messages\_botCallbackAnswer.md)'\] = \['alert' => [Bool](../types/Bool.md), 'has\_url' => [Bool](../types/Bool.md), 'message' => [string](../types/string.md), 'url' => [string](../types/string.md), \] +[$messages\_BotCallbackAnswer](../types/messages\_BotCallbackAnswer.md) = \['alert' => [Bool](../types/Bool.md), 'has\_url' => [Bool](../types/Bool.md), 'message' => [string](../types/string.md), 'url' => [string](../types/string.md), \]; -[$messages\_BotResults](../types/messages\_BotResults.md)\['[messages\_botResults](messages\_botResults.md)'\] = \['gallery' => [Bool](../types/Bool.md), 'query\_id' => [long](../types/long.md), 'next\_offset' => [string](../types/string.md), 'switch\_pm' => [InlineBotSwitchPM](../types/InlineBotSwitchPM.md), 'results' => [[BotInlineResult](../types/BotInlineResult.md)], \] +[$messages\_BotResults](../types/messages\_BotResults.md) = \['gallery' => [Bool](../types/Bool.md), 'query\_id' => [long](../types/long.md), 'next\_offset' => [string](../types/string.md), 'switch\_pm' => [InlineBotSwitchPM](../types/InlineBotSwitchPM.md), 'results' => [[BotInlineResult](../types/BotInlineResult.md)], \]; -[$messages\_Messages](../types/messages\_Messages.md)\['[messages\_channelMessages](messages\_channelMessages.md)'\] = \['pts' => [int](../types/int.md), 'count' => [int](../types/int.md), 'messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \] +[$messages\_Messages](../types/messages\_Messages.md) = \['pts' => [int](../types/int.md), 'count' => [int](../types/int.md), 'messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \]; -[$messages\_ChatFull](../types/messages\_ChatFull.md)\['[messages\_chatFull](messages\_chatFull.md)'\] = \['full\_chat' => [ChatFull](../types/ChatFull.md), 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \] +[$messages\_ChatFull](../types/messages\_ChatFull.md) = \['full\_chat' => [ChatFull](../types/ChatFull.md), 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \]; -[$messages\_Chats](../types/messages\_Chats.md)\['[messages\_chats](messages\_chats.md)'\] = \['chats' => [[Chat](../types/Chat.md)], \] +[$messages\_Chats](../types/messages\_Chats.md) = \['chats' => [[Chat](../types/Chat.md)], \]; -[$messages\_DhConfig](../types/messages\_DhConfig.md)\['[messages\_dhConfig](messages\_dhConfig.md)'\] = \['g' => [int](../types/int.md), 'p' => [bytes](../types/bytes.md), 'version' => [int](../types/int.md), 'random' => [bytes](../types/bytes.md), \] +[$messages\_DhConfig](../types/messages\_DhConfig.md) = \['g' => [int](../types/int.md), 'p' => [bytes](../types/bytes.md), 'version' => [int](../types/int.md), 'random' => [bytes](../types/bytes.md), \]; -[$messages\_DhConfig](../types/messages\_DhConfig.md)\['[messages\_dhConfigNotModified](messages\_dhConfigNotModified.md)'\] = \['random' => [bytes](../types/bytes.md), \] +[$messages\_DhConfig](../types/messages\_DhConfig.md) = \['random' => [bytes](../types/bytes.md), \]; -[$messages\_Dialogs](../types/messages\_Dialogs.md)\['[messages\_dialogs](messages\_dialogs.md)'\] = \['dialogs' => [[Dialog](../types/Dialog.md)], 'messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \] +[$messages\_Dialogs](../types/messages\_Dialogs.md) = \['dialogs' => [[Dialog](../types/Dialog.md)], 'messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \]; -[$messages\_Dialogs](../types/messages\_Dialogs.md)\['[messages\_dialogsSlice](messages\_dialogsSlice.md)'\] = \['count' => [int](../types/int.md), 'dialogs' => [[Dialog](../types/Dialog.md)], 'messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \] +[$messages\_Dialogs](../types/messages\_Dialogs.md) = \['count' => [int](../types/int.md), 'dialogs' => [[Dialog](../types/Dialog.md)], 'messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \]; -[$messages\_FeaturedStickers](../types/messages\_FeaturedStickers.md)\['[messages\_featuredStickers](messages\_featuredStickers.md)'\] = \['hash' => [int](../types/int.md), 'sets' => [[StickerSetCovered](../types/StickerSetCovered.md)], 'unread' => [[long](../types/long.md)], \] +[$messages\_FeaturedStickers](../types/messages\_FeaturedStickers.md) = \['hash' => [int](../types/int.md), 'sets' => [[StickerSetCovered](../types/StickerSetCovered.md)], 'unread' => [[long](../types/long.md)], \]; -[$messages\_FeaturedStickers](../types/messages\_FeaturedStickers.md)\['[messages\_featuredStickersNotModified](messages\_featuredStickersNotModified.md)'\] = +[$messages\_FeaturedStickers](../types/messages\_FeaturedStickers.md) = \[\]; -[$messages\_FoundGifs](../types/messages\_FoundGifs.md)\['[messages\_foundGifs](messages\_foundGifs.md)'\] = \['next\_offset' => [int](../types/int.md), 'results' => [[FoundGif](../types/FoundGif.md)], \] +[$messages\_FoundGifs](../types/messages\_FoundGifs.md) = \['next\_offset' => [int](../types/int.md), 'results' => [[FoundGif](../types/FoundGif.md)], \]; -[$messages\_HighScores](../types/messages\_HighScores.md)\['[messages\_highScores](messages\_highScores.md)'\] = \['scores' => [[HighScore](../types/HighScore.md)], 'users' => [[User](../types/User.md)], \] +[$messages\_HighScores](../types/messages\_HighScores.md) = \['scores' => [[HighScore](../types/HighScore.md)], 'users' => [[User](../types/User.md)], \]; -[$messages\_MessageEditData](../types/messages\_MessageEditData.md)\['[messages\_messageEditData](messages\_messageEditData.md)'\] = \['caption' => [Bool](../types/Bool.md), \] +[$messages\_MessageEditData](../types/messages\_MessageEditData.md) = \['caption' => [Bool](../types/Bool.md), \]; -[$messages\_Messages](../types/messages\_Messages.md)\['[messages\_messages](messages\_messages.md)'\] = \['messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \] +[$messages\_Messages](../types/messages\_Messages.md) = \['messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \]; -[$messages\_Messages](../types/messages\_Messages.md)\['[messages\_messagesSlice](messages\_messagesSlice.md)'\] = \['count' => [int](../types/int.md), 'messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \] +[$messages\_Messages](../types/messages\_Messages.md) = \['count' => [int](../types/int.md), 'messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \]; -[$messages\_PeerDialogs](../types/messages\_PeerDialogs.md)\['[messages\_peerDialogs](messages\_peerDialogs.md)'\] = \['dialogs' => [[Dialog](../types/Dialog.md)], 'messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], 'state' => [updates\_State](../types/updates\_State.md), \] +[$messages\_PeerDialogs](../types/messages\_PeerDialogs.md) = \['dialogs' => [[Dialog](../types/Dialog.md)], 'messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], 'state' => [updates\_State](../types/updates\_State.md), \]; -[$messages\_RecentStickers](../types/messages\_RecentStickers.md)\['[messages\_recentStickers](messages\_recentStickers.md)'\] = \['hash' => [int](../types/int.md), 'stickers' => [[Document](../types/Document.md)], \] +[$messages\_RecentStickers](../types/messages\_RecentStickers.md) = \['hash' => [int](../types/int.md), 'stickers' => [[Document](../types/Document.md)], \]; -[$messages\_RecentStickers](../types/messages\_RecentStickers.md)\['[messages\_recentStickersNotModified](messages\_recentStickersNotModified.md)'\] = +[$messages\_RecentStickers](../types/messages\_RecentStickers.md) = \[\]; -[$messages\_SavedGifs](../types/messages\_SavedGifs.md)\['[messages\_savedGifs](messages\_savedGifs.md)'\] = \['hash' => [int](../types/int.md), 'gifs' => [[Document](../types/Document.md)], \] +[$messages\_SavedGifs](../types/messages\_SavedGifs.md) = \['hash' => [int](../types/int.md), 'gifs' => [[Document](../types/Document.md)], \]; -[$messages\_SavedGifs](../types/messages\_SavedGifs.md)\['[messages\_savedGifsNotModified](messages\_savedGifsNotModified.md)'\] = +[$messages\_SavedGifs](../types/messages\_SavedGifs.md) = \[\]; -[$messages\_SentEncryptedMessage](../types/messages\_SentEncryptedMessage.md)\['[messages\_sentEncryptedFile](messages\_sentEncryptedFile.md)'\] = \['date' => [int](../types/int.md), 'file' => [EncryptedFile](../types/EncryptedFile.md), \] +[$messages\_SentEncryptedMessage](../types/messages\_SentEncryptedMessage.md) = \['date' => [int](../types/int.md), 'file' => [EncryptedFile](../types/EncryptedFile.md), \]; -[$messages\_SentEncryptedMessage](../types/messages\_SentEncryptedMessage.md)\['[messages\_sentEncryptedMessage](messages\_sentEncryptedMessage.md)'\] = \['date' => [int](../types/int.md), \] +[$messages\_SentEncryptedMessage](../types/messages\_SentEncryptedMessage.md) = \['date' => [int](../types/int.md), \]; -[$messages\_StickerSet](../types/messages\_StickerSet.md)\['[messages\_stickerSet](messages\_stickerSet.md)'\] = \['set' => [StickerSet](../types/StickerSet.md), 'packs' => [[StickerPack](../types/StickerPack.md)], 'documents' => [[Document](../types/Document.md)], \] +[$messages\_StickerSet](../types/messages\_StickerSet.md) = \['set' => [StickerSet](../types/StickerSet.md), 'packs' => [[StickerPack](../types/StickerPack.md)], 'documents' => [[Document](../types/Document.md)], \]; -[$messages\_StickerSetInstallResult](../types/messages\_StickerSetInstallResult.md)\['[messages\_stickerSetInstallResultArchive](messages\_stickerSetInstallResultArchive.md)'\] = \['sets' => [[StickerSetCovered](../types/StickerSetCovered.md)], \] +[$messages\_StickerSetInstallResult](../types/messages\_StickerSetInstallResult.md) = \['sets' => [[StickerSetCovered](../types/StickerSetCovered.md)], \]; -[$messages\_StickerSetInstallResult](../types/messages\_StickerSetInstallResult.md)\['[messages\_stickerSetInstallResultSuccess](messages\_stickerSetInstallResultSuccess.md)'\] = +[$messages\_StickerSetInstallResult](../types/messages\_StickerSetInstallResult.md) = \[\]; -[$messages\_Stickers](../types/messages\_Stickers.md)\['[messages\_stickers](messages\_stickers.md)'\] = \['hash' => [string](../types/string.md), 'stickers' => [[Document](../types/Document.md)], \] +[$messages\_Stickers](../types/messages\_Stickers.md) = \['hash' => [string](../types/string.md), 'stickers' => [[Document](../types/Document.md)], \]; -[$messages\_Stickers](../types/messages\_Stickers.md)\['[messages\_stickersNotModified](messages\_stickersNotModified.md)'\] = +[$messages\_Stickers](../types/messages\_Stickers.md) = \[\]; -[$NearestDc](../types/NearestDc.md)\['[nearestDc](nearestDc.md)'\] = \['country' => [string](../types/string.md), 'this\_dc' => [int](../types/int.md), 'nearest\_dc' => [int](../types/int.md), \] +[$NearestDc](../types/NearestDc.md) = \['country' => [string](../types/string.md), 'this\_dc' => [int](../types/int.md), 'nearest\_dc' => [int](../types/int.md), \]; -[$NotifyPeer](../types/NotifyPeer.md)\['[notifyAll](notifyAll.md)'\] = +[$NotifyPeer](../types/NotifyPeer.md) = \[\]; -[$NotifyPeer](../types/NotifyPeer.md)\['[notifyChats](notifyChats.md)'\] = +[$NotifyPeer](../types/NotifyPeer.md) = \[\]; -[$NotifyPeer](../types/NotifyPeer.md)\['[notifyPeer](notifyPeer.md)'\] = \['peer' => [Peer](../types/Peer.md), \] +[$NotifyPeer](../types/NotifyPeer.md) = \['peer' => [Peer](../types/Peer.md), \]; -[$NotifyPeer](../types/NotifyPeer.md)\['[notifyUsers](notifyUsers.md)'\] = +[$NotifyPeer](../types/NotifyPeer.md) = \[\]; -[$Null](../types/Null.md)\['[null](null.md)'\] = +[$Null](../types/Null.md) = \[\]; -[$Peer](../types/Peer.md)\['[peerChannel](peerChannel.md)'\] = \['channel\_id' => [int](../types/int.md), \] +[$Peer](../types/Peer.md) = \['channel\_id' => [int](../types/int.md), \]; -[$Peer](../types/Peer.md)\['[peerChat](peerChat.md)'\] = \['chat\_id' => [int](../types/int.md), \] +[$Peer](../types/Peer.md) = \['chat\_id' => [int](../types/int.md), \]; -[$PeerNotifyEvents](../types/PeerNotifyEvents.md)\['[peerNotifyEventsAll](peerNotifyEventsAll.md)'\] = +[$PeerNotifyEvents](../types/PeerNotifyEvents.md) = \[\]; -[$PeerNotifyEvents](../types/PeerNotifyEvents.md)\['[peerNotifyEventsEmpty](peerNotifyEventsEmpty.md)'\] = +[$PeerNotifyEvents](../types/PeerNotifyEvents.md) = \[\]; -[$PeerNotifySettings](../types/PeerNotifySettings.md)\['[peerNotifySettings](peerNotifySettings.md)'\] = \['show\_previews' => [Bool](../types/Bool.md), 'silent' => [Bool](../types/Bool.md), 'mute\_until' => [int](../types/int.md), 'sound' => [string](../types/string.md), \] +[$PeerNotifySettings](../types/PeerNotifySettings.md) = \['show\_previews' => [Bool](../types/Bool.md), 'silent' => [Bool](../types/Bool.md), 'mute\_until' => [int](../types/int.md), 'sound' => [string](../types/string.md), \]; -[$PeerNotifySettings](../types/PeerNotifySettings.md)\['[peerNotifySettingsEmpty](peerNotifySettingsEmpty.md)'\] = +[$PeerNotifySettings](../types/PeerNotifySettings.md) = \[\]; -[$PeerSettings](../types/PeerSettings.md)\['[peerSettings](peerSettings.md)'\] = \['report\_spam' => [Bool](../types/Bool.md), \] +[$PeerSettings](../types/PeerSettings.md) = \['report\_spam' => [Bool](../types/Bool.md), \]; -[$Peer](../types/Peer.md)\['[peerUser](peerUser.md)'\] = \['user\_id' => [int](../types/int.md), \] +[$Peer](../types/Peer.md) = \['user\_id' => [int](../types/int.md), \]; -[$Photo](../types/Photo.md)\['[photo](photo.md)'\] = \['has\_stickers' => [Bool](../types/Bool.md), 'id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), 'date' => [int](../types/int.md), 'sizes' => [[PhotoSize](../types/PhotoSize.md)], \] +[$Photo](../types/Photo.md) = \['has\_stickers' => [Bool](../types/Bool.md), 'id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), 'date' => [int](../types/int.md), 'sizes' => [[PhotoSize](../types/PhotoSize.md)], \]; -[$PhotoSize](../types/PhotoSize.md)\['[photoCachedSize](photoCachedSize.md)'\] = \['type' => [string](../types/string.md), 'location' => [FileLocation](../types/FileLocation.md), 'w' => [int](../types/int.md), 'h' => [int](../types/int.md), 'bytes' => [bytes](../types/bytes.md), \] +[$PhotoSize](../types/PhotoSize.md) = \['type' => [string](../types/string.md), 'location' => [FileLocation](../types/FileLocation.md), 'w' => [int](../types/int.md), 'h' => [int](../types/int.md), 'bytes' => [bytes](../types/bytes.md), \]; -[$Photo](../types/Photo.md)\['[photoEmpty](photoEmpty.md)'\] = \['id' => [long](../types/long.md), \] +[$Photo](../types/Photo.md) = \['id' => [long](../types/long.md), \]; -[$PhotoSize](../types/PhotoSize.md)\['[photoSize](photoSize.md)'\] = \['type' => [string](../types/string.md), 'location' => [FileLocation](../types/FileLocation.md), 'w' => [int](../types/int.md), 'h' => [int](../types/int.md), 'size' => [int](../types/int.md), \] +[$PhotoSize](../types/PhotoSize.md) = \['type' => [string](../types/string.md), 'location' => [FileLocation](../types/FileLocation.md), 'w' => [int](../types/int.md), 'h' => [int](../types/int.md), 'size' => [int](../types/int.md), \]; -[$PhotoSize](../types/PhotoSize.md)\['[photoSizeEmpty](photoSizeEmpty.md)'\] = \['type' => [string](../types/string.md), \] +[$PhotoSize](../types/PhotoSize.md) = \['type' => [string](../types/string.md), \]; -[$photos\_Photo](../types/photos\_Photo.md)\['[photos\_photo](photos\_photo.md)'\] = \['photo' => [Photo](../types/Photo.md), 'users' => [[User](../types/User.md)], \] +[$photos\_Photo](../types/photos\_Photo.md) = \['photo' => [Photo](../types/Photo.md), 'users' => [[User](../types/User.md)], \]; -[$photos\_Photos](../types/photos\_Photos.md)\['[photos\_photos](photos\_photos.md)'\] = \['photos' => [[Photo](../types/Photo.md)], 'users' => [[User](../types/User.md)], \] +[$photos\_Photos](../types/photos\_Photos.md) = \['photos' => [[Photo](../types/Photo.md)], 'users' => [[User](../types/User.md)], \]; -[$photos\_Photos](../types/photos\_Photos.md)\['[photos\_photosSlice](photos\_photosSlice.md)'\] = \['count' => [int](../types/int.md), 'photos' => [[Photo](../types/Photo.md)], 'users' => [[User](../types/User.md)], \] +[$photos\_Photos](../types/photos\_Photos.md) = \['count' => [int](../types/int.md), 'photos' => [[Photo](../types/Photo.md)], 'users' => [[User](../types/User.md)], \]; -[$PrivacyKey](../types/PrivacyKey.md)\['[privacyKeyChatInvite](privacyKeyChatInvite.md)'\] = +[$PrivacyKey](../types/PrivacyKey.md) = \[\]; -[$PrivacyKey](../types/PrivacyKey.md)\['[privacyKeyStatusTimestamp](privacyKeyStatusTimestamp.md)'\] = +[$PrivacyKey](../types/PrivacyKey.md) = \[\]; -[$PrivacyRule](../types/PrivacyRule.md)\['[privacyValueAllowAll](privacyValueAllowAll.md)'\] = +[$PrivacyRule](../types/PrivacyRule.md) = \[\]; -[$PrivacyRule](../types/PrivacyRule.md)\['[privacyValueAllowContacts](privacyValueAllowContacts.md)'\] = +[$PrivacyRule](../types/PrivacyRule.md) = \[\]; -[$PrivacyRule](../types/PrivacyRule.md)\['[privacyValueAllowUsers](privacyValueAllowUsers.md)'\] = \['users' => [[int](../types/int.md)], \] +[$PrivacyRule](../types/PrivacyRule.md) = \['users' => [[int](../types/int.md)], \]; -[$PrivacyRule](../types/PrivacyRule.md)\['[privacyValueDisallowAll](privacyValueDisallowAll.md)'\] = +[$PrivacyRule](../types/PrivacyRule.md) = \[\]; -[$PrivacyRule](../types/PrivacyRule.md)\['[privacyValueDisallowContacts](privacyValueDisallowContacts.md)'\] = +[$PrivacyRule](../types/PrivacyRule.md) = \[\]; -[$PrivacyRule](../types/PrivacyRule.md)\['[privacyValueDisallowUsers](privacyValueDisallowUsers.md)'\] = \['users' => [[int](../types/int.md)], \] +[$PrivacyRule](../types/PrivacyRule.md) = \['users' => [[int](../types/int.md)], \]; -[$ReceivedNotifyMessage](../types/ReceivedNotifyMessage.md)\['[receivedNotifyMessage](receivedNotifyMessage.md)'\] = \['id' => [int](../types/int.md), \] +[$ReceivedNotifyMessage](../types/ReceivedNotifyMessage.md) = \['id' => [int](../types/int.md), \]; -[$ReplyMarkup](../types/ReplyMarkup.md)\['[replyInlineMarkup](replyInlineMarkup.md)'\] = \['rows' => [[KeyboardButtonRow](../types/KeyboardButtonRow.md)], \] +[$ReplyMarkup](../types/ReplyMarkup.md) = \['rows' => [[KeyboardButtonRow](../types/KeyboardButtonRow.md)], \]; -[$ReplyMarkup](../types/ReplyMarkup.md)\['[replyKeyboardForceReply](replyKeyboardForceReply.md)'\] = \['single\_use' => [Bool](../types/Bool.md), 'selective' => [Bool](../types/Bool.md), \] +[$ReplyMarkup](../types/ReplyMarkup.md) = \['single\_use' => [Bool](../types/Bool.md), 'selective' => [Bool](../types/Bool.md), \]; -[$ReplyMarkup](../types/ReplyMarkup.md)\['[replyKeyboardHide](replyKeyboardHide.md)'\] = \['selective' => [Bool](../types/Bool.md), \] +[$ReplyMarkup](../types/ReplyMarkup.md) = \['selective' => [Bool](../types/Bool.md), \]; -[$ReplyMarkup](../types/ReplyMarkup.md)\['[replyKeyboardMarkup](replyKeyboardMarkup.md)'\] = \['resize' => [Bool](../types/Bool.md), 'single\_use' => [Bool](../types/Bool.md), 'selective' => [Bool](../types/Bool.md), 'rows' => [[KeyboardButtonRow](../types/KeyboardButtonRow.md)], \] +[$ReplyMarkup](../types/ReplyMarkup.md) = \['resize' => [Bool](../types/Bool.md), 'single\_use' => [Bool](../types/Bool.md), 'selective' => [Bool](../types/Bool.md), 'rows' => [[KeyboardButtonRow](../types/KeyboardButtonRow.md)], \]; -[$SendMessageAction](../types/SendMessageAction.md)\['[sendMessageCancelAction](sendMessageCancelAction.md)'\] = +[$SendMessageAction](../types/SendMessageAction.md) = \[\]; -[$SendMessageAction](../types/SendMessageAction.md)\['[sendMessageChooseContactAction](sendMessageChooseContactAction.md)'\] = +[$SendMessageAction](../types/SendMessageAction.md) = \[\]; -[$SendMessageAction](../types/SendMessageAction.md)\['[sendMessageGamePlayAction](sendMessageGamePlayAction.md)'\] = +[$SendMessageAction](../types/SendMessageAction.md) = \[\]; -[$SendMessageAction](../types/SendMessageAction.md)\['[sendMessageGeoLocationAction](sendMessageGeoLocationAction.md)'\] = +[$SendMessageAction](../types/SendMessageAction.md) = \[\]; -[$SendMessageAction](../types/SendMessageAction.md)\['[sendMessageRecordAudioAction](sendMessageRecordAudioAction.md)'\] = +[$SendMessageAction](../types/SendMessageAction.md) = \[\]; -[$SendMessageAction](../types/SendMessageAction.md)\['[sendMessageRecordVideoAction](sendMessageRecordVideoAction.md)'\] = +[$SendMessageAction](../types/SendMessageAction.md) = \[\]; -[$SendMessageAction](../types/SendMessageAction.md)\['[sendMessageTypingAction](sendMessageTypingAction.md)'\] = +[$SendMessageAction](../types/SendMessageAction.md) = \[\]; -[$SendMessageAction](../types/SendMessageAction.md)\['[sendMessageUploadAudioAction](sendMessageUploadAudioAction.md)'\] = \['progress' => [int](../types/int.md), \] +[$SendMessageAction](../types/SendMessageAction.md) = \['progress' => [int](../types/int.md), \]; -[$SendMessageAction](../types/SendMessageAction.md)\['[sendMessageUploadDocumentAction](sendMessageUploadDocumentAction.md)'\] = \['progress' => [int](../types/int.md), \] +[$SendMessageAction](../types/SendMessageAction.md) = \['progress' => [int](../types/int.md), \]; -[$SendMessageAction](../types/SendMessageAction.md)\['[sendMessageUploadPhotoAction](sendMessageUploadPhotoAction.md)'\] = \['progress' => [int](../types/int.md), \] +[$SendMessageAction](../types/SendMessageAction.md) = \['progress' => [int](../types/int.md), \]; -[$SendMessageAction](../types/SendMessageAction.md)\['[sendMessageUploadVideoAction](sendMessageUploadVideoAction.md)'\] = \['progress' => [int](../types/int.md), \] +[$SendMessageAction](../types/SendMessageAction.md) = \['progress' => [int](../types/int.md), \]; -[$StickerPack](../types/StickerPack.md)\['[stickerPack](stickerPack.md)'\] = \['emoticon' => [string](../types/string.md), 'documents' => [[long](../types/long.md)], \] +[$StickerPack](../types/StickerPack.md) = \['emoticon' => [string](../types/string.md), 'documents' => [[long](../types/long.md)], \]; -[$StickerSet](../types/StickerSet.md)\['[stickerSet](stickerSet.md)'\] = \['installed' => [Bool](../types/Bool.md), 'archived' => [Bool](../types/Bool.md), 'official' => [Bool](../types/Bool.md), 'masks' => [Bool](../types/Bool.md), 'id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), 'title' => [string](../types/string.md), 'short\_name' => [string](../types/string.md), 'count' => [int](../types/int.md), 'hash' => [int](../types/int.md), \] +[$StickerSet](../types/StickerSet.md) = \['installed' => [Bool](../types/Bool.md), 'archived' => [Bool](../types/Bool.md), 'official' => [Bool](../types/Bool.md), 'masks' => [Bool](../types/Bool.md), 'id' => [long](../types/long.md), 'access\_hash' => [long](../types/long.md), 'title' => [string](../types/string.md), 'short\_name' => [string](../types/string.md), 'count' => [int](../types/int.md), 'hash' => [int](../types/int.md), \]; -[$StickerSetCovered](../types/StickerSetCovered.md)\['[stickerSetCovered](stickerSetCovered.md)'\] = \['set' => [StickerSet](../types/StickerSet.md), 'cover' => [Document](../types/Document.md), \] +[$StickerSetCovered](../types/StickerSetCovered.md) = \['set' => [StickerSet](../types/StickerSet.md), 'cover' => [Document](../types/Document.md), \]; -[$StickerSetCovered](../types/StickerSetCovered.md)\['[stickerSetMultiCovered](stickerSetMultiCovered.md)'\] = \['set' => [StickerSet](../types/StickerSet.md), 'covers' => [[Document](../types/Document.md)], \] +[$StickerSetCovered](../types/StickerSetCovered.md) = \['set' => [StickerSet](../types/StickerSet.md), 'covers' => [[Document](../types/Document.md)], \]; -[$storage\_FileType](../types/storage\_FileType.md)\['[storage\_fileGif](storage\_fileGif.md)'\] = +[$storage\_FileType](../types/storage\_FileType.md) = \[\]; -[$storage\_FileType](../types/storage\_FileType.md)\['[storage\_fileJpeg](storage\_fileJpeg.md)'\] = +[$storage\_FileType](../types/storage\_FileType.md) = \[\]; -[$storage\_FileType](../types/storage\_FileType.md)\['[storage\_fileMov](storage\_fileMov.md)'\] = +[$storage\_FileType](../types/storage\_FileType.md) = \[\]; -[$storage\_FileType](../types/storage\_FileType.md)\['[storage\_fileMp3](storage\_fileMp3.md)'\] = +[$storage\_FileType](../types/storage\_FileType.md) = \[\]; -[$storage\_FileType](../types/storage\_FileType.md)\['[storage\_fileMp4](storage\_fileMp4.md)'\] = +[$storage\_FileType](../types/storage\_FileType.md) = \[\]; -[$storage\_FileType](../types/storage\_FileType.md)\['[storage\_filePartial](storage\_filePartial.md)'\] = +[$storage\_FileType](../types/storage\_FileType.md) = \[\]; -[$storage\_FileType](../types/storage\_FileType.md)\['[storage\_filePdf](storage\_filePdf.md)'\] = +[$storage\_FileType](../types/storage\_FileType.md) = \[\]; -[$storage\_FileType](../types/storage\_FileType.md)\['[storage\_filePng](storage\_filePng.md)'\] = +[$storage\_FileType](../types/storage\_FileType.md) = \[\]; -[$storage\_FileType](../types/storage\_FileType.md)\['[storage\_fileUnknown](storage\_fileUnknown.md)'\] = +[$storage\_FileType](../types/storage\_FileType.md) = \[\]; -[$storage\_FileType](../types/storage\_FileType.md)\['[storage\_fileWebp](storage\_fileWebp.md)'\] = +[$storage\_FileType](../types/storage\_FileType.md) = \[\]; -[$TopPeer](../types/TopPeer.md)\['[topPeer](topPeer.md)'\] = \['peer' => [Peer](../types/Peer.md), 'rating' => [double](../types/double.md), \] +[$TopPeer](../types/TopPeer.md) = \['peer' => [Peer](../types/Peer.md), 'rating' => [double](../types/double.md), \]; -[$TopPeerCategory](../types/TopPeerCategory.md)\['[topPeerCategoryBotsInline](topPeerCategoryBotsInline.md)'\] = +[$TopPeerCategory](../types/TopPeerCategory.md) = \[\]; -[$TopPeerCategory](../types/TopPeerCategory.md)\['[topPeerCategoryBotsPM](topPeerCategoryBotsPM.md)'\] = +[$TopPeerCategory](../types/TopPeerCategory.md) = \[\]; -[$TopPeerCategory](../types/TopPeerCategory.md)\['[topPeerCategoryChannels](topPeerCategoryChannels.md)'\] = +[$TopPeerCategory](../types/TopPeerCategory.md) = \[\]; -[$TopPeerCategory](../types/TopPeerCategory.md)\['[topPeerCategoryCorrespondents](topPeerCategoryCorrespondents.md)'\] = +[$TopPeerCategory](../types/TopPeerCategory.md) = \[\]; -[$TopPeerCategory](../types/TopPeerCategory.md)\['[topPeerCategoryGroups](topPeerCategoryGroups.md)'\] = +[$TopPeerCategory](../types/TopPeerCategory.md) = \[\]; -[$TopPeerCategoryPeers](../types/TopPeerCategoryPeers.md)\['[topPeerCategoryPeers](topPeerCategoryPeers.md)'\] = \['category' => [TopPeerCategory](../types/TopPeerCategory.md), 'count' => [int](../types/int.md), 'peers' => [[TopPeer](../types/TopPeer.md)], \] +[$TopPeerCategoryPeers](../types/TopPeerCategoryPeers.md) = \['category' => [TopPeerCategory](../types/TopPeerCategory.md), 'count' => [int](../types/int.md), 'peers' => [[TopPeer](../types/TopPeer.md)], \]; -[$True](../types/True.md)\['[true](true.md)'\] = +[$True](../types/True.md) = \[\]; -[$Update](../types/Update.md)\['[updateBotCallbackQuery](updateBotCallbackQuery.md)'\] = \['query\_id' => [long](../types/long.md), 'user\_id' => [int](../types/int.md), 'peer' => [Peer](../types/Peer.md), 'msg\_id' => [int](../types/int.md), 'chat\_instance' => [long](../types/long.md), 'data' => [bytes](../types/bytes.md), 'game\_short\_name' => [string](../types/string.md), \] +[$Update](../types/Update.md) = \['query\_id' => [long](../types/long.md), 'user\_id' => [int](../types/int.md), 'peer' => [Peer](../types/Peer.md), 'msg\_id' => [int](../types/int.md), 'chat\_instance' => [long](../types/long.md), 'data' => [bytes](../types/bytes.md), 'game\_short\_name' => [string](../types/string.md), \]; -[$Update](../types/Update.md)\['[updateBotInlineQuery](updateBotInlineQuery.md)'\] = \['query\_id' => [long](../types/long.md), 'user\_id' => [int](../types/int.md), 'query' => [string](../types/string.md), 'geo' => [GeoPoint](../types/GeoPoint.md), 'offset' => [string](../types/string.md), \] +[$Update](../types/Update.md) = \['query\_id' => [long](../types/long.md), 'user\_id' => [int](../types/int.md), 'query' => [string](../types/string.md), 'geo' => [GeoPoint](../types/GeoPoint.md), 'offset' => [string](../types/string.md), \]; -[$Update](../types/Update.md)\['[updateBotInlineSend](updateBotInlineSend.md)'\] = \['user\_id' => [int](../types/int.md), 'query' => [string](../types/string.md), 'geo' => [GeoPoint](../types/GeoPoint.md), 'id' => [string](../types/string.md), 'msg\_id' => [InputBotInlineMessageID](../types/InputBotInlineMessageID.md), \] +[$Update](../types/Update.md) = \['user\_id' => [int](../types/int.md), 'query' => [string](../types/string.md), 'geo' => [GeoPoint](../types/GeoPoint.md), 'id' => [string](../types/string.md), 'msg\_id' => [InputBotInlineMessageID](../types/InputBotInlineMessageID.md), \]; -[$Update](../types/Update.md)\['[updateChannel](updateChannel.md)'\] = \['channel\_id' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['channel\_id' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateChannelMessageViews](updateChannelMessageViews.md)'\] = \['channel\_id' => [int](../types/int.md), 'id' => [int](../types/int.md), 'views' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['channel\_id' => [int](../types/int.md), 'id' => [int](../types/int.md), 'views' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateChannelPinnedMessage](updateChannelPinnedMessage.md)'\] = \['channel\_id' => [int](../types/int.md), 'id' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['channel\_id' => [int](../types/int.md), 'id' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateChannelTooLong](updateChannelTooLong.md)'\] = \['channel\_id' => [int](../types/int.md), 'pts' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['channel\_id' => [int](../types/int.md), 'pts' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateChatAdmins](updateChatAdmins.md)'\] = \['chat\_id' => [int](../types/int.md), 'enabled' => [Bool](../types/Bool.md), 'version' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['chat\_id' => [int](../types/int.md), 'enabled' => [Bool](../types/Bool.md), 'version' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateChatParticipantAdd](updateChatParticipantAdd.md)'\] = \['chat\_id' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), 'inviter\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'version' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['chat\_id' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), 'inviter\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'version' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateChatParticipantAdmin](updateChatParticipantAdmin.md)'\] = \['chat\_id' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), 'is\_admin' => [Bool](../types/Bool.md), 'version' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['chat\_id' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), 'is\_admin' => [Bool](../types/Bool.md), 'version' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateChatParticipantDelete](updateChatParticipantDelete.md)'\] = \['chat\_id' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), 'version' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['chat\_id' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), 'version' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateChatParticipants](updateChatParticipants.md)'\] = \['participants' => [ChatParticipants](../types/ChatParticipants.md), \] +[$Update](../types/Update.md) = \['participants' => [ChatParticipants](../types/ChatParticipants.md), \]; -[$Update](../types/Update.md)\['[updateChatUserTyping](updateChatUserTyping.md)'\] = \['chat\_id' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), 'action' => [SendMessageAction](../types/SendMessageAction.md), \] +[$Update](../types/Update.md) = \['chat\_id' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), 'action' => [SendMessageAction](../types/SendMessageAction.md), \]; -[$Update](../types/Update.md)\['[updateConfig](updateConfig.md)'\] = +[$Update](../types/Update.md) = \[\]; -[$Update](../types/Update.md)\['[updateContactLink](updateContactLink.md)'\] = \['user\_id' => [int](../types/int.md), 'my\_link' => [ContactLink](../types/ContactLink.md), 'foreign\_link' => [ContactLink](../types/ContactLink.md), \] +[$Update](../types/Update.md) = \['user\_id' => [int](../types/int.md), 'my\_link' => [ContactLink](../types/ContactLink.md), 'foreign\_link' => [ContactLink](../types/ContactLink.md), \]; -[$Update](../types/Update.md)\['[updateContactRegistered](updateContactRegistered.md)'\] = \['user\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['user\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateDcOptions](updateDcOptions.md)'\] = \['dc\_options' => [[DcOption](../types/DcOption.md)], \] +[$Update](../types/Update.md) = \['dc\_options' => [[DcOption](../types/DcOption.md)], \]; -[$Update](../types/Update.md)\['[updateDeleteChannelMessages](updateDeleteChannelMessages.md)'\] = \['channel\_id' => [int](../types/int.md), 'messages' => [[int](../types/int.md)], 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['channel\_id' => [int](../types/int.md), 'messages' => [[int](../types/int.md)], 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateDeleteMessages](updateDeleteMessages.md)'\] = \['messages' => [[int](../types/int.md)], 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['messages' => [[int](../types/int.md)], 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateDraftMessage](updateDraftMessage.md)'\] = \['peer' => [Peer](../types/Peer.md), 'draft' => [DraftMessage](../types/DraftMessage.md), \] +[$Update](../types/Update.md) = \['peer' => [Peer](../types/Peer.md), 'draft' => [DraftMessage](../types/DraftMessage.md), \]; -[$Update](../types/Update.md)\['[updateEditChannelMessage](updateEditChannelMessage.md)'\] = \['message' => [Message](../types/Message.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['message' => [Message](../types/Message.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateEditMessage](updateEditMessage.md)'\] = \['message' => [Message](../types/Message.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['message' => [Message](../types/Message.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateEncryptedChatTyping](updateEncryptedChatTyping.md)'\] = \['chat\_id' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['chat\_id' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateEncryptedMessagesRead](updateEncryptedMessagesRead.md)'\] = \['chat\_id' => [int](../types/int.md), 'max\_date' => [int](../types/int.md), 'date' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['chat\_id' => [int](../types/int.md), 'max\_date' => [int](../types/int.md), 'date' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateEncryption](updateEncryption.md)'\] = \['chat' => [EncryptedChat](../types/EncryptedChat.md), 'date' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['chat' => [EncryptedChat](../types/EncryptedChat.md), 'date' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateInlineBotCallbackQuery](updateInlineBotCallbackQuery.md)'\] = \['query\_id' => [long](../types/long.md), 'user\_id' => [int](../types/int.md), 'msg\_id' => [InputBotInlineMessageID](../types/InputBotInlineMessageID.md), 'chat\_instance' => [long](../types/long.md), 'data' => [bytes](../types/bytes.md), 'game\_short\_name' => [string](../types/string.md), \] +[$Update](../types/Update.md) = \['query\_id' => [long](../types/long.md), 'user\_id' => [int](../types/int.md), 'msg\_id' => [InputBotInlineMessageID](../types/InputBotInlineMessageID.md), 'chat\_instance' => [long](../types/long.md), 'data' => [bytes](../types/bytes.md), 'game\_short\_name' => [string](../types/string.md), \]; -[$Update](../types/Update.md)\['[updateMessageID](updateMessageID.md)'\] = \['id' => [int](../types/int.md), 'random\_id' => [long](../types/long.md), \] +[$Update](../types/Update.md) = \['id' => [int](../types/int.md), 'random\_id' => [long](../types/long.md), \]; -[$Update](../types/Update.md)\['[updateNewAuthorization](updateNewAuthorization.md)'\] = \['auth\_key\_id' => [long](../types/long.md), 'date' => [int](../types/int.md), 'device' => [string](../types/string.md), 'location' => [string](../types/string.md), \] +[$Update](../types/Update.md) = \['auth\_key\_id' => [long](../types/long.md), 'date' => [int](../types/int.md), 'device' => [string](../types/string.md), 'location' => [string](../types/string.md), \]; -[$Update](../types/Update.md)\['[updateNewChannelMessage](updateNewChannelMessage.md)'\] = \['message' => [Message](../types/Message.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['message' => [Message](../types/Message.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateNewEncryptedMessage](updateNewEncryptedMessage.md)'\] = \['message' => [EncryptedMessage](../types/EncryptedMessage.md), 'qts' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['message' => [EncryptedMessage](../types/EncryptedMessage.md), 'qts' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateNewMessage](updateNewMessage.md)'\] = \['message' => [Message](../types/Message.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['message' => [Message](../types/Message.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateNewStickerSet](updateNewStickerSet.md)'\] = \['stickerset' => [messages\_StickerSet](../types/messages\_StickerSet.md), \] +[$Update](../types/Update.md) = \['stickerset' => [messages\_StickerSet](../types/messages\_StickerSet.md), \]; -[$Update](../types/Update.md)\['[updateNotifySettings](updateNotifySettings.md)'\] = \['peer' => [NotifyPeer](../types/NotifyPeer.md), 'notify\_settings' => [PeerNotifySettings](../types/PeerNotifySettings.md), \] +[$Update](../types/Update.md) = \['peer' => [NotifyPeer](../types/NotifyPeer.md), 'notify\_settings' => [PeerNotifySettings](../types/PeerNotifySettings.md), \]; -[$Update](../types/Update.md)\['[updatePrivacy](updatePrivacy.md)'\] = \['key' => [PrivacyKey](../types/PrivacyKey.md), 'rules' => [[PrivacyRule](../types/PrivacyRule.md)], \] +[$Update](../types/Update.md) = \['key' => [PrivacyKey](../types/PrivacyKey.md), 'rules' => [[PrivacyRule](../types/PrivacyRule.md)], \]; -[$Update](../types/Update.md)\['[updatePtsChanged](updatePtsChanged.md)'\] = +[$Update](../types/Update.md) = \[\]; -[$Update](../types/Update.md)\['[updateReadChannelInbox](updateReadChannelInbox.md)'\] = \['channel\_id' => [int](../types/int.md), 'max\_id' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['channel\_id' => [int](../types/int.md), 'max\_id' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateReadChannelOutbox](updateReadChannelOutbox.md)'\] = \['channel\_id' => [int](../types/int.md), 'max\_id' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['channel\_id' => [int](../types/int.md), 'max\_id' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateReadFeaturedStickers](updateReadFeaturedStickers.md)'\] = +[$Update](../types/Update.md) = \[\]; -[$Update](../types/Update.md)\['[updateReadHistoryInbox](updateReadHistoryInbox.md)'\] = \['peer' => [Peer](../types/Peer.md), 'max\_id' => [int](../types/int.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['peer' => [Peer](../types/Peer.md), 'max\_id' => [int](../types/int.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateReadHistoryOutbox](updateReadHistoryOutbox.md)'\] = \['peer' => [Peer](../types/Peer.md), 'max\_id' => [int](../types/int.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['peer' => [Peer](../types/Peer.md), 'max\_id' => [int](../types/int.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateReadMessagesContents](updateReadMessagesContents.md)'\] = \['messages' => [[int](../types/int.md)], 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['messages' => [[int](../types/int.md)], 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \]; -[$Update](../types/Update.md)\['[updateRecentStickers](updateRecentStickers.md)'\] = +[$Update](../types/Update.md) = \[\]; -[$Update](../types/Update.md)\['[updateSavedGifs](updateSavedGifs.md)'\] = +[$Update](../types/Update.md) = \[\]; -[$Update](../types/Update.md)\['[updateServiceNotification](updateServiceNotification.md)'\] = \['type' => [string](../types/string.md), 'message' => [string](../types/string.md), 'media' => [MessageMedia](../types/MessageMedia.md), 'popup' => [Bool](../types/Bool.md), \] +[$Update](../types/Update.md) = \['type' => [string](../types/string.md), 'message' => [string](../types/string.md), 'media' => [MessageMedia](../types/MessageMedia.md), 'popup' => [Bool](../types/Bool.md), \]; -[$Updates](../types/Updates.md)\['[updateShort](updateShort.md)'\] = \['update' => [Update](../types/Update.md), 'date' => [int](../types/int.md), \] +[$Updates](../types/Updates.md) = \['update' => [Update](../types/Update.md), 'date' => [int](../types/int.md), \]; -[$Updates](../types/Updates.md)\['[updateShortChatMessage](updateShortChatMessage.md)'\] = \['out' => [Bool](../types/Bool.md), 'mentioned' => [Bool](../types/Bool.md), 'media\_unread' => [Bool](../types/Bool.md), 'silent' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'from\_id' => [int](../types/int.md), 'chat\_id' => [int](../types/int.md), 'message' => [string](../types/string.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), 'date' => [int](../types/int.md), 'fwd\_from' => [MessageFwdHeader](../types/MessageFwdHeader.md), 'via\_bot\_id' => [int](../types/int.md), 'reply\_to\_msg\_id' => [int](../types/int.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], \] +[$Updates](../types/Updates.md) = \['out' => [Bool](../types/Bool.md), 'mentioned' => [Bool](../types/Bool.md), 'media\_unread' => [Bool](../types/Bool.md), 'silent' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'from\_id' => [int](../types/int.md), 'chat\_id' => [int](../types/int.md), 'message' => [string](../types/string.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), 'date' => [int](../types/int.md), 'fwd\_from' => [MessageFwdHeader](../types/MessageFwdHeader.md), 'via\_bot\_id' => [int](../types/int.md), 'reply\_to\_msg\_id' => [int](../types/int.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], \]; -[$Updates](../types/Updates.md)\['[updateShortMessage](updateShortMessage.md)'\] = \['out' => [Bool](../types/Bool.md), 'mentioned' => [Bool](../types/Bool.md), 'media\_unread' => [Bool](../types/Bool.md), 'silent' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), 'message' => [string](../types/string.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), 'date' => [int](../types/int.md), 'fwd\_from' => [MessageFwdHeader](../types/MessageFwdHeader.md), 'via\_bot\_id' => [int](../types/int.md), 'reply\_to\_msg\_id' => [int](../types/int.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], \] +[$Updates](../types/Updates.md) = \['out' => [Bool](../types/Bool.md), 'mentioned' => [Bool](../types/Bool.md), 'media\_unread' => [Bool](../types/Bool.md), 'silent' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'user\_id' => [int](../types/int.md), 'message' => [string](../types/string.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), 'date' => [int](../types/int.md), 'fwd\_from' => [MessageFwdHeader](../types/MessageFwdHeader.md), 'via\_bot\_id' => [int](../types/int.md), 'reply\_to\_msg\_id' => [int](../types/int.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], \]; -[$Updates](../types/Updates.md)\['[updateShortSentMessage](updateShortSentMessage.md)'\] = \['out' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), 'date' => [int](../types/int.md), 'media' => [MessageMedia](../types/MessageMedia.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], \] +[$Updates](../types/Updates.md) = \['out' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), 'date' => [int](../types/int.md), 'media' => [MessageMedia](../types/MessageMedia.md), 'entities' => [[MessageEntity](../types/MessageEntity.md)], \]; -[$Update](../types/Update.md)\['[updateStickerSets](updateStickerSets.md)'\] = +[$Update](../types/Update.md) = \[\]; -[$Update](../types/Update.md)\['[updateStickerSetsOrder](updateStickerSetsOrder.md)'\] = \['masks' => [Bool](../types/Bool.md), 'order' => [[long](../types/long.md)], \] +[$Update](../types/Update.md) = \['masks' => [Bool](../types/Bool.md), 'order' => [[long](../types/long.md)], \]; -[$Update](../types/Update.md)\['[updateUserBlocked](updateUserBlocked.md)'\] = \['user\_id' => [int](../types/int.md), 'blocked' => [Bool](../types/Bool.md), \] +[$Update](../types/Update.md) = \['user\_id' => [int](../types/int.md), 'blocked' => [Bool](../types/Bool.md), \]; -[$Update](../types/Update.md)\['[updateUserName](updateUserName.md)'\] = \['user\_id' => [int](../types/int.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), 'username' => [string](../types/string.md), \] +[$Update](../types/Update.md) = \['user\_id' => [int](../types/int.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), 'username' => [string](../types/string.md), \]; -[$Update](../types/Update.md)\['[updateUserPhone](updateUserPhone.md)'\] = \['user\_id' => [int](../types/int.md), 'phone' => [string](../types/string.md), \] +[$Update](../types/Update.md) = \['user\_id' => [int](../types/int.md), 'phone' => [string](../types/string.md), \]; -[$Update](../types/Update.md)\['[updateUserPhoto](updateUserPhoto.md)'\] = \['user\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'photo' => [UserProfilePhoto](../types/UserProfilePhoto.md), 'previous' => [Bool](../types/Bool.md), \] +[$Update](../types/Update.md) = \['user\_id' => [int](../types/int.md), 'date' => [int](../types/int.md), 'photo' => [UserProfilePhoto](../types/UserProfilePhoto.md), 'previous' => [Bool](../types/Bool.md), \]; -[$Update](../types/Update.md)\['[updateUserStatus](updateUserStatus.md)'\] = \['user\_id' => [int](../types/int.md), 'status' => [UserStatus](../types/UserStatus.md), \] +[$Update](../types/Update.md) = \['user\_id' => [int](../types/int.md), 'status' => [UserStatus](../types/UserStatus.md), \]; -[$Update](../types/Update.md)\['[updateUserTyping](updateUserTyping.md)'\] = \['user\_id' => [int](../types/int.md), 'action' => [SendMessageAction](../types/SendMessageAction.md), \] +[$Update](../types/Update.md) = \['user\_id' => [int](../types/int.md), 'action' => [SendMessageAction](../types/SendMessageAction.md), \]; -[$Update](../types/Update.md)\['[updateWebPage](updateWebPage.md)'\] = \['webpage' => [WebPage](../types/WebPage.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \] +[$Update](../types/Update.md) = \['webpage' => [WebPage](../types/WebPage.md), 'pts' => [int](../types/int.md), 'pts\_count' => [int](../types/int.md), \]; -[$Updates](../types/Updates.md)\['[updates](updates.md)'\] = \['updates' => [[Update](../types/Update.md)], 'users' => [[User](../types/User.md)], 'chats' => [[Chat](../types/Chat.md)], 'date' => [int](../types/int.md), 'seq' => [int](../types/int.md), \] +[$Updates](../types/Updates.md) = \['updates' => [[Update](../types/Update.md)], 'users' => [[User](../types/User.md)], 'chats' => [[Chat](../types/Chat.md)], 'date' => [int](../types/int.md), 'seq' => [int](../types/int.md), \]; -[$Updates](../types/Updates.md)\['[updatesCombined](updatesCombined.md)'\] = \['updates' => [[Update](../types/Update.md)], 'users' => [[User](../types/User.md)], 'chats' => [[Chat](../types/Chat.md)], 'date' => [int](../types/int.md), 'seq\_start' => [int](../types/int.md), 'seq' => [int](../types/int.md), \] +[$Updates](../types/Updates.md) = \['updates' => [[Update](../types/Update.md)], 'users' => [[User](../types/User.md)], 'chats' => [[Chat](../types/Chat.md)], 'date' => [int](../types/int.md), 'seq\_start' => [int](../types/int.md), 'seq' => [int](../types/int.md), \]; -[$Updates](../types/Updates.md)\['[updatesTooLong](updatesTooLong.md)'\] = +[$Updates](../types/Updates.md) = \[\]; -[$updates\_ChannelDifference](../types/updates\_ChannelDifference.md)\['[updates\_channelDifference](updates\_channelDifference.md)'\] = \['final' => [Bool](../types/Bool.md), 'pts' => [int](../types/int.md), 'timeout' => [int](../types/int.md), 'new\_messages' => [[Message](../types/Message.md)], 'other\_updates' => [[Update](../types/Update.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \] +[$updates\_ChannelDifference](../types/updates\_ChannelDifference.md) = \['final' => [Bool](../types/Bool.md), 'pts' => [int](../types/int.md), 'timeout' => [int](../types/int.md), 'new\_messages' => [[Message](../types/Message.md)], 'other\_updates' => [[Update](../types/Update.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \]; -[$updates\_ChannelDifference](../types/updates\_ChannelDifference.md)\['[updates\_channelDifferenceEmpty](updates\_channelDifferenceEmpty.md)'\] = \['final' => [Bool](../types/Bool.md), 'pts' => [int](../types/int.md), 'timeout' => [int](../types/int.md), \] +[$updates\_ChannelDifference](../types/updates\_ChannelDifference.md) = \['final' => [Bool](../types/Bool.md), 'pts' => [int](../types/int.md), 'timeout' => [int](../types/int.md), \]; -[$updates\_ChannelDifference](../types/updates\_ChannelDifference.md)\['[updates\_channelDifferenceTooLong](updates\_channelDifferenceTooLong.md)'\] = \['final' => [Bool](../types/Bool.md), 'pts' => [int](../types/int.md), 'timeout' => [int](../types/int.md), 'top\_message' => [int](../types/int.md), 'read\_inbox\_max\_id' => [int](../types/int.md), 'read\_outbox\_max\_id' => [int](../types/int.md), 'unread\_count' => [int](../types/int.md), 'messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \] +[$updates\_ChannelDifference](../types/updates\_ChannelDifference.md) = \['final' => [Bool](../types/Bool.md), 'pts' => [int](../types/int.md), 'timeout' => [int](../types/int.md), 'top\_message' => [int](../types/int.md), 'read\_inbox\_max\_id' => [int](../types/int.md), 'read\_outbox\_max\_id' => [int](../types/int.md), 'unread\_count' => [int](../types/int.md), 'messages' => [[Message](../types/Message.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], \]; -[$updates\_Difference](../types/updates\_Difference.md)\['[updates\_difference](updates\_difference.md)'\] = \['new\_messages' => [[Message](../types/Message.md)], 'new\_encrypted\_messages' => [[EncryptedMessage](../types/EncryptedMessage.md)], 'other\_updates' => [[Update](../types/Update.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], 'state' => [updates\_State](../types/updates\_State.md), \] +[$updates\_Difference](../types/updates\_Difference.md) = \['new\_messages' => [[Message](../types/Message.md)], 'new\_encrypted\_messages' => [[EncryptedMessage](../types/EncryptedMessage.md)], 'other\_updates' => [[Update](../types/Update.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], 'state' => [updates\_State](../types/updates\_State.md), \]; -[$updates\_Difference](../types/updates\_Difference.md)\['[updates\_differenceEmpty](updates\_differenceEmpty.md)'\] = \['date' => [int](../types/int.md), 'seq' => [int](../types/int.md), \] +[$updates\_Difference](../types/updates\_Difference.md) = \['date' => [int](../types/int.md), 'seq' => [int](../types/int.md), \]; -[$updates\_Difference](../types/updates\_Difference.md)\['[updates\_differenceSlice](updates\_differenceSlice.md)'\] = \['new\_messages' => [[Message](../types/Message.md)], 'new\_encrypted\_messages' => [[EncryptedMessage](../types/EncryptedMessage.md)], 'other\_updates' => [[Update](../types/Update.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], 'intermediate\_state' => [updates\_State](../types/updates\_State.md), \] +[$updates\_Difference](../types/updates\_Difference.md) = \['new\_messages' => [[Message](../types/Message.md)], 'new\_encrypted\_messages' => [[EncryptedMessage](../types/EncryptedMessage.md)], 'other\_updates' => [[Update](../types/Update.md)], 'chats' => [[Chat](../types/Chat.md)], 'users' => [[User](../types/User.md)], 'intermediate\_state' => [updates\_State](../types/updates\_State.md), \]; -[$updates\_State](../types/updates\_State.md)\['[updates\_state](updates\_state.md)'\] = \['pts' => [int](../types/int.md), 'qts' => [int](../types/int.md), 'date' => [int](../types/int.md), 'seq' => [int](../types/int.md), 'unread\_count' => [int](../types/int.md), \] +[$updates\_State](../types/updates\_State.md) = \['pts' => [int](../types/int.md), 'qts' => [int](../types/int.md), 'date' => [int](../types/int.md), 'seq' => [int](../types/int.md), 'unread\_count' => [int](../types/int.md), \]; -[$upload\_File](../types/upload\_File.md)\['[upload\_file](upload\_file.md)'\] = \['type' => [storage\_FileType](../types/storage\_FileType.md), 'mtime' => [int](../types/int.md), 'bytes' => [bytes](../types/bytes.md), \] +[$upload\_File](../types/upload\_File.md) = \['type' => [storage\_FileType](../types/storage\_FileType.md), 'mtime' => [int](../types/int.md), 'bytes' => [bytes](../types/bytes.md), \]; -[$User](../types/User.md)\['[user](user.md)'\] = \['self' => [Bool](../types/Bool.md), 'contact' => [Bool](../types/Bool.md), 'mutual\_contact' => [Bool](../types/Bool.md), 'deleted' => [Bool](../types/Bool.md), 'bot' => [Bool](../types/Bool.md), 'bot\_chat\_history' => [Bool](../types/Bool.md), 'bot\_nochats' => [Bool](../types/Bool.md), 'verified' => [Bool](../types/Bool.md), 'restricted' => [Bool](../types/Bool.md), 'min' => [Bool](../types/Bool.md), 'bot\_inline\_geo' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), 'username' => [string](../types/string.md), 'phone' => [string](../types/string.md), 'photo' => [UserProfilePhoto](../types/UserProfilePhoto.md), 'status' => [UserStatus](../types/UserStatus.md), 'bot\_info\_version' => [int](../types/int.md), 'restriction\_reason' => [string](../types/string.md), 'bot\_inline\_placeholder' => [string](../types/string.md), \] +[$User](../types/User.md) = \['self' => [Bool](../types/Bool.md), 'contact' => [Bool](../types/Bool.md), 'mutual\_contact' => [Bool](../types/Bool.md), 'deleted' => [Bool](../types/Bool.md), 'bot' => [Bool](../types/Bool.md), 'bot\_chat\_history' => [Bool](../types/Bool.md), 'bot\_nochats' => [Bool](../types/Bool.md), 'verified' => [Bool](../types/Bool.md), 'restricted' => [Bool](../types/Bool.md), 'min' => [Bool](../types/Bool.md), 'bot\_inline\_geo' => [Bool](../types/Bool.md), 'id' => [int](../types/int.md), 'access\_hash' => [long](../types/long.md), 'first\_name' => [string](../types/string.md), 'last\_name' => [string](../types/string.md), 'username' => [string](../types/string.md), 'phone' => [string](../types/string.md), 'photo' => [UserProfilePhoto](../types/UserProfilePhoto.md), 'status' => [UserStatus](../types/UserStatus.md), 'bot\_info\_version' => [int](../types/int.md), 'restriction\_reason' => [string](../types/string.md), 'bot\_inline\_placeholder' => [string](../types/string.md), \]; -[$User](../types/User.md)\['[userEmpty](userEmpty.md)'\] = \['id' => [int](../types/int.md), \] +[$User](../types/User.md) = \['id' => [int](../types/int.md), \]; -[$UserFull](../types/UserFull.md)\['[userFull](userFull.md)'\] = \['blocked' => [Bool](../types/Bool.md), 'user' => [User](../types/User.md), 'about' => [string](../types/string.md), 'link' => [contacts\_Link](../types/contacts\_Link.md), 'profile\_photo' => [Photo](../types/Photo.md), 'notify\_settings' => [PeerNotifySettings](../types/PeerNotifySettings.md), 'bot\_info' => [BotInfo](../types/BotInfo.md), \] +[$UserFull](../types/UserFull.md) = \['blocked' => [Bool](../types/Bool.md), 'user' => [User](../types/User.md), 'about' => [string](../types/string.md), 'link' => [contacts\_Link](../types/contacts\_Link.md), 'profile\_photo' => [Photo](../types/Photo.md), 'notify\_settings' => [PeerNotifySettings](../types/PeerNotifySettings.md), 'bot\_info' => [BotInfo](../types/BotInfo.md), \]; -[$UserProfilePhoto](../types/UserProfilePhoto.md)\['[userProfilePhoto](userProfilePhoto.md)'\] = \['photo\_id' => [long](../types/long.md), 'photo\_small' => [FileLocation](../types/FileLocation.md), 'photo\_big' => [FileLocation](../types/FileLocation.md), \] +[$UserProfilePhoto](../types/UserProfilePhoto.md) = \['photo\_id' => [long](../types/long.md), 'photo\_small' => [FileLocation](../types/FileLocation.md), 'photo\_big' => [FileLocation](../types/FileLocation.md), \]; -[$UserProfilePhoto](../types/UserProfilePhoto.md)\['[userProfilePhotoEmpty](userProfilePhotoEmpty.md)'\] = +[$UserProfilePhoto](../types/UserProfilePhoto.md) = \[\]; -[$UserStatus](../types/UserStatus.md)\['[userStatusEmpty](userStatusEmpty.md)'\] = +[$UserStatus](../types/UserStatus.md) = \[\]; -[$UserStatus](../types/UserStatus.md)\['[userStatusLastMonth](userStatusLastMonth.md)'\] = +[$UserStatus](../types/UserStatus.md) = \[\]; -[$UserStatus](../types/UserStatus.md)\['[userStatusLastWeek](userStatusLastWeek.md)'\] = +[$UserStatus](../types/UserStatus.md) = \[\]; -[$UserStatus](../types/UserStatus.md)\['[userStatusOffline](userStatusOffline.md)'\] = \['was\_online' => [int](../types/int.md), \] +[$UserStatus](../types/UserStatus.md) = \['was\_online' => [int](../types/int.md), \]; -[$UserStatus](../types/UserStatus.md)\['[userStatusOnline](userStatusOnline.md)'\] = \['expires' => [int](../types/int.md), \] +[$UserStatus](../types/UserStatus.md) = \['expires' => [int](../types/int.md), \]; -[$UserStatus](../types/UserStatus.md)\['[userStatusRecently](userStatusRecently.md)'\] = +[$UserStatus](../types/UserStatus.md) = \[\]; -[$Vector t](../types/Vector t.md)\['[vector](vector.md)'\] = +[$Vector t](../types/Vector t.md) = \[\]; -[$WallPaper](../types/WallPaper.md)\['[wallPaper](wallPaper.md)'\] = \['id' => [int](../types/int.md), 'title' => [string](../types/string.md), 'sizes' => [[PhotoSize](../types/PhotoSize.md)], 'color' => [int](../types/int.md), \] +[$WallPaper](../types/WallPaper.md) = \['id' => [int](../types/int.md), 'title' => [string](../types/string.md), 'sizes' => [[PhotoSize](../types/PhotoSize.md)], 'color' => [int](../types/int.md), \]; -[$WallPaper](../types/WallPaper.md)\['[wallPaperSolid](wallPaperSolid.md)'\] = \['id' => [int](../types/int.md), 'title' => [string](../types/string.md), 'bg\_color' => [int](../types/int.md), 'color' => [int](../types/int.md), \] +[$WallPaper](../types/WallPaper.md) = \['id' => [int](../types/int.md), 'title' => [string](../types/string.md), 'bg\_color' => [int](../types/int.md), 'color' => [int](../types/int.md), \]; -[$WebPage](../types/WebPage.md)\['[webPage](webPage.md)'\] = \['id' => [long](../types/long.md), 'url' => [string](../types/string.md), 'display\_url' => [string](../types/string.md), 'type' => [string](../types/string.md), 'site\_name' => [string](../types/string.md), 'title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'photo' => [Photo](../types/Photo.md), 'embed\_url' => [string](../types/string.md), 'embed\_type' => [string](../types/string.md), 'embed\_width' => [int](../types/int.md), 'embed\_height' => [int](../types/int.md), 'duration' => [int](../types/int.md), 'author' => [string](../types/string.md), 'document' => [Document](../types/Document.md), \] +[$WebPage](../types/WebPage.md) = \['id' => [long](../types/long.md), 'url' => [string](../types/string.md), 'display\_url' => [string](../types/string.md), 'type' => [string](../types/string.md), 'site\_name' => [string](../types/string.md), 'title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'photo' => [Photo](../types/Photo.md), 'embed\_url' => [string](../types/string.md), 'embed\_type' => [string](../types/string.md), 'embed\_width' => [int](../types/int.md), 'embed\_height' => [int](../types/int.md), 'duration' => [int](../types/int.md), 'author' => [string](../types/string.md), 'document' => [Document](../types/Document.md), \]; -[$WebPage](../types/WebPage.md)\['[webPageEmpty](webPageEmpty.md)'\] = \['id' => [long](../types/long.md), \] +[$WebPage](../types/WebPage.md) = \['id' => [long](../types/long.md), \]; -[$WebPage](../types/WebPage.md)\['[webPagePending](webPagePending.md)'\] = \['id' => [long](../types/long.md), 'date' => [int](../types/int.md), \] +[$WebPage](../types/WebPage.md) = \['id' => [long](../types/long.md), 'date' => [int](../types/int.md), \]; diff --git a/docs/API_docs/constructors/inlineBotSwitchPM.md b/docs/API_docs/constructors/inlineBotSwitchPM.md index e2c38de4..27c11a69 100644 --- a/docs/API_docs/constructors/inlineBotSwitchPM.md +++ b/docs/API_docs/constructors/inlineBotSwitchPM.md @@ -14,5 +14,5 @@ ``` -$inlineBotSwitchPM = ['text' => string, 'start_param' => string, ]; +$inlineBotSwitchPM = ['_' => inlineBotSwitchPM', 'text' => string, 'start_param' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputAppEvent.md b/docs/API_docs/constructors/inputAppEvent.md index 6ebbdfbd..a1b4f5fe 100644 --- a/docs/API_docs/constructors/inputAppEvent.md +++ b/docs/API_docs/constructors/inputAppEvent.md @@ -16,5 +16,5 @@ ``` -$inputAppEvent = ['time' => double, 'type' => string, 'peer' => long, 'data' => string, ]; +$inputAppEvent = ['_' => inputAppEvent', 'time' => double, 'type' => string, 'peer' => long, 'data' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputBotInlineMessageGame.md b/docs/API_docs/constructors/inputBotInlineMessageGame.md index b2cedf5d..12b813b6 100644 --- a/docs/API_docs/constructors/inputBotInlineMessageGame.md +++ b/docs/API_docs/constructors/inputBotInlineMessageGame.md @@ -13,5 +13,5 @@ ``` -$inputBotInlineMessageGame = ['reply_markup' => ReplyMarkup, ]; +$inputBotInlineMessageGame = ['_' => inputBotInlineMessageGame', 'reply_markup' => ReplyMarkup, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputBotInlineMessageID.md b/docs/API_docs/constructors/inputBotInlineMessageID.md index e48c4513..f20e5773 100644 --- a/docs/API_docs/constructors/inputBotInlineMessageID.md +++ b/docs/API_docs/constructors/inputBotInlineMessageID.md @@ -15,5 +15,5 @@ ``` -$inputBotInlineMessageID = ['dc_id' => int, 'id' => long, 'access_hash' => long, ]; +$inputBotInlineMessageID = ['_' => inputBotInlineMessageID', 'dc_id' => int, 'id' => long, 'access_hash' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputBotInlineMessageMediaAuto.md b/docs/API_docs/constructors/inputBotInlineMessageMediaAuto.md index 2ba617b1..3714ae4f 100644 --- a/docs/API_docs/constructors/inputBotInlineMessageMediaAuto.md +++ b/docs/API_docs/constructors/inputBotInlineMessageMediaAuto.md @@ -14,5 +14,5 @@ ``` -$inputBotInlineMessageMediaAuto = ['caption' => string, 'reply_markup' => ReplyMarkup, ]; +$inputBotInlineMessageMediaAuto = ['_' => inputBotInlineMessageMediaAuto', 'caption' => string, 'reply_markup' => ReplyMarkup, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputBotInlineMessageMediaContact.md b/docs/API_docs/constructors/inputBotInlineMessageMediaContact.md index 1376ebbb..9056b00b 100644 --- a/docs/API_docs/constructors/inputBotInlineMessageMediaContact.md +++ b/docs/API_docs/constructors/inputBotInlineMessageMediaContact.md @@ -16,5 +16,5 @@ ``` -$inputBotInlineMessageMediaContact = ['phone_number' => string, 'first_name' => string, 'last_name' => string, 'reply_markup' => ReplyMarkup, ]; +$inputBotInlineMessageMediaContact = ['_' => inputBotInlineMessageMediaContact', 'phone_number' => string, 'first_name' => string, 'last_name' => string, 'reply_markup' => ReplyMarkup, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputBotInlineMessageMediaGeo.md b/docs/API_docs/constructors/inputBotInlineMessageMediaGeo.md index 5772ad78..03e0d616 100644 --- a/docs/API_docs/constructors/inputBotInlineMessageMediaGeo.md +++ b/docs/API_docs/constructors/inputBotInlineMessageMediaGeo.md @@ -14,5 +14,5 @@ ``` -$inputBotInlineMessageMediaGeo = ['geo_point' => InputGeoPoint, 'reply_markup' => ReplyMarkup, ]; +$inputBotInlineMessageMediaGeo = ['_' => inputBotInlineMessageMediaGeo', 'geo_point' => InputGeoPoint, 'reply_markup' => ReplyMarkup, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputBotInlineMessageMediaVenue.md b/docs/API_docs/constructors/inputBotInlineMessageMediaVenue.md index e2a9e9a6..8301f35f 100644 --- a/docs/API_docs/constructors/inputBotInlineMessageMediaVenue.md +++ b/docs/API_docs/constructors/inputBotInlineMessageMediaVenue.md @@ -18,5 +18,5 @@ ``` -$inputBotInlineMessageMediaVenue = ['geo_point' => InputGeoPoint, 'title' => string, 'address' => string, 'provider' => string, 'venue_id' => string, 'reply_markup' => ReplyMarkup, ]; +$inputBotInlineMessageMediaVenue = ['_' => inputBotInlineMessageMediaVenue', 'geo_point' => InputGeoPoint, 'title' => string, 'address' => string, 'provider' => string, 'venue_id' => string, 'reply_markup' => ReplyMarkup, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputBotInlineMessageText.md b/docs/API_docs/constructors/inputBotInlineMessageText.md index df731486..f9881577 100644 --- a/docs/API_docs/constructors/inputBotInlineMessageText.md +++ b/docs/API_docs/constructors/inputBotInlineMessageText.md @@ -16,5 +16,5 @@ ``` -$inputBotInlineMessageText = ['no_webpage' => Bool, 'message' => string, 'entities' => [MessageEntity], 'reply_markup' => ReplyMarkup, ]; +$inputBotInlineMessageText = ['_' => inputBotInlineMessageText', 'no_webpage' => true, 'message' => string, 'entities' => [Vector t], 'reply_markup' => ReplyMarkup, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputBotInlineResult.md b/docs/API_docs/constructors/inputBotInlineResult.md index e092f6cf..158a5823 100644 --- a/docs/API_docs/constructors/inputBotInlineResult.md +++ b/docs/API_docs/constructors/inputBotInlineResult.md @@ -24,5 +24,5 @@ ``` -$inputBotInlineResult = ['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' => InputBotInlineMessage, ]; +$inputBotInlineResult = ['_' => inputBotInlineResult', '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' => InputBotInlineMessage, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputBotInlineResultDocument.md b/docs/API_docs/constructors/inputBotInlineResultDocument.md index 070b53a3..8418e101 100644 --- a/docs/API_docs/constructors/inputBotInlineResultDocument.md +++ b/docs/API_docs/constructors/inputBotInlineResultDocument.md @@ -18,5 +18,5 @@ ``` -$inputBotInlineResultDocument = ['id' => string, 'type' => string, 'title' => string, 'description' => string, 'document' => InputDocument, 'send_message' => InputBotInlineMessage, ]; +$inputBotInlineResultDocument = ['_' => inputBotInlineResultDocument', 'id' => string, 'type' => string, 'title' => string, 'description' => string, 'document' => InputDocument, 'send_message' => InputBotInlineMessage, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputBotInlineResultGame.md b/docs/API_docs/constructors/inputBotInlineResultGame.md index 717721e5..27f8a632 100644 --- a/docs/API_docs/constructors/inputBotInlineResultGame.md +++ b/docs/API_docs/constructors/inputBotInlineResultGame.md @@ -15,5 +15,5 @@ ``` -$inputBotInlineResultGame = ['id' => string, 'short_name' => string, 'send_message' => InputBotInlineMessage, ]; +$inputBotInlineResultGame = ['_' => inputBotInlineResultGame', 'id' => string, 'short_name' => string, 'send_message' => InputBotInlineMessage, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputBotInlineResultPhoto.md b/docs/API_docs/constructors/inputBotInlineResultPhoto.md index 17c659e7..2774fbfc 100644 --- a/docs/API_docs/constructors/inputBotInlineResultPhoto.md +++ b/docs/API_docs/constructors/inputBotInlineResultPhoto.md @@ -16,5 +16,5 @@ ``` -$inputBotInlineResultPhoto = ['id' => string, 'type' => string, 'photo' => InputPhoto, 'send_message' => InputBotInlineMessage, ]; +$inputBotInlineResultPhoto = ['_' => inputBotInlineResultPhoto', 'id' => string, 'type' => string, 'photo' => InputPhoto, 'send_message' => InputBotInlineMessage, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputChannel.md b/docs/API_docs/constructors/inputChannel.md index d72ae335..b8adc1b0 100644 --- a/docs/API_docs/constructors/inputChannel.md +++ b/docs/API_docs/constructors/inputChannel.md @@ -14,5 +14,5 @@ ``` -$inputChannel = ['channel_id' => int, 'access_hash' => long, ]; +$inputChannel = ['_' => inputChannel', 'channel_id' => int, 'access_hash' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputChannelEmpty.md b/docs/API_docs/constructors/inputChannelEmpty.md index 72638b5e..a8c1ee01 100644 --- a/docs/API_docs/constructors/inputChannelEmpty.md +++ b/docs/API_docs/constructors/inputChannelEmpty.md @@ -1,9 +1,5 @@ ## Constructor: inputChannelEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputChannel](../types/InputChannel.md) @@ -12,5 +8,5 @@ ``` -$inputChannelEmpty = ; +$inputChannelEmpty = ['_' => inputChannelEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputChatPhoto.md b/docs/API_docs/constructors/inputChatPhoto.md index 74667826..f300caf6 100644 --- a/docs/API_docs/constructors/inputChatPhoto.md +++ b/docs/API_docs/constructors/inputChatPhoto.md @@ -13,5 +13,5 @@ ``` -$inputChatPhoto = ['id' => InputPhoto, ]; +$inputChatPhoto = ['_' => inputChatPhoto', 'id' => InputPhoto, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputChatPhotoEmpty.md b/docs/API_docs/constructors/inputChatPhotoEmpty.md index 5a65a1ed..2fa27cc8 100644 --- a/docs/API_docs/constructors/inputChatPhotoEmpty.md +++ b/docs/API_docs/constructors/inputChatPhotoEmpty.md @@ -1,9 +1,5 @@ ## Constructor: inputChatPhotoEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputChatPhoto](../types/InputChatPhoto.md) @@ -12,5 +8,5 @@ ``` -$inputChatPhotoEmpty = ; +$inputChatPhotoEmpty = ['_' => inputChatPhotoEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputChatUploadedPhoto.md b/docs/API_docs/constructors/inputChatUploadedPhoto.md index 4572af3e..0034e97c 100644 --- a/docs/API_docs/constructors/inputChatUploadedPhoto.md +++ b/docs/API_docs/constructors/inputChatUploadedPhoto.md @@ -13,5 +13,5 @@ ``` -$inputChatUploadedPhoto = ['file' => InputFile, ]; +$inputChatUploadedPhoto = ['_' => inputChatUploadedPhoto', 'file' => InputFile, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputDocument.md b/docs/API_docs/constructors/inputDocument.md index 1a1c7aef..36554b51 100644 --- a/docs/API_docs/constructors/inputDocument.md +++ b/docs/API_docs/constructors/inputDocument.md @@ -14,5 +14,5 @@ ``` -$inputDocument = ['id' => long, 'access_hash' => long, ]; +$inputDocument = ['_' => inputDocument', 'id' => long, 'access_hash' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputDocumentEmpty.md b/docs/API_docs/constructors/inputDocumentEmpty.md index ea03e2e3..2a78d7ad 100644 --- a/docs/API_docs/constructors/inputDocumentEmpty.md +++ b/docs/API_docs/constructors/inputDocumentEmpty.md @@ -1,9 +1,5 @@ ## Constructor: inputDocumentEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputDocument](../types/InputDocument.md) @@ -12,5 +8,5 @@ ``` -$inputDocumentEmpty = ; +$inputDocumentEmpty = ['_' => inputDocumentEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputDocumentFileLocation.md b/docs/API_docs/constructors/inputDocumentFileLocation.md index d146d976..2847ee82 100644 --- a/docs/API_docs/constructors/inputDocumentFileLocation.md +++ b/docs/API_docs/constructors/inputDocumentFileLocation.md @@ -15,5 +15,5 @@ ``` -$inputDocumentFileLocation = ['id' => long, 'access_hash' => long, 'version' => int, ]; +$inputDocumentFileLocation = ['_' => inputDocumentFileLocation', 'id' => long, 'access_hash' => long, 'version' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputEncryptedChat.md b/docs/API_docs/constructors/inputEncryptedChat.md index cb6c15ad..f73cb4af 100644 --- a/docs/API_docs/constructors/inputEncryptedChat.md +++ b/docs/API_docs/constructors/inputEncryptedChat.md @@ -14,5 +14,5 @@ ``` -$inputEncryptedChat = ['chat_id' => int, 'access_hash' => long, ]; +$inputEncryptedChat = ['_' => inputEncryptedChat', 'chat_id' => int, 'access_hash' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputEncryptedFile.md b/docs/API_docs/constructors/inputEncryptedFile.md index f2ea1c46..03cf653e 100644 --- a/docs/API_docs/constructors/inputEncryptedFile.md +++ b/docs/API_docs/constructors/inputEncryptedFile.md @@ -14,5 +14,5 @@ ``` -$inputEncryptedFile = ['id' => long, 'access_hash' => long, ]; +$inputEncryptedFile = ['_' => inputEncryptedFile', 'id' => long, 'access_hash' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputEncryptedFileBigUploaded.md b/docs/API_docs/constructors/inputEncryptedFileBigUploaded.md index c27e18d9..7f4f0b9f 100644 --- a/docs/API_docs/constructors/inputEncryptedFileBigUploaded.md +++ b/docs/API_docs/constructors/inputEncryptedFileBigUploaded.md @@ -15,5 +15,5 @@ ``` -$inputEncryptedFileBigUploaded = ['id' => long, 'parts' => int, 'key_fingerprint' => int, ]; +$inputEncryptedFileBigUploaded = ['_' => inputEncryptedFileBigUploaded', 'id' => long, 'parts' => int, 'key_fingerprint' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputEncryptedFileEmpty.md b/docs/API_docs/constructors/inputEncryptedFileEmpty.md index df7e1ee8..2350d078 100644 --- a/docs/API_docs/constructors/inputEncryptedFileEmpty.md +++ b/docs/API_docs/constructors/inputEncryptedFileEmpty.md @@ -1,9 +1,5 @@ ## Constructor: inputEncryptedFileEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputEncryptedFile](../types/InputEncryptedFile.md) @@ -12,5 +8,5 @@ ``` -$inputEncryptedFileEmpty = ; +$inputEncryptedFileEmpty = ['_' => inputEncryptedFileEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputEncryptedFileLocation.md b/docs/API_docs/constructors/inputEncryptedFileLocation.md index 27f57c0e..24a026b3 100644 --- a/docs/API_docs/constructors/inputEncryptedFileLocation.md +++ b/docs/API_docs/constructors/inputEncryptedFileLocation.md @@ -14,5 +14,5 @@ ``` -$inputEncryptedFileLocation = ['id' => long, 'access_hash' => long, ]; +$inputEncryptedFileLocation = ['_' => inputEncryptedFileLocation', 'id' => long, 'access_hash' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputEncryptedFileUploaded.md b/docs/API_docs/constructors/inputEncryptedFileUploaded.md index f7c5b539..1f0fbcf7 100644 --- a/docs/API_docs/constructors/inputEncryptedFileUploaded.md +++ b/docs/API_docs/constructors/inputEncryptedFileUploaded.md @@ -16,5 +16,5 @@ ``` -$inputEncryptedFileUploaded = ['id' => long, 'parts' => int, 'md5_checksum' => string, 'key_fingerprint' => int, ]; +$inputEncryptedFileUploaded = ['_' => inputEncryptedFileUploaded', 'id' => long, 'parts' => int, 'md5_checksum' => string, 'key_fingerprint' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputFile.md b/docs/API_docs/constructors/inputFile.md index 4fe8f684..91105734 100644 --- a/docs/API_docs/constructors/inputFile.md +++ b/docs/API_docs/constructors/inputFile.md @@ -16,5 +16,5 @@ ``` -$inputFile = ['id' => long, 'parts' => int, 'name' => string, 'md5_checksum' => string, ]; +$inputFile = ['_' => inputFile', 'id' => long, 'parts' => int, 'name' => string, 'md5_checksum' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputFileBig.md b/docs/API_docs/constructors/inputFileBig.md index ffc64a7f..1b02dbb1 100644 --- a/docs/API_docs/constructors/inputFileBig.md +++ b/docs/API_docs/constructors/inputFileBig.md @@ -15,5 +15,5 @@ ``` -$inputFileBig = ['id' => long, 'parts' => int, 'name' => string, ]; +$inputFileBig = ['_' => inputFileBig', 'id' => long, 'parts' => int, 'name' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputFileLocation.md b/docs/API_docs/constructors/inputFileLocation.md index 38001402..1b602f38 100644 --- a/docs/API_docs/constructors/inputFileLocation.md +++ b/docs/API_docs/constructors/inputFileLocation.md @@ -15,5 +15,5 @@ ``` -$inputFileLocation = ['volume_id' => long, 'local_id' => int, 'secret' => long, ]; +$inputFileLocation = ['_' => inputFileLocation', 'volume_id' => long, 'local_id' => int, 'secret' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputGameID.md b/docs/API_docs/constructors/inputGameID.md index 3373bcc3..793557a3 100644 --- a/docs/API_docs/constructors/inputGameID.md +++ b/docs/API_docs/constructors/inputGameID.md @@ -14,5 +14,5 @@ ``` -$inputGameID = ['id' => long, 'access_hash' => long, ]; +$inputGameID = ['_' => inputGameID', 'id' => long, 'access_hash' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputGameShortName.md b/docs/API_docs/constructors/inputGameShortName.md index 3e4687a3..4a320491 100644 --- a/docs/API_docs/constructors/inputGameShortName.md +++ b/docs/API_docs/constructors/inputGameShortName.md @@ -14,5 +14,5 @@ ``` -$inputGameShortName = ['bot_id' => InputUser, 'short_name' => string, ]; +$inputGameShortName = ['_' => inputGameShortName', 'bot_id' => InputUser, 'short_name' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputGeoPoint.md b/docs/API_docs/constructors/inputGeoPoint.md index c001ad30..34881e3d 100644 --- a/docs/API_docs/constructors/inputGeoPoint.md +++ b/docs/API_docs/constructors/inputGeoPoint.md @@ -14,5 +14,5 @@ ``` -$inputGeoPoint = ['lat' => double, 'long' => double, ]; +$inputGeoPoint = ['_' => inputGeoPoint', 'lat' => double, 'long' => double, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputGeoPointEmpty.md b/docs/API_docs/constructors/inputGeoPointEmpty.md index 32467082..f279a568 100644 --- a/docs/API_docs/constructors/inputGeoPointEmpty.md +++ b/docs/API_docs/constructors/inputGeoPointEmpty.md @@ -1,9 +1,5 @@ ## Constructor: inputGeoPointEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputGeoPoint](../types/InputGeoPoint.md) @@ -12,5 +8,5 @@ ``` -$inputGeoPointEmpty = ; +$inputGeoPointEmpty = ['_' => inputGeoPointEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMediaContact.md b/docs/API_docs/constructors/inputMediaContact.md index 48ac53db..4042f10a 100644 --- a/docs/API_docs/constructors/inputMediaContact.md +++ b/docs/API_docs/constructors/inputMediaContact.md @@ -15,5 +15,5 @@ ``` -$inputMediaContact = ['phone_number' => string, 'first_name' => string, 'last_name' => string, ]; +$inputMediaContact = ['_' => inputMediaContact', 'phone_number' => string, 'first_name' => string, 'last_name' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMediaDocument.md b/docs/API_docs/constructors/inputMediaDocument.md index 38a667e0..b1f3a5af 100644 --- a/docs/API_docs/constructors/inputMediaDocument.md +++ b/docs/API_docs/constructors/inputMediaDocument.md @@ -14,5 +14,5 @@ ``` -$inputMediaDocument = ['id' => InputDocument, 'caption' => string, ]; +$inputMediaDocument = ['_' => inputMediaDocument', 'id' => InputDocument, 'caption' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMediaDocumentExternal.md b/docs/API_docs/constructors/inputMediaDocumentExternal.md index 9399424a..f9a4cbb0 100644 --- a/docs/API_docs/constructors/inputMediaDocumentExternal.md +++ b/docs/API_docs/constructors/inputMediaDocumentExternal.md @@ -14,5 +14,5 @@ ``` -$inputMediaDocumentExternal = ['url' => string, 'caption' => string, ]; +$inputMediaDocumentExternal = ['_' => inputMediaDocumentExternal', 'url' => string, 'caption' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMediaEmpty.md b/docs/API_docs/constructors/inputMediaEmpty.md index 50a79874..66986385 100644 --- a/docs/API_docs/constructors/inputMediaEmpty.md +++ b/docs/API_docs/constructors/inputMediaEmpty.md @@ -1,9 +1,5 @@ ## Constructor: inputMediaEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputMedia](../types/InputMedia.md) @@ -12,5 +8,5 @@ ``` -$inputMediaEmpty = ; +$inputMediaEmpty = ['_' => inputMediaEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMediaGame.md b/docs/API_docs/constructors/inputMediaGame.md index 4fba4ef9..94de9a18 100644 --- a/docs/API_docs/constructors/inputMediaGame.md +++ b/docs/API_docs/constructors/inputMediaGame.md @@ -13,5 +13,5 @@ ``` -$inputMediaGame = ['id' => InputGame, ]; +$inputMediaGame = ['_' => inputMediaGame', 'id' => InputGame, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMediaGeoPoint.md b/docs/API_docs/constructors/inputMediaGeoPoint.md index a68a655d..114dfeb4 100644 --- a/docs/API_docs/constructors/inputMediaGeoPoint.md +++ b/docs/API_docs/constructors/inputMediaGeoPoint.md @@ -13,5 +13,5 @@ ``` -$inputMediaGeoPoint = ['geo_point' => InputGeoPoint, ]; +$inputMediaGeoPoint = ['_' => inputMediaGeoPoint', 'geo_point' => InputGeoPoint, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMediaGifExternal.md b/docs/API_docs/constructors/inputMediaGifExternal.md index 96fcbec6..e643bff2 100644 --- a/docs/API_docs/constructors/inputMediaGifExternal.md +++ b/docs/API_docs/constructors/inputMediaGifExternal.md @@ -14,5 +14,5 @@ ``` -$inputMediaGifExternal = ['url' => string, 'q' => string, ]; +$inputMediaGifExternal = ['_' => inputMediaGifExternal', 'url' => string, 'q' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMediaPhoto.md b/docs/API_docs/constructors/inputMediaPhoto.md index f1d6b9f8..15863142 100644 --- a/docs/API_docs/constructors/inputMediaPhoto.md +++ b/docs/API_docs/constructors/inputMediaPhoto.md @@ -14,5 +14,5 @@ ``` -$inputMediaPhoto = ['id' => InputPhoto, 'caption' => string, ]; +$inputMediaPhoto = ['_' => inputMediaPhoto', 'id' => InputPhoto, 'caption' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMediaPhotoExternal.md b/docs/API_docs/constructors/inputMediaPhotoExternal.md index 68f1b3dc..9316ddbf 100644 --- a/docs/API_docs/constructors/inputMediaPhotoExternal.md +++ b/docs/API_docs/constructors/inputMediaPhotoExternal.md @@ -14,5 +14,5 @@ ``` -$inputMediaPhotoExternal = ['url' => string, 'caption' => string, ]; +$inputMediaPhotoExternal = ['_' => inputMediaPhotoExternal', 'url' => string, 'caption' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMediaUploadedDocument.md b/docs/API_docs/constructors/inputMediaUploadedDocument.md index 201e3214..f9689ec3 100644 --- a/docs/API_docs/constructors/inputMediaUploadedDocument.md +++ b/docs/API_docs/constructors/inputMediaUploadedDocument.md @@ -17,5 +17,5 @@ ``` -$inputMediaUploadedDocument = ['file' => InputFile, 'mime_type' => string, 'attributes' => [DocumentAttribute], 'caption' => string, 'stickers' => [InputDocument], ]; +$inputMediaUploadedDocument = ['_' => inputMediaUploadedDocument', 'file' => InputFile, 'mime_type' => string, 'attributes' => [Vector t], 'caption' => string, 'stickers' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMediaUploadedPhoto.md b/docs/API_docs/constructors/inputMediaUploadedPhoto.md index d92326df..cef6de21 100644 --- a/docs/API_docs/constructors/inputMediaUploadedPhoto.md +++ b/docs/API_docs/constructors/inputMediaUploadedPhoto.md @@ -15,5 +15,5 @@ ``` -$inputMediaUploadedPhoto = ['file' => InputFile, 'caption' => string, 'stickers' => [InputDocument], ]; +$inputMediaUploadedPhoto = ['_' => inputMediaUploadedPhoto', 'file' => InputFile, 'caption' => string, 'stickers' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMediaUploadedThumbDocument.md b/docs/API_docs/constructors/inputMediaUploadedThumbDocument.md index 89210dcc..f82445cb 100644 --- a/docs/API_docs/constructors/inputMediaUploadedThumbDocument.md +++ b/docs/API_docs/constructors/inputMediaUploadedThumbDocument.md @@ -18,5 +18,5 @@ ``` -$inputMediaUploadedThumbDocument = ['file' => InputFile, 'thumb' => InputFile, 'mime_type' => string, 'attributes' => [DocumentAttribute], 'caption' => string, 'stickers' => [InputDocument], ]; +$inputMediaUploadedThumbDocument = ['_' => inputMediaUploadedThumbDocument', 'file' => InputFile, 'thumb' => InputFile, 'mime_type' => string, 'attributes' => [Vector t], 'caption' => string, 'stickers' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMediaVenue.md b/docs/API_docs/constructors/inputMediaVenue.md index 0042b0da..c972c3e0 100644 --- a/docs/API_docs/constructors/inputMediaVenue.md +++ b/docs/API_docs/constructors/inputMediaVenue.md @@ -17,5 +17,5 @@ ``` -$inputMediaVenue = ['geo_point' => InputGeoPoint, 'title' => string, 'address' => string, 'provider' => string, 'venue_id' => string, ]; +$inputMediaVenue = ['_' => inputMediaVenue', 'geo_point' => InputGeoPoint, 'title' => string, 'address' => string, 'provider' => string, 'venue_id' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMessageEntityMentionName.md b/docs/API_docs/constructors/inputMessageEntityMentionName.md index 7f69ebf3..f2620a7c 100644 --- a/docs/API_docs/constructors/inputMessageEntityMentionName.md +++ b/docs/API_docs/constructors/inputMessageEntityMentionName.md @@ -15,5 +15,5 @@ ``` -$inputMessageEntityMentionName = ['offset' => int, 'length' => int, 'user_id' => InputUser, ]; +$inputMessageEntityMentionName = ['_' => inputMessageEntityMentionName', 'offset' => int, 'length' => int, 'user_id' => InputUser, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMessagesFilterChatPhotos.md b/docs/API_docs/constructors/inputMessagesFilterChatPhotos.md index ad7139c1..25b3d8b1 100644 --- a/docs/API_docs/constructors/inputMessagesFilterChatPhotos.md +++ b/docs/API_docs/constructors/inputMessagesFilterChatPhotos.md @@ -1,9 +1,5 @@ ## Constructor: inputMessagesFilterChatPhotos -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessagesFilter](../types/MessagesFilter.md) @@ -12,5 +8,5 @@ ``` -$inputMessagesFilterChatPhotos = ; +$inputMessagesFilterChatPhotos = ['_' => inputMessagesFilterChatPhotos', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMessagesFilterDocument.md b/docs/API_docs/constructors/inputMessagesFilterDocument.md index e8804342..0cca6835 100644 --- a/docs/API_docs/constructors/inputMessagesFilterDocument.md +++ b/docs/API_docs/constructors/inputMessagesFilterDocument.md @@ -1,9 +1,5 @@ ## Constructor: inputMessagesFilterDocument -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessagesFilter](../types/MessagesFilter.md) @@ -12,5 +8,5 @@ ``` -$inputMessagesFilterDocument = ; +$inputMessagesFilterDocument = ['_' => inputMessagesFilterDocument', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMessagesFilterEmpty.md b/docs/API_docs/constructors/inputMessagesFilterEmpty.md index b2f5a181..2ad61477 100644 --- a/docs/API_docs/constructors/inputMessagesFilterEmpty.md +++ b/docs/API_docs/constructors/inputMessagesFilterEmpty.md @@ -1,9 +1,5 @@ ## Constructor: inputMessagesFilterEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessagesFilter](../types/MessagesFilter.md) @@ -12,5 +8,5 @@ ``` -$inputMessagesFilterEmpty = ; +$inputMessagesFilterEmpty = ['_' => inputMessagesFilterEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMessagesFilterGif.md b/docs/API_docs/constructors/inputMessagesFilterGif.md index d95c9650..5cf89c6e 100644 --- a/docs/API_docs/constructors/inputMessagesFilterGif.md +++ b/docs/API_docs/constructors/inputMessagesFilterGif.md @@ -1,9 +1,5 @@ ## Constructor: inputMessagesFilterGif -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessagesFilter](../types/MessagesFilter.md) @@ -12,5 +8,5 @@ ``` -$inputMessagesFilterGif = ; +$inputMessagesFilterGif = ['_' => inputMessagesFilterGif', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMessagesFilterMusic.md b/docs/API_docs/constructors/inputMessagesFilterMusic.md index 7fa69ef3..ecf02dff 100644 --- a/docs/API_docs/constructors/inputMessagesFilterMusic.md +++ b/docs/API_docs/constructors/inputMessagesFilterMusic.md @@ -1,9 +1,5 @@ ## Constructor: inputMessagesFilterMusic -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessagesFilter](../types/MessagesFilter.md) @@ -12,5 +8,5 @@ ``` -$inputMessagesFilterMusic = ; +$inputMessagesFilterMusic = ['_' => inputMessagesFilterMusic', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMessagesFilterPhotoVideo.md b/docs/API_docs/constructors/inputMessagesFilterPhotoVideo.md index 8fb29c66..2473c389 100644 --- a/docs/API_docs/constructors/inputMessagesFilterPhotoVideo.md +++ b/docs/API_docs/constructors/inputMessagesFilterPhotoVideo.md @@ -1,9 +1,5 @@ ## Constructor: inputMessagesFilterPhotoVideo -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessagesFilter](../types/MessagesFilter.md) @@ -12,5 +8,5 @@ ``` -$inputMessagesFilterPhotoVideo = ; +$inputMessagesFilterPhotoVideo = ['_' => inputMessagesFilterPhotoVideo', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMessagesFilterPhotoVideoDocuments.md b/docs/API_docs/constructors/inputMessagesFilterPhotoVideoDocuments.md index e9f945ae..cdcf4773 100644 --- a/docs/API_docs/constructors/inputMessagesFilterPhotoVideoDocuments.md +++ b/docs/API_docs/constructors/inputMessagesFilterPhotoVideoDocuments.md @@ -1,9 +1,5 @@ ## Constructor: inputMessagesFilterPhotoVideoDocuments -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessagesFilter](../types/MessagesFilter.md) @@ -12,5 +8,5 @@ ``` -$inputMessagesFilterPhotoVideoDocuments = ; +$inputMessagesFilterPhotoVideoDocuments = ['_' => inputMessagesFilterPhotoVideoDocuments', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMessagesFilterPhotos.md b/docs/API_docs/constructors/inputMessagesFilterPhotos.md index 52b4cde4..224a8d5b 100644 --- a/docs/API_docs/constructors/inputMessagesFilterPhotos.md +++ b/docs/API_docs/constructors/inputMessagesFilterPhotos.md @@ -1,9 +1,5 @@ ## Constructor: inputMessagesFilterPhotos -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessagesFilter](../types/MessagesFilter.md) @@ -12,5 +8,5 @@ ``` -$inputMessagesFilterPhotos = ; +$inputMessagesFilterPhotos = ['_' => inputMessagesFilterPhotos', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMessagesFilterUrl.md b/docs/API_docs/constructors/inputMessagesFilterUrl.md index 93d91d42..e587feed 100644 --- a/docs/API_docs/constructors/inputMessagesFilterUrl.md +++ b/docs/API_docs/constructors/inputMessagesFilterUrl.md @@ -1,9 +1,5 @@ ## Constructor: inputMessagesFilterUrl -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessagesFilter](../types/MessagesFilter.md) @@ -12,5 +8,5 @@ ``` -$inputMessagesFilterUrl = ; +$inputMessagesFilterUrl = ['_' => inputMessagesFilterUrl', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMessagesFilterVideo.md b/docs/API_docs/constructors/inputMessagesFilterVideo.md index 20d0a3eb..d49e92e8 100644 --- a/docs/API_docs/constructors/inputMessagesFilterVideo.md +++ b/docs/API_docs/constructors/inputMessagesFilterVideo.md @@ -1,9 +1,5 @@ ## Constructor: inputMessagesFilterVideo -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessagesFilter](../types/MessagesFilter.md) @@ -12,5 +8,5 @@ ``` -$inputMessagesFilterVideo = ; +$inputMessagesFilterVideo = ['_' => inputMessagesFilterVideo', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputMessagesFilterVoice.md b/docs/API_docs/constructors/inputMessagesFilterVoice.md index 8bf3c818..40f4f3ba 100644 --- a/docs/API_docs/constructors/inputMessagesFilterVoice.md +++ b/docs/API_docs/constructors/inputMessagesFilterVoice.md @@ -1,9 +1,5 @@ ## Constructor: inputMessagesFilterVoice -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessagesFilter](../types/MessagesFilter.md) @@ -12,5 +8,5 @@ ``` -$inputMessagesFilterVoice = ; +$inputMessagesFilterVoice = ['_' => inputMessagesFilterVoice', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputNotifyAll.md b/docs/API_docs/constructors/inputNotifyAll.md index 6c441d6f..b1e424e0 100644 --- a/docs/API_docs/constructors/inputNotifyAll.md +++ b/docs/API_docs/constructors/inputNotifyAll.md @@ -1,9 +1,5 @@ ## Constructor: inputNotifyAll -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputNotifyPeer](../types/InputNotifyPeer.md) @@ -12,5 +8,5 @@ ``` -$inputNotifyAll = ; +$inputNotifyAll = ['_' => inputNotifyAll', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputNotifyChats.md b/docs/API_docs/constructors/inputNotifyChats.md index 334714b2..1f4038e1 100644 --- a/docs/API_docs/constructors/inputNotifyChats.md +++ b/docs/API_docs/constructors/inputNotifyChats.md @@ -1,9 +1,5 @@ ## Constructor: inputNotifyChats -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputNotifyPeer](../types/InputNotifyPeer.md) @@ -12,5 +8,5 @@ ``` -$inputNotifyChats = ; +$inputNotifyChats = ['_' => inputNotifyChats', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputNotifyPeer.md b/docs/API_docs/constructors/inputNotifyPeer.md index 1bb5ff20..63486e96 100644 --- a/docs/API_docs/constructors/inputNotifyPeer.md +++ b/docs/API_docs/constructors/inputNotifyPeer.md @@ -13,5 +13,5 @@ ``` -$inputNotifyPeer = ['peer' => InputPeer, ]; +$inputNotifyPeer = ['_' => inputNotifyPeer', 'peer' => InputPeer, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputNotifyUsers.md b/docs/API_docs/constructors/inputNotifyUsers.md index b6f5b9de..ddadf7aa 100644 --- a/docs/API_docs/constructors/inputNotifyUsers.md +++ b/docs/API_docs/constructors/inputNotifyUsers.md @@ -1,9 +1,5 @@ ## Constructor: inputNotifyUsers -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputNotifyPeer](../types/InputNotifyPeer.md) @@ -12,5 +8,5 @@ ``` -$inputNotifyUsers = ; +$inputNotifyUsers = ['_' => inputNotifyUsers', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPeerChannel.md b/docs/API_docs/constructors/inputPeerChannel.md index 52cbb0ee..2b2fc52a 100644 --- a/docs/API_docs/constructors/inputPeerChannel.md +++ b/docs/API_docs/constructors/inputPeerChannel.md @@ -14,5 +14,5 @@ ``` -$inputPeerChannel = ['channel_id' => int, 'access_hash' => long, ]; +$inputPeerChannel = ['_' => inputPeerChannel', 'channel_id' => int, 'access_hash' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPeerChat.md b/docs/API_docs/constructors/inputPeerChat.md index b7dd6e00..9110d056 100644 --- a/docs/API_docs/constructors/inputPeerChat.md +++ b/docs/API_docs/constructors/inputPeerChat.md @@ -13,5 +13,5 @@ ``` -$inputPeerChat = ['chat_id' => int, ]; +$inputPeerChat = ['_' => inputPeerChat', 'chat_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPeerEmpty.md b/docs/API_docs/constructors/inputPeerEmpty.md index 9f570c19..bd82e9f9 100644 --- a/docs/API_docs/constructors/inputPeerEmpty.md +++ b/docs/API_docs/constructors/inputPeerEmpty.md @@ -1,9 +1,5 @@ ## Constructor: inputPeerEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputPeer](../types/InputPeer.md) @@ -12,5 +8,5 @@ ``` -$inputPeerEmpty = ; +$inputPeerEmpty = ['_' => inputPeerEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPeerNotifyEventsAll.md b/docs/API_docs/constructors/inputPeerNotifyEventsAll.md index f866106e..7e53e174 100644 --- a/docs/API_docs/constructors/inputPeerNotifyEventsAll.md +++ b/docs/API_docs/constructors/inputPeerNotifyEventsAll.md @@ -1,9 +1,5 @@ ## Constructor: inputPeerNotifyEventsAll -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputPeerNotifyEvents](../types/InputPeerNotifyEvents.md) @@ -12,5 +8,5 @@ ``` -$inputPeerNotifyEventsAll = ; +$inputPeerNotifyEventsAll = ['_' => inputPeerNotifyEventsAll', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPeerNotifyEventsEmpty.md b/docs/API_docs/constructors/inputPeerNotifyEventsEmpty.md index bdf42fd1..477a6115 100644 --- a/docs/API_docs/constructors/inputPeerNotifyEventsEmpty.md +++ b/docs/API_docs/constructors/inputPeerNotifyEventsEmpty.md @@ -1,9 +1,5 @@ ## Constructor: inputPeerNotifyEventsEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputPeerNotifyEvents](../types/InputPeerNotifyEvents.md) @@ -12,5 +8,5 @@ ``` -$inputPeerNotifyEventsEmpty = ; +$inputPeerNotifyEventsEmpty = ['_' => inputPeerNotifyEventsEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPeerNotifySettings.md b/docs/API_docs/constructors/inputPeerNotifySettings.md index eb5cde56..8dbfdb84 100644 --- a/docs/API_docs/constructors/inputPeerNotifySettings.md +++ b/docs/API_docs/constructors/inputPeerNotifySettings.md @@ -16,5 +16,5 @@ ``` -$inputPeerNotifySettings = ['show_previews' => Bool, 'silent' => Bool, 'mute_until' => int, 'sound' => string, ]; +$inputPeerNotifySettings = ['_' => inputPeerNotifySettings', 'show_previews' => true, 'silent' => true, 'mute_until' => int, 'sound' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPeerSelf.md b/docs/API_docs/constructors/inputPeerSelf.md index 70161667..3614eddf 100644 --- a/docs/API_docs/constructors/inputPeerSelf.md +++ b/docs/API_docs/constructors/inputPeerSelf.md @@ -1,9 +1,5 @@ ## Constructor: inputPeerSelf -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputPeer](../types/InputPeer.md) @@ -12,5 +8,5 @@ ``` -$inputPeerSelf = ; +$inputPeerSelf = ['_' => inputPeerSelf', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPeerUser.md b/docs/API_docs/constructors/inputPeerUser.md index af433961..b49e060a 100644 --- a/docs/API_docs/constructors/inputPeerUser.md +++ b/docs/API_docs/constructors/inputPeerUser.md @@ -14,5 +14,5 @@ ``` -$inputPeerUser = ['user_id' => int, 'access_hash' => long, ]; +$inputPeerUser = ['_' => inputPeerUser', 'user_id' => int, 'access_hash' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPhoneContact.md b/docs/API_docs/constructors/inputPhoneContact.md index c8fb4439..4df50959 100644 --- a/docs/API_docs/constructors/inputPhoneContact.md +++ b/docs/API_docs/constructors/inputPhoneContact.md @@ -16,5 +16,5 @@ ``` -$inputPhoneContact = ['client_id' => long, 'phone' => string, 'first_name' => string, 'last_name' => string, ]; +$inputPhoneContact = ['_' => inputPhoneContact', 'client_id' => long, 'phone' => string, 'first_name' => string, 'last_name' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPhoto.md b/docs/API_docs/constructors/inputPhoto.md index bcb06a85..fc8355e1 100644 --- a/docs/API_docs/constructors/inputPhoto.md +++ b/docs/API_docs/constructors/inputPhoto.md @@ -14,5 +14,5 @@ ``` -$inputPhoto = ['id' => long, 'access_hash' => long, ]; +$inputPhoto = ['_' => inputPhoto', 'id' => long, 'access_hash' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPhotoEmpty.md b/docs/API_docs/constructors/inputPhotoEmpty.md index aa6d3ede..143e698f 100644 --- a/docs/API_docs/constructors/inputPhotoEmpty.md +++ b/docs/API_docs/constructors/inputPhotoEmpty.md @@ -1,9 +1,5 @@ ## Constructor: inputPhotoEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputPhoto](../types/InputPhoto.md) @@ -12,5 +8,5 @@ ``` -$inputPhotoEmpty = ; +$inputPhotoEmpty = ['_' => inputPhotoEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPrivacyKeyChatInvite.md b/docs/API_docs/constructors/inputPrivacyKeyChatInvite.md index c5867725..f5c99e5d 100644 --- a/docs/API_docs/constructors/inputPrivacyKeyChatInvite.md +++ b/docs/API_docs/constructors/inputPrivacyKeyChatInvite.md @@ -1,9 +1,5 @@ ## Constructor: inputPrivacyKeyChatInvite -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputPrivacyKey](../types/InputPrivacyKey.md) @@ -12,5 +8,5 @@ ``` -$inputPrivacyKeyChatInvite = ; +$inputPrivacyKeyChatInvite = ['_' => inputPrivacyKeyChatInvite', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPrivacyKeyStatusTimestamp.md b/docs/API_docs/constructors/inputPrivacyKeyStatusTimestamp.md index 7c18543c..bc3d2c37 100644 --- a/docs/API_docs/constructors/inputPrivacyKeyStatusTimestamp.md +++ b/docs/API_docs/constructors/inputPrivacyKeyStatusTimestamp.md @@ -1,9 +1,5 @@ ## Constructor: inputPrivacyKeyStatusTimestamp -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputPrivacyKey](../types/InputPrivacyKey.md) @@ -12,5 +8,5 @@ ``` -$inputPrivacyKeyStatusTimestamp = ; +$inputPrivacyKeyStatusTimestamp = ['_' => inputPrivacyKeyStatusTimestamp', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPrivacyValueAllowAll.md b/docs/API_docs/constructors/inputPrivacyValueAllowAll.md index 94f53d48..2c3e8d49 100644 --- a/docs/API_docs/constructors/inputPrivacyValueAllowAll.md +++ b/docs/API_docs/constructors/inputPrivacyValueAllowAll.md @@ -1,9 +1,5 @@ ## Constructor: inputPrivacyValueAllowAll -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputPrivacyRule](../types/InputPrivacyRule.md) @@ -12,5 +8,5 @@ ``` -$inputPrivacyValueAllowAll = ; +$inputPrivacyValueAllowAll = ['_' => inputPrivacyValueAllowAll', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPrivacyValueAllowContacts.md b/docs/API_docs/constructors/inputPrivacyValueAllowContacts.md index e77e5256..e7710255 100644 --- a/docs/API_docs/constructors/inputPrivacyValueAllowContacts.md +++ b/docs/API_docs/constructors/inputPrivacyValueAllowContacts.md @@ -1,9 +1,5 @@ ## Constructor: inputPrivacyValueAllowContacts -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputPrivacyRule](../types/InputPrivacyRule.md) @@ -12,5 +8,5 @@ ``` -$inputPrivacyValueAllowContacts = ; +$inputPrivacyValueAllowContacts = ['_' => inputPrivacyValueAllowContacts', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPrivacyValueAllowUsers.md b/docs/API_docs/constructors/inputPrivacyValueAllowUsers.md index fc49e3d9..696f1200 100644 --- a/docs/API_docs/constructors/inputPrivacyValueAllowUsers.md +++ b/docs/API_docs/constructors/inputPrivacyValueAllowUsers.md @@ -13,5 +13,5 @@ ``` -$inputPrivacyValueAllowUsers = ['users' => [InputUser], ]; +$inputPrivacyValueAllowUsers = ['_' => inputPrivacyValueAllowUsers', 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPrivacyValueDisallowAll.md b/docs/API_docs/constructors/inputPrivacyValueDisallowAll.md index c3d896f1..cf10174c 100644 --- a/docs/API_docs/constructors/inputPrivacyValueDisallowAll.md +++ b/docs/API_docs/constructors/inputPrivacyValueDisallowAll.md @@ -1,9 +1,5 @@ ## Constructor: inputPrivacyValueDisallowAll -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputPrivacyRule](../types/InputPrivacyRule.md) @@ -12,5 +8,5 @@ ``` -$inputPrivacyValueDisallowAll = ; +$inputPrivacyValueDisallowAll = ['_' => inputPrivacyValueDisallowAll', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPrivacyValueDisallowContacts.md b/docs/API_docs/constructors/inputPrivacyValueDisallowContacts.md index 10fdaf72..a8b1fdf6 100644 --- a/docs/API_docs/constructors/inputPrivacyValueDisallowContacts.md +++ b/docs/API_docs/constructors/inputPrivacyValueDisallowContacts.md @@ -1,9 +1,5 @@ ## Constructor: inputPrivacyValueDisallowContacts -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputPrivacyRule](../types/InputPrivacyRule.md) @@ -12,5 +8,5 @@ ``` -$inputPrivacyValueDisallowContacts = ; +$inputPrivacyValueDisallowContacts = ['_' => inputPrivacyValueDisallowContacts', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputPrivacyValueDisallowUsers.md b/docs/API_docs/constructors/inputPrivacyValueDisallowUsers.md index b27c79f2..a80de359 100644 --- a/docs/API_docs/constructors/inputPrivacyValueDisallowUsers.md +++ b/docs/API_docs/constructors/inputPrivacyValueDisallowUsers.md @@ -13,5 +13,5 @@ ``` -$inputPrivacyValueDisallowUsers = ['users' => [InputUser], ]; +$inputPrivacyValueDisallowUsers = ['_' => inputPrivacyValueDisallowUsers', 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputReportReasonOther.md b/docs/API_docs/constructors/inputReportReasonOther.md index 02b1dec2..f4a6bb2a 100644 --- a/docs/API_docs/constructors/inputReportReasonOther.md +++ b/docs/API_docs/constructors/inputReportReasonOther.md @@ -13,5 +13,5 @@ ``` -$inputReportReasonOther = ['text' => string, ]; +$inputReportReasonOther = ['_' => inputReportReasonOther', 'text' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputReportReasonPornography.md b/docs/API_docs/constructors/inputReportReasonPornography.md index 3bed6bbc..b959f3da 100644 --- a/docs/API_docs/constructors/inputReportReasonPornography.md +++ b/docs/API_docs/constructors/inputReportReasonPornography.md @@ -1,9 +1,5 @@ ## Constructor: inputReportReasonPornography -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ReportReason](../types/ReportReason.md) @@ -12,5 +8,5 @@ ``` -$inputReportReasonPornography = ; +$inputReportReasonPornography = ['_' => inputReportReasonPornography', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputReportReasonSpam.md b/docs/API_docs/constructors/inputReportReasonSpam.md index 2615dee4..1655fb15 100644 --- a/docs/API_docs/constructors/inputReportReasonSpam.md +++ b/docs/API_docs/constructors/inputReportReasonSpam.md @@ -1,9 +1,5 @@ ## Constructor: inputReportReasonSpam -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ReportReason](../types/ReportReason.md) @@ -12,5 +8,5 @@ ``` -$inputReportReasonSpam = ; +$inputReportReasonSpam = ['_' => inputReportReasonSpam', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputReportReasonViolence.md b/docs/API_docs/constructors/inputReportReasonViolence.md index 0aea3cd2..3dce1145 100644 --- a/docs/API_docs/constructors/inputReportReasonViolence.md +++ b/docs/API_docs/constructors/inputReportReasonViolence.md @@ -1,9 +1,5 @@ ## Constructor: inputReportReasonViolence -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [ReportReason](../types/ReportReason.md) @@ -12,5 +8,5 @@ ``` -$inputReportReasonViolence = ; +$inputReportReasonViolence = ['_' => inputReportReasonViolence', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputStickerSetEmpty.md b/docs/API_docs/constructors/inputStickerSetEmpty.md index 1b48748b..4268eaab 100644 --- a/docs/API_docs/constructors/inputStickerSetEmpty.md +++ b/docs/API_docs/constructors/inputStickerSetEmpty.md @@ -1,9 +1,5 @@ ## Constructor: inputStickerSetEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputStickerSet](../types/InputStickerSet.md) @@ -12,5 +8,5 @@ ``` -$inputStickerSetEmpty = ; +$inputStickerSetEmpty = ['_' => inputStickerSetEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputStickerSetID.md b/docs/API_docs/constructors/inputStickerSetID.md index 1ac594c8..f550cdc6 100644 --- a/docs/API_docs/constructors/inputStickerSetID.md +++ b/docs/API_docs/constructors/inputStickerSetID.md @@ -14,5 +14,5 @@ ``` -$inputStickerSetID = ['id' => long, 'access_hash' => long, ]; +$inputStickerSetID = ['_' => inputStickerSetID', 'id' => long, 'access_hash' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputStickerSetShortName.md b/docs/API_docs/constructors/inputStickerSetShortName.md index a6c00154..dc4f2817 100644 --- a/docs/API_docs/constructors/inputStickerSetShortName.md +++ b/docs/API_docs/constructors/inputStickerSetShortName.md @@ -13,5 +13,5 @@ ``` -$inputStickerSetShortName = ['short_name' => string, ]; +$inputStickerSetShortName = ['_' => inputStickerSetShortName', 'short_name' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputStickeredMediaDocument.md b/docs/API_docs/constructors/inputStickeredMediaDocument.md index 45d64e5f..8b6d3f2a 100644 --- a/docs/API_docs/constructors/inputStickeredMediaDocument.md +++ b/docs/API_docs/constructors/inputStickeredMediaDocument.md @@ -13,5 +13,5 @@ ``` -$inputStickeredMediaDocument = ['id' => InputDocument, ]; +$inputStickeredMediaDocument = ['_' => inputStickeredMediaDocument', 'id' => InputDocument, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputStickeredMediaPhoto.md b/docs/API_docs/constructors/inputStickeredMediaPhoto.md index 0a4be2ce..51a1fb2a 100644 --- a/docs/API_docs/constructors/inputStickeredMediaPhoto.md +++ b/docs/API_docs/constructors/inputStickeredMediaPhoto.md @@ -13,5 +13,5 @@ ``` -$inputStickeredMediaPhoto = ['id' => InputPhoto, ]; +$inputStickeredMediaPhoto = ['_' => inputStickeredMediaPhoto', 'id' => InputPhoto, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputUser.md b/docs/API_docs/constructors/inputUser.md index aacfeaa4..689b4023 100644 --- a/docs/API_docs/constructors/inputUser.md +++ b/docs/API_docs/constructors/inputUser.md @@ -14,5 +14,5 @@ ``` -$inputUser = ['user_id' => int, 'access_hash' => long, ]; +$inputUser = ['_' => inputUser', 'user_id' => int, 'access_hash' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputUserEmpty.md b/docs/API_docs/constructors/inputUserEmpty.md index 764f8604..aaaceee1 100644 --- a/docs/API_docs/constructors/inputUserEmpty.md +++ b/docs/API_docs/constructors/inputUserEmpty.md @@ -1,9 +1,5 @@ ## Constructor: inputUserEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputUser](../types/InputUser.md) @@ -12,5 +8,5 @@ ``` -$inputUserEmpty = ; +$inputUserEmpty = ['_' => inputUserEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/inputUserSelf.md b/docs/API_docs/constructors/inputUserSelf.md index 29485ba6..d7b9d6f4 100644 --- a/docs/API_docs/constructors/inputUserSelf.md +++ b/docs/API_docs/constructors/inputUserSelf.md @@ -1,9 +1,5 @@ ## Constructor: inputUserSelf -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [InputUser](../types/InputUser.md) @@ -12,5 +8,5 @@ ``` -$inputUserSelf = ; +$inputUserSelf = ['_' => inputUserSelf', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/keyboardButton.md b/docs/API_docs/constructors/keyboardButton.md index 3b641cb2..9287b24b 100644 --- a/docs/API_docs/constructors/keyboardButton.md +++ b/docs/API_docs/constructors/keyboardButton.md @@ -13,5 +13,5 @@ ``` -$keyboardButton = ['text' => string, ]; +$keyboardButton = ['_' => keyboardButton', 'text' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/keyboardButtonCallback.md b/docs/API_docs/constructors/keyboardButtonCallback.md index 86f4b6bb..816712bb 100644 --- a/docs/API_docs/constructors/keyboardButtonCallback.md +++ b/docs/API_docs/constructors/keyboardButtonCallback.md @@ -14,5 +14,5 @@ ``` -$keyboardButtonCallback = ['text' => string, 'data' => bytes, ]; +$keyboardButtonCallback = ['_' => keyboardButtonCallback', 'text' => string, 'data' => bytes, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/keyboardButtonGame.md b/docs/API_docs/constructors/keyboardButtonGame.md index 05222530..c912d044 100644 --- a/docs/API_docs/constructors/keyboardButtonGame.md +++ b/docs/API_docs/constructors/keyboardButtonGame.md @@ -13,5 +13,5 @@ ``` -$keyboardButtonGame = ['text' => string, ]; +$keyboardButtonGame = ['_' => keyboardButtonGame', 'text' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/keyboardButtonRequestGeoLocation.md b/docs/API_docs/constructors/keyboardButtonRequestGeoLocation.md index 5d3db5c6..b5657f14 100644 --- a/docs/API_docs/constructors/keyboardButtonRequestGeoLocation.md +++ b/docs/API_docs/constructors/keyboardButtonRequestGeoLocation.md @@ -13,5 +13,5 @@ ``` -$keyboardButtonRequestGeoLocation = ['text' => string, ]; +$keyboardButtonRequestGeoLocation = ['_' => keyboardButtonRequestGeoLocation', 'text' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/keyboardButtonRequestPhone.md b/docs/API_docs/constructors/keyboardButtonRequestPhone.md index da0bd637..4d029a5e 100644 --- a/docs/API_docs/constructors/keyboardButtonRequestPhone.md +++ b/docs/API_docs/constructors/keyboardButtonRequestPhone.md @@ -13,5 +13,5 @@ ``` -$keyboardButtonRequestPhone = ['text' => string, ]; +$keyboardButtonRequestPhone = ['_' => keyboardButtonRequestPhone', 'text' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/keyboardButtonRow.md b/docs/API_docs/constructors/keyboardButtonRow.md index aa9c95d9..725bfc0b 100644 --- a/docs/API_docs/constructors/keyboardButtonRow.md +++ b/docs/API_docs/constructors/keyboardButtonRow.md @@ -13,5 +13,5 @@ ``` -$keyboardButtonRow = ['buttons' => [KeyboardButton], ]; +$keyboardButtonRow = ['_' => keyboardButtonRow', 'buttons' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/keyboardButtonSwitchInline.md b/docs/API_docs/constructors/keyboardButtonSwitchInline.md index 65fd359a..b62eeeae 100644 --- a/docs/API_docs/constructors/keyboardButtonSwitchInline.md +++ b/docs/API_docs/constructors/keyboardButtonSwitchInline.md @@ -15,5 +15,5 @@ ``` -$keyboardButtonSwitchInline = ['same_peer' => Bool, 'text' => string, 'query' => string, ]; +$keyboardButtonSwitchInline = ['_' => keyboardButtonSwitchInline', 'same_peer' => true, 'text' => string, 'query' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/keyboardButtonUrl.md b/docs/API_docs/constructors/keyboardButtonUrl.md index d956b04b..cc1e865e 100644 --- a/docs/API_docs/constructors/keyboardButtonUrl.md +++ b/docs/API_docs/constructors/keyboardButtonUrl.md @@ -14,5 +14,5 @@ ``` -$keyboardButtonUrl = ['text' => string, 'url' => string, ]; +$keyboardButtonUrl = ['_' => keyboardButtonUrl', 'text' => string, 'url' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/maskCoords.md b/docs/API_docs/constructors/maskCoords.md index ab251b0f..99f96105 100644 --- a/docs/API_docs/constructors/maskCoords.md +++ b/docs/API_docs/constructors/maskCoords.md @@ -16,5 +16,5 @@ ``` -$maskCoords = ['n' => int, 'x' => double, 'y' => double, 'zoom' => double, ]; +$maskCoords = ['_' => maskCoords', 'n' => int, 'x' => double, 'y' => double, 'zoom' => double, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/message.md b/docs/API_docs/constructors/message.md index 2676dd27..a702f0b4 100644 --- a/docs/API_docs/constructors/message.md +++ b/docs/API_docs/constructors/message.md @@ -30,5 +30,5 @@ ``` -$message = ['out' => Bool, 'mentioned' => Bool, 'media_unread' => Bool, 'silent' => Bool, 'post' => Bool, 'id' => int, 'from_id' => int, 'to_id' => Peer, 'fwd_from' => MessageFwdHeader, 'via_bot_id' => int, 'reply_to_msg_id' => int, 'date' => int, 'message' => string, 'media' => MessageMedia, 'reply_markup' => ReplyMarkup, 'entities' => [MessageEntity], 'views' => int, 'edit_date' => int, ]; +$message = ['_' => message', 'out' => true, 'mentioned' => true, 'media_unread' => true, 'silent' => true, 'post' => true, 'id' => int, 'from_id' => int, 'to_id' => Peer, 'fwd_from' => MessageFwdHeader, 'via_bot_id' => int, 'reply_to_msg_id' => int, 'date' => int, 'message' => string, 'media' => MessageMedia, 'reply_markup' => ReplyMarkup, 'entities' => [Vector t], 'views' => int, 'edit_date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionChannelCreate.md b/docs/API_docs/constructors/messageActionChannelCreate.md index f1a022eb..a20ed5d0 100644 --- a/docs/API_docs/constructors/messageActionChannelCreate.md +++ b/docs/API_docs/constructors/messageActionChannelCreate.md @@ -13,5 +13,5 @@ ``` -$messageActionChannelCreate = ['title' => string, ]; +$messageActionChannelCreate = ['_' => messageActionChannelCreate', 'title' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionChannelMigrateFrom.md b/docs/API_docs/constructors/messageActionChannelMigrateFrom.md index b77a53f3..cab9dbc5 100644 --- a/docs/API_docs/constructors/messageActionChannelMigrateFrom.md +++ b/docs/API_docs/constructors/messageActionChannelMigrateFrom.md @@ -14,5 +14,5 @@ ``` -$messageActionChannelMigrateFrom = ['title' => string, 'chat_id' => int, ]; +$messageActionChannelMigrateFrom = ['_' => messageActionChannelMigrateFrom', 'title' => string, 'chat_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionChatAddUser.md b/docs/API_docs/constructors/messageActionChatAddUser.md index 1c2bfc06..ada1990e 100644 --- a/docs/API_docs/constructors/messageActionChatAddUser.md +++ b/docs/API_docs/constructors/messageActionChatAddUser.md @@ -13,5 +13,5 @@ ``` -$messageActionChatAddUser = ['users' => [int], ]; +$messageActionChatAddUser = ['_' => messageActionChatAddUser', 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionChatCreate.md b/docs/API_docs/constructors/messageActionChatCreate.md index 32c0dc52..3a1d35e7 100644 --- a/docs/API_docs/constructors/messageActionChatCreate.md +++ b/docs/API_docs/constructors/messageActionChatCreate.md @@ -14,5 +14,5 @@ ``` -$messageActionChatCreate = ['title' => string, 'users' => [int], ]; +$messageActionChatCreate = ['_' => messageActionChatCreate', 'title' => string, 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionChatDeletePhoto.md b/docs/API_docs/constructors/messageActionChatDeletePhoto.md index 66db0c2c..b4e9e4c8 100644 --- a/docs/API_docs/constructors/messageActionChatDeletePhoto.md +++ b/docs/API_docs/constructors/messageActionChatDeletePhoto.md @@ -1,9 +1,5 @@ ## Constructor: messageActionChatDeletePhoto -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessageAction](../types/MessageAction.md) @@ -12,5 +8,5 @@ ``` -$messageActionChatDeletePhoto = ; +$messageActionChatDeletePhoto = ['_' => messageActionChatDeletePhoto', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionChatDeleteUser.md b/docs/API_docs/constructors/messageActionChatDeleteUser.md index bf1afa4b..8df4e5d2 100644 --- a/docs/API_docs/constructors/messageActionChatDeleteUser.md +++ b/docs/API_docs/constructors/messageActionChatDeleteUser.md @@ -13,5 +13,5 @@ ``` -$messageActionChatDeleteUser = ['user_id' => int, ]; +$messageActionChatDeleteUser = ['_' => messageActionChatDeleteUser', 'user_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionChatEditPhoto.md b/docs/API_docs/constructors/messageActionChatEditPhoto.md index 39fd197e..85e2d329 100644 --- a/docs/API_docs/constructors/messageActionChatEditPhoto.md +++ b/docs/API_docs/constructors/messageActionChatEditPhoto.md @@ -13,5 +13,5 @@ ``` -$messageActionChatEditPhoto = ['photo' => Photo, ]; +$messageActionChatEditPhoto = ['_' => messageActionChatEditPhoto', 'photo' => Photo, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionChatEditTitle.md b/docs/API_docs/constructors/messageActionChatEditTitle.md index 4912356c..3f0fb5d4 100644 --- a/docs/API_docs/constructors/messageActionChatEditTitle.md +++ b/docs/API_docs/constructors/messageActionChatEditTitle.md @@ -13,5 +13,5 @@ ``` -$messageActionChatEditTitle = ['title' => string, ]; +$messageActionChatEditTitle = ['_' => messageActionChatEditTitle', 'title' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionChatJoinedByLink.md b/docs/API_docs/constructors/messageActionChatJoinedByLink.md index 680947aa..45d4a82d 100644 --- a/docs/API_docs/constructors/messageActionChatJoinedByLink.md +++ b/docs/API_docs/constructors/messageActionChatJoinedByLink.md @@ -13,5 +13,5 @@ ``` -$messageActionChatJoinedByLink = ['inviter_id' => int, ]; +$messageActionChatJoinedByLink = ['_' => messageActionChatJoinedByLink', 'inviter_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionChatMigrateTo.md b/docs/API_docs/constructors/messageActionChatMigrateTo.md index 35abe11a..12a0e7ee 100644 --- a/docs/API_docs/constructors/messageActionChatMigrateTo.md +++ b/docs/API_docs/constructors/messageActionChatMigrateTo.md @@ -13,5 +13,5 @@ ``` -$messageActionChatMigrateTo = ['channel_id' => int, ]; +$messageActionChatMigrateTo = ['_' => messageActionChatMigrateTo', 'channel_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionEmpty.md b/docs/API_docs/constructors/messageActionEmpty.md index b715a4fb..b01bfbc5 100644 --- a/docs/API_docs/constructors/messageActionEmpty.md +++ b/docs/API_docs/constructors/messageActionEmpty.md @@ -1,9 +1,5 @@ ## Constructor: messageActionEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessageAction](../types/MessageAction.md) @@ -12,5 +8,5 @@ ``` -$messageActionEmpty = ; +$messageActionEmpty = ['_' => messageActionEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionGameScore.md b/docs/API_docs/constructors/messageActionGameScore.md index a2549883..910eb5a9 100644 --- a/docs/API_docs/constructors/messageActionGameScore.md +++ b/docs/API_docs/constructors/messageActionGameScore.md @@ -14,5 +14,5 @@ ``` -$messageActionGameScore = ['game_id' => long, 'score' => int, ]; +$messageActionGameScore = ['_' => messageActionGameScore', 'game_id' => long, 'score' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionHistoryClear.md b/docs/API_docs/constructors/messageActionHistoryClear.md index 06fa6011..20462271 100644 --- a/docs/API_docs/constructors/messageActionHistoryClear.md +++ b/docs/API_docs/constructors/messageActionHistoryClear.md @@ -1,9 +1,5 @@ ## Constructor: messageActionHistoryClear -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessageAction](../types/MessageAction.md) @@ -12,5 +8,5 @@ ``` -$messageActionHistoryClear = ; +$messageActionHistoryClear = ['_' => messageActionHistoryClear', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageActionPinMessage.md b/docs/API_docs/constructors/messageActionPinMessage.md index 062bc2d4..9978e1c1 100644 --- a/docs/API_docs/constructors/messageActionPinMessage.md +++ b/docs/API_docs/constructors/messageActionPinMessage.md @@ -1,9 +1,5 @@ ## Constructor: messageActionPinMessage -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessageAction](../types/MessageAction.md) @@ -12,5 +8,5 @@ ``` -$messageActionPinMessage = ; +$messageActionPinMessage = ['_' => messageActionPinMessage', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageEmpty.md b/docs/API_docs/constructors/messageEmpty.md index 82c60bd8..4ef3a164 100644 --- a/docs/API_docs/constructors/messageEmpty.md +++ b/docs/API_docs/constructors/messageEmpty.md @@ -13,5 +13,5 @@ ``` -$messageEmpty = ['id' => int, ]; +$messageEmpty = ['_' => messageEmpty', 'id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageEntityBold.md b/docs/API_docs/constructors/messageEntityBold.md index a9bd8666..56c58867 100644 --- a/docs/API_docs/constructors/messageEntityBold.md +++ b/docs/API_docs/constructors/messageEntityBold.md @@ -14,5 +14,5 @@ ``` -$messageEntityBold = ['offset' => int, 'length' => int, ]; +$messageEntityBold = ['_' => messageEntityBold', 'offset' => int, 'length' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageEntityBotCommand.md b/docs/API_docs/constructors/messageEntityBotCommand.md index a756f299..98b222a7 100644 --- a/docs/API_docs/constructors/messageEntityBotCommand.md +++ b/docs/API_docs/constructors/messageEntityBotCommand.md @@ -14,5 +14,5 @@ ``` -$messageEntityBotCommand = ['offset' => int, 'length' => int, ]; +$messageEntityBotCommand = ['_' => messageEntityBotCommand', 'offset' => int, 'length' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageEntityCode.md b/docs/API_docs/constructors/messageEntityCode.md index 17ec7d28..44016531 100644 --- a/docs/API_docs/constructors/messageEntityCode.md +++ b/docs/API_docs/constructors/messageEntityCode.md @@ -14,5 +14,5 @@ ``` -$messageEntityCode = ['offset' => int, 'length' => int, ]; +$messageEntityCode = ['_' => messageEntityCode', 'offset' => int, 'length' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageEntityEmail.md b/docs/API_docs/constructors/messageEntityEmail.md index 3d3cf6c9..40465036 100644 --- a/docs/API_docs/constructors/messageEntityEmail.md +++ b/docs/API_docs/constructors/messageEntityEmail.md @@ -14,5 +14,5 @@ ``` -$messageEntityEmail = ['offset' => int, 'length' => int, ]; +$messageEntityEmail = ['_' => messageEntityEmail', 'offset' => int, 'length' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageEntityHashtag.md b/docs/API_docs/constructors/messageEntityHashtag.md index 1b5d2190..f45baaf7 100644 --- a/docs/API_docs/constructors/messageEntityHashtag.md +++ b/docs/API_docs/constructors/messageEntityHashtag.md @@ -14,5 +14,5 @@ ``` -$messageEntityHashtag = ['offset' => int, 'length' => int, ]; +$messageEntityHashtag = ['_' => messageEntityHashtag', 'offset' => int, 'length' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageEntityItalic.md b/docs/API_docs/constructors/messageEntityItalic.md index 5734d118..213dc57f 100644 --- a/docs/API_docs/constructors/messageEntityItalic.md +++ b/docs/API_docs/constructors/messageEntityItalic.md @@ -14,5 +14,5 @@ ``` -$messageEntityItalic = ['offset' => int, 'length' => int, ]; +$messageEntityItalic = ['_' => messageEntityItalic', 'offset' => int, 'length' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageEntityMention.md b/docs/API_docs/constructors/messageEntityMention.md index aaec8ffc..fdd37c30 100644 --- a/docs/API_docs/constructors/messageEntityMention.md +++ b/docs/API_docs/constructors/messageEntityMention.md @@ -14,5 +14,5 @@ ``` -$messageEntityMention = ['offset' => int, 'length' => int, ]; +$messageEntityMention = ['_' => messageEntityMention', 'offset' => int, 'length' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageEntityMentionName.md b/docs/API_docs/constructors/messageEntityMentionName.md index 18ca2c51..f97f5906 100644 --- a/docs/API_docs/constructors/messageEntityMentionName.md +++ b/docs/API_docs/constructors/messageEntityMentionName.md @@ -15,5 +15,5 @@ ``` -$messageEntityMentionName = ['offset' => int, 'length' => int, 'user_id' => int, ]; +$messageEntityMentionName = ['_' => messageEntityMentionName', 'offset' => int, 'length' => int, 'user_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageEntityPre.md b/docs/API_docs/constructors/messageEntityPre.md index 0cb0adeb..45062bf6 100644 --- a/docs/API_docs/constructors/messageEntityPre.md +++ b/docs/API_docs/constructors/messageEntityPre.md @@ -15,5 +15,5 @@ ``` -$messageEntityPre = ['offset' => int, 'length' => int, 'language' => string, ]; +$messageEntityPre = ['_' => messageEntityPre', 'offset' => int, 'length' => int, 'language' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageEntityTextUrl.md b/docs/API_docs/constructors/messageEntityTextUrl.md index 820e6ba2..5c308c2b 100644 --- a/docs/API_docs/constructors/messageEntityTextUrl.md +++ b/docs/API_docs/constructors/messageEntityTextUrl.md @@ -15,5 +15,5 @@ ``` -$messageEntityTextUrl = ['offset' => int, 'length' => int, 'url' => string, ]; +$messageEntityTextUrl = ['_' => messageEntityTextUrl', 'offset' => int, 'length' => int, 'url' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageEntityUnknown.md b/docs/API_docs/constructors/messageEntityUnknown.md index c4722d23..dd54880d 100644 --- a/docs/API_docs/constructors/messageEntityUnknown.md +++ b/docs/API_docs/constructors/messageEntityUnknown.md @@ -14,5 +14,5 @@ ``` -$messageEntityUnknown = ['offset' => int, 'length' => int, ]; +$messageEntityUnknown = ['_' => messageEntityUnknown', 'offset' => int, 'length' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageEntityUrl.md b/docs/API_docs/constructors/messageEntityUrl.md index 470e045f..9bc49ae1 100644 --- a/docs/API_docs/constructors/messageEntityUrl.md +++ b/docs/API_docs/constructors/messageEntityUrl.md @@ -14,5 +14,5 @@ ``` -$messageEntityUrl = ['offset' => int, 'length' => int, ]; +$messageEntityUrl = ['_' => messageEntityUrl', 'offset' => int, 'length' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageFwdHeader.md b/docs/API_docs/constructors/messageFwdHeader.md index 086ad47d..e7a67fa4 100644 --- a/docs/API_docs/constructors/messageFwdHeader.md +++ b/docs/API_docs/constructors/messageFwdHeader.md @@ -16,5 +16,5 @@ ``` -$messageFwdHeader = ['from_id' => int, 'date' => int, 'channel_id' => int, 'channel_post' => int, ]; +$messageFwdHeader = ['_' => messageFwdHeader', 'from_id' => int, 'date' => int, 'channel_id' => int, 'channel_post' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageMediaContact.md b/docs/API_docs/constructors/messageMediaContact.md index 48b689ca..c3d859ea 100644 --- a/docs/API_docs/constructors/messageMediaContact.md +++ b/docs/API_docs/constructors/messageMediaContact.md @@ -16,5 +16,5 @@ ``` -$messageMediaContact = ['phone_number' => string, 'first_name' => string, 'last_name' => string, 'user_id' => int, ]; +$messageMediaContact = ['_' => messageMediaContact', 'phone_number' => string, 'first_name' => string, 'last_name' => string, 'user_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageMediaDocument.md b/docs/API_docs/constructors/messageMediaDocument.md index 20421aa5..4bd08cd2 100644 --- a/docs/API_docs/constructors/messageMediaDocument.md +++ b/docs/API_docs/constructors/messageMediaDocument.md @@ -14,5 +14,5 @@ ``` -$messageMediaDocument = ['document' => Document, 'caption' => string, ]; +$messageMediaDocument = ['_' => messageMediaDocument', 'document' => Document, 'caption' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageMediaEmpty.md b/docs/API_docs/constructors/messageMediaEmpty.md index 5cae7c1c..881713d4 100644 --- a/docs/API_docs/constructors/messageMediaEmpty.md +++ b/docs/API_docs/constructors/messageMediaEmpty.md @@ -1,9 +1,5 @@ ## Constructor: messageMediaEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessageMedia](../types/MessageMedia.md) @@ -12,5 +8,5 @@ ``` -$messageMediaEmpty = ; +$messageMediaEmpty = ['_' => messageMediaEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageMediaGame.md b/docs/API_docs/constructors/messageMediaGame.md index 6fe35672..42a248fb 100644 --- a/docs/API_docs/constructors/messageMediaGame.md +++ b/docs/API_docs/constructors/messageMediaGame.md @@ -13,5 +13,5 @@ ``` -$messageMediaGame = ['game' => Game, ]; +$messageMediaGame = ['_' => messageMediaGame', 'game' => Game, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageMediaGeo.md b/docs/API_docs/constructors/messageMediaGeo.md index dfcdc60b..b330614a 100644 --- a/docs/API_docs/constructors/messageMediaGeo.md +++ b/docs/API_docs/constructors/messageMediaGeo.md @@ -13,5 +13,5 @@ ``` -$messageMediaGeo = ['geo' => GeoPoint, ]; +$messageMediaGeo = ['_' => messageMediaGeo', 'geo' => GeoPoint, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageMediaPhoto.md b/docs/API_docs/constructors/messageMediaPhoto.md index 943d9312..79ce86a8 100644 --- a/docs/API_docs/constructors/messageMediaPhoto.md +++ b/docs/API_docs/constructors/messageMediaPhoto.md @@ -14,5 +14,5 @@ ``` -$messageMediaPhoto = ['photo' => Photo, 'caption' => string, ]; +$messageMediaPhoto = ['_' => messageMediaPhoto', 'photo' => Photo, 'caption' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageMediaUnsupported.md b/docs/API_docs/constructors/messageMediaUnsupported.md index 95b197ce..5a4ab661 100644 --- a/docs/API_docs/constructors/messageMediaUnsupported.md +++ b/docs/API_docs/constructors/messageMediaUnsupported.md @@ -1,9 +1,5 @@ ## Constructor: messageMediaUnsupported -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [MessageMedia](../types/MessageMedia.md) @@ -12,5 +8,5 @@ ``` -$messageMediaUnsupported = ; +$messageMediaUnsupported = ['_' => messageMediaUnsupported', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageMediaVenue.md b/docs/API_docs/constructors/messageMediaVenue.md index fd6acdb6..d2a277b8 100644 --- a/docs/API_docs/constructors/messageMediaVenue.md +++ b/docs/API_docs/constructors/messageMediaVenue.md @@ -17,5 +17,5 @@ ``` -$messageMediaVenue = ['geo' => GeoPoint, 'title' => string, 'address' => string, 'provider' => string, 'venue_id' => string, ]; +$messageMediaVenue = ['_' => messageMediaVenue', 'geo' => GeoPoint, 'title' => string, 'address' => string, 'provider' => string, 'venue_id' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageMediaWebPage.md b/docs/API_docs/constructors/messageMediaWebPage.md index 517e126e..afc17a1f 100644 --- a/docs/API_docs/constructors/messageMediaWebPage.md +++ b/docs/API_docs/constructors/messageMediaWebPage.md @@ -13,5 +13,5 @@ ``` -$messageMediaWebPage = ['webpage' => WebPage, ]; +$messageMediaWebPage = ['_' => messageMediaWebPage', 'webpage' => WebPage, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageRange.md b/docs/API_docs/constructors/messageRange.md index 47ae8907..c4a50b90 100644 --- a/docs/API_docs/constructors/messageRange.md +++ b/docs/API_docs/constructors/messageRange.md @@ -14,5 +14,5 @@ ``` -$messageRange = ['min_id' => int, 'max_id' => int, ]; +$messageRange = ['_' => messageRange', 'min_id' => int, 'max_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messageService.md b/docs/API_docs/constructors/messageService.md index 0a04f3cc..26e77380 100644 --- a/docs/API_docs/constructors/messageService.md +++ b/docs/API_docs/constructors/messageService.md @@ -23,5 +23,5 @@ ``` -$messageService = ['out' => Bool, 'mentioned' => Bool, 'media_unread' => Bool, 'silent' => Bool, 'post' => Bool, 'id' => int, 'from_id' => int, 'to_id' => Peer, 'reply_to_msg_id' => int, 'date' => int, 'action' => MessageAction, ]; +$messageService = ['_' => messageService', 'out' => true, 'mentioned' => true, 'media_unread' => true, 'silent' => true, 'post' => true, 'id' => int, 'from_id' => int, 'to_id' => Peer, 'reply_to_msg_id' => int, 'date' => int, 'action' => MessageAction, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_affectedHistory.md b/docs/API_docs/constructors/messages_affectedHistory.md index 8a440991..780f7c7a 100644 --- a/docs/API_docs/constructors/messages_affectedHistory.md +++ b/docs/API_docs/constructors/messages_affectedHistory.md @@ -15,5 +15,5 @@ ``` -$messages_affectedHistory = ['pts' => int, 'pts_count' => int, 'offset' => int, ]; +$messages_affectedHistory = ['_' => messages_affectedHistory', 'pts' => int, 'pts_count' => int, 'offset' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_affectedMessages.md b/docs/API_docs/constructors/messages_affectedMessages.md index a8b18a4a..c3bf027c 100644 --- a/docs/API_docs/constructors/messages_affectedMessages.md +++ b/docs/API_docs/constructors/messages_affectedMessages.md @@ -14,5 +14,5 @@ ``` -$messages_affectedMessages = ['pts' => int, 'pts_count' => int, ]; +$messages_affectedMessages = ['_' => messages_affectedMessages', 'pts' => int, 'pts_count' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_allStickers.md b/docs/API_docs/constructors/messages_allStickers.md index 82784c72..38d391dc 100644 --- a/docs/API_docs/constructors/messages_allStickers.md +++ b/docs/API_docs/constructors/messages_allStickers.md @@ -14,5 +14,5 @@ ``` -$messages_allStickers = ['hash' => int, 'sets' => [StickerSet], ]; +$messages_allStickers = ['_' => messages_allStickers', 'hash' => int, 'sets' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_allStickersNotModified.md b/docs/API_docs/constructors/messages_allStickersNotModified.md index 7a35994c..ceef179c 100644 --- a/docs/API_docs/constructors/messages_allStickersNotModified.md +++ b/docs/API_docs/constructors/messages_allStickersNotModified.md @@ -1,9 +1,5 @@ ## Constructor: messages\_allStickersNotModified -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [messages\_AllStickers](../types/messages\_AllStickers.md) @@ -12,5 +8,5 @@ ``` -$messages_allStickersNotModified = ; +$messages_allStickersNotModified = ['_' => messages_allStickersNotModified', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_archivedStickers.md b/docs/API_docs/constructors/messages_archivedStickers.md index 332d3e45..3e93d36e 100644 --- a/docs/API_docs/constructors/messages_archivedStickers.md +++ b/docs/API_docs/constructors/messages_archivedStickers.md @@ -14,5 +14,5 @@ ``` -$messages_archivedStickers = ['count' => int, 'sets' => [StickerSetCovered], ]; +$messages_archivedStickers = ['_' => messages_archivedStickers', 'count' => int, 'sets' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_botCallbackAnswer.md b/docs/API_docs/constructors/messages_botCallbackAnswer.md index 8c143948..b6702888 100644 --- a/docs/API_docs/constructors/messages_botCallbackAnswer.md +++ b/docs/API_docs/constructors/messages_botCallbackAnswer.md @@ -16,5 +16,5 @@ ``` -$messages_botCallbackAnswer = ['alert' => Bool, 'has_url' => Bool, 'message' => string, 'url' => string, ]; +$messages_botCallbackAnswer = ['_' => messages_botCallbackAnswer', 'alert' => true, 'has_url' => true, 'message' => string, 'url' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_botResults.md b/docs/API_docs/constructors/messages_botResults.md index 79b774bd..6301abaf 100644 --- a/docs/API_docs/constructors/messages_botResults.md +++ b/docs/API_docs/constructors/messages_botResults.md @@ -17,5 +17,5 @@ ``` -$messages_botResults = ['gallery' => Bool, 'query_id' => long, 'next_offset' => string, 'switch_pm' => InlineBotSwitchPM, 'results' => [BotInlineResult], ]; +$messages_botResults = ['_' => messages_botResults', 'gallery' => true, 'query_id' => long, 'next_offset' => string, 'switch_pm' => InlineBotSwitchPM, 'results' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_channelMessages.md b/docs/API_docs/constructors/messages_channelMessages.md index a8ba4fd7..f26935e4 100644 --- a/docs/API_docs/constructors/messages_channelMessages.md +++ b/docs/API_docs/constructors/messages_channelMessages.md @@ -17,5 +17,5 @@ ``` -$messages_channelMessages = ['pts' => int, 'count' => int, 'messages' => [Message], 'chats' => [Chat], 'users' => [User], ]; +$messages_channelMessages = ['_' => messages_channelMessages', 'pts' => int, 'count' => int, 'messages' => [Vector t], 'chats' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_chatFull.md b/docs/API_docs/constructors/messages_chatFull.md index 063f0cdc..6a7ae894 100644 --- a/docs/API_docs/constructors/messages_chatFull.md +++ b/docs/API_docs/constructors/messages_chatFull.md @@ -15,5 +15,5 @@ ``` -$messages_chatFull = ['full_chat' => ChatFull, 'chats' => [Chat], 'users' => [User], ]; +$messages_chatFull = ['_' => messages_chatFull', 'full_chat' => ChatFull, 'chats' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_chats.md b/docs/API_docs/constructors/messages_chats.md index 93b1ad68..8616c856 100644 --- a/docs/API_docs/constructors/messages_chats.md +++ b/docs/API_docs/constructors/messages_chats.md @@ -13,5 +13,5 @@ ``` -$messages_chats = ['chats' => [Chat], ]; +$messages_chats = ['_' => messages_chats', 'chats' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_dhConfig.md b/docs/API_docs/constructors/messages_dhConfig.md index 4582f400..c74be8e3 100644 --- a/docs/API_docs/constructors/messages_dhConfig.md +++ b/docs/API_docs/constructors/messages_dhConfig.md @@ -16,5 +16,5 @@ ``` -$messages_dhConfig = ['g' => int, 'p' => bytes, 'version' => int, 'random' => bytes, ]; +$messages_dhConfig = ['_' => messages_dhConfig', 'g' => int, 'p' => bytes, 'version' => int, 'random' => bytes, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_dhConfigNotModified.md b/docs/API_docs/constructors/messages_dhConfigNotModified.md index 17efd0e9..86152e22 100644 --- a/docs/API_docs/constructors/messages_dhConfigNotModified.md +++ b/docs/API_docs/constructors/messages_dhConfigNotModified.md @@ -13,5 +13,5 @@ ``` -$messages_dhConfigNotModified = ['random' => bytes, ]; +$messages_dhConfigNotModified = ['_' => messages_dhConfigNotModified', 'random' => bytes, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_dialogs.md b/docs/API_docs/constructors/messages_dialogs.md index 1e6765f8..740d20fc 100644 --- a/docs/API_docs/constructors/messages_dialogs.md +++ b/docs/API_docs/constructors/messages_dialogs.md @@ -16,5 +16,5 @@ ``` -$messages_dialogs = ['dialogs' => [Dialog], 'messages' => [Message], 'chats' => [Chat], 'users' => [User], ]; +$messages_dialogs = ['_' => messages_dialogs', 'dialogs' => [Vector t], 'messages' => [Vector t], 'chats' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_dialogsSlice.md b/docs/API_docs/constructors/messages_dialogsSlice.md index 6ee0dcce..275093e0 100644 --- a/docs/API_docs/constructors/messages_dialogsSlice.md +++ b/docs/API_docs/constructors/messages_dialogsSlice.md @@ -17,5 +17,5 @@ ``` -$messages_dialogsSlice = ['count' => int, 'dialogs' => [Dialog], 'messages' => [Message], 'chats' => [Chat], 'users' => [User], ]; +$messages_dialogsSlice = ['_' => messages_dialogsSlice', 'count' => int, 'dialogs' => [Vector t], 'messages' => [Vector t], 'chats' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_featuredStickers.md b/docs/API_docs/constructors/messages_featuredStickers.md index 74fea0c2..daeacd7c 100644 --- a/docs/API_docs/constructors/messages_featuredStickers.md +++ b/docs/API_docs/constructors/messages_featuredStickers.md @@ -15,5 +15,5 @@ ``` -$messages_featuredStickers = ['hash' => int, 'sets' => [StickerSetCovered], 'unread' => [long], ]; +$messages_featuredStickers = ['_' => messages_featuredStickers', 'hash' => int, 'sets' => [Vector t], 'unread' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_featuredStickersNotModified.md b/docs/API_docs/constructors/messages_featuredStickersNotModified.md index b219d8fd..cf73af5b 100644 --- a/docs/API_docs/constructors/messages_featuredStickersNotModified.md +++ b/docs/API_docs/constructors/messages_featuredStickersNotModified.md @@ -1,9 +1,5 @@ ## Constructor: messages\_featuredStickersNotModified -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [messages\_FeaturedStickers](../types/messages\_FeaturedStickers.md) @@ -12,5 +8,5 @@ ``` -$messages_featuredStickersNotModified = ; +$messages_featuredStickersNotModified = ['_' => messages_featuredStickersNotModified', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_foundGifs.md b/docs/API_docs/constructors/messages_foundGifs.md index afff68e1..79bc02e2 100644 --- a/docs/API_docs/constructors/messages_foundGifs.md +++ b/docs/API_docs/constructors/messages_foundGifs.md @@ -14,5 +14,5 @@ ``` -$messages_foundGifs = ['next_offset' => int, 'results' => [FoundGif], ]; +$messages_foundGifs = ['_' => messages_foundGifs', 'next_offset' => int, 'results' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_highScores.md b/docs/API_docs/constructors/messages_highScores.md index 9b6a15d7..a0bde2af 100644 --- a/docs/API_docs/constructors/messages_highScores.md +++ b/docs/API_docs/constructors/messages_highScores.md @@ -14,5 +14,5 @@ ``` -$messages_highScores = ['scores' => [HighScore], 'users' => [User], ]; +$messages_highScores = ['_' => messages_highScores', 'scores' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_messageEditData.md b/docs/API_docs/constructors/messages_messageEditData.md index 667f433a..a35d0f3f 100644 --- a/docs/API_docs/constructors/messages_messageEditData.md +++ b/docs/API_docs/constructors/messages_messageEditData.md @@ -13,5 +13,5 @@ ``` -$messages_messageEditData = ['caption' => Bool, ]; +$messages_messageEditData = ['_' => messages_messageEditData', 'caption' => true, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_messages.md b/docs/API_docs/constructors/messages_messages.md index a33a03d6..24249bbf 100644 --- a/docs/API_docs/constructors/messages_messages.md +++ b/docs/API_docs/constructors/messages_messages.md @@ -15,5 +15,5 @@ ``` -$messages_messages = ['messages' => [Message], 'chats' => [Chat], 'users' => [User], ]; +$messages_messages = ['_' => messages_messages', 'messages' => [Vector t], 'chats' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_messagesSlice.md b/docs/API_docs/constructors/messages_messagesSlice.md index 80e922dc..71046a2a 100644 --- a/docs/API_docs/constructors/messages_messagesSlice.md +++ b/docs/API_docs/constructors/messages_messagesSlice.md @@ -16,5 +16,5 @@ ``` -$messages_messagesSlice = ['count' => int, 'messages' => [Message], 'chats' => [Chat], 'users' => [User], ]; +$messages_messagesSlice = ['_' => messages_messagesSlice', 'count' => int, 'messages' => [Vector t], 'chats' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_peerDialogs.md b/docs/API_docs/constructors/messages_peerDialogs.md index 8303ba9c..8bc2d1be 100644 --- a/docs/API_docs/constructors/messages_peerDialogs.md +++ b/docs/API_docs/constructors/messages_peerDialogs.md @@ -17,5 +17,5 @@ ``` -$messages_peerDialogs = ['dialogs' => [Dialog], 'messages' => [Message], 'chats' => [Chat], 'users' => [User], 'state' => updates_State, ]; +$messages_peerDialogs = ['_' => messages_peerDialogs', 'dialogs' => [Vector t], 'messages' => [Vector t], 'chats' => [Vector t], 'users' => [Vector t], 'state' => updates.State, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_recentStickers.md b/docs/API_docs/constructors/messages_recentStickers.md index 4e47f0e4..4246f40f 100644 --- a/docs/API_docs/constructors/messages_recentStickers.md +++ b/docs/API_docs/constructors/messages_recentStickers.md @@ -14,5 +14,5 @@ ``` -$messages_recentStickers = ['hash' => int, 'stickers' => [Document], ]; +$messages_recentStickers = ['_' => messages_recentStickers', 'hash' => int, 'stickers' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_recentStickersNotModified.md b/docs/API_docs/constructors/messages_recentStickersNotModified.md index 917710ee..a55b163e 100644 --- a/docs/API_docs/constructors/messages_recentStickersNotModified.md +++ b/docs/API_docs/constructors/messages_recentStickersNotModified.md @@ -1,9 +1,5 @@ ## Constructor: messages\_recentStickersNotModified -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [messages\_RecentStickers](../types/messages\_RecentStickers.md) @@ -12,5 +8,5 @@ ``` -$messages_recentStickersNotModified = ; +$messages_recentStickersNotModified = ['_' => messages_recentStickersNotModified', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_sentEncryptedFile.md b/docs/API_docs/constructors/messages_sentEncryptedFile.md index 95df48b1..5e1fc78c 100644 --- a/docs/API_docs/constructors/messages_sentEncryptedFile.md +++ b/docs/API_docs/constructors/messages_sentEncryptedFile.md @@ -14,5 +14,5 @@ ``` -$messages_sentEncryptedFile = ['date' => int, 'file' => EncryptedFile, ]; +$messages_sentEncryptedFile = ['_' => messages_sentEncryptedFile', 'date' => int, 'file' => EncryptedFile, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_sentEncryptedMessage.md b/docs/API_docs/constructors/messages_sentEncryptedMessage.md index d60c782f..ac9d4f12 100644 --- a/docs/API_docs/constructors/messages_sentEncryptedMessage.md +++ b/docs/API_docs/constructors/messages_sentEncryptedMessage.md @@ -13,5 +13,5 @@ ``` -$messages_sentEncryptedMessage = ['date' => int, ]; +$messages_sentEncryptedMessage = ['_' => messages_sentEncryptedMessage', 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_stickerSet.md b/docs/API_docs/constructors/messages_stickerSet.md index b0eacdb4..d5bbbe0e 100644 --- a/docs/API_docs/constructors/messages_stickerSet.md +++ b/docs/API_docs/constructors/messages_stickerSet.md @@ -15,5 +15,5 @@ ``` -$messages_stickerSet = ['set' => StickerSet, 'packs' => [StickerPack], 'documents' => [Document], ]; +$messages_stickerSet = ['_' => messages_stickerSet', 'set' => StickerSet, 'packs' => [Vector t], 'documents' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_stickerSetInstallResultArchive.md b/docs/API_docs/constructors/messages_stickerSetInstallResultArchive.md index c4e908dd..dead1033 100644 --- a/docs/API_docs/constructors/messages_stickerSetInstallResultArchive.md +++ b/docs/API_docs/constructors/messages_stickerSetInstallResultArchive.md @@ -13,5 +13,5 @@ ``` -$messages_stickerSetInstallResultArchive = ['sets' => [StickerSetCovered], ]; +$messages_stickerSetInstallResultArchive = ['_' => messages_stickerSetInstallResultArchive', 'sets' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_stickerSetInstallResultSuccess.md b/docs/API_docs/constructors/messages_stickerSetInstallResultSuccess.md index a6e2df64..c6c1db04 100644 --- a/docs/API_docs/constructors/messages_stickerSetInstallResultSuccess.md +++ b/docs/API_docs/constructors/messages_stickerSetInstallResultSuccess.md @@ -1,9 +1,5 @@ ## Constructor: messages\_stickerSetInstallResultSuccess -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [messages\_StickerSetInstallResult](../types/messages\_StickerSetInstallResult.md) @@ -12,5 +8,5 @@ ``` -$messages_stickerSetInstallResultSuccess = ; +$messages_stickerSetInstallResultSuccess = ['_' => messages_stickerSetInstallResultSuccess', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_stickers.md b/docs/API_docs/constructors/messages_stickers.md index 05d83d02..c64ecb7d 100644 --- a/docs/API_docs/constructors/messages_stickers.md +++ b/docs/API_docs/constructors/messages_stickers.md @@ -14,5 +14,5 @@ ``` -$messages_stickers = ['hash' => string, 'stickers' => [Document], ]; +$messages_stickers = ['_' => messages_stickers', 'hash' => string, 'stickers' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/messages_stickersNotModified.md b/docs/API_docs/constructors/messages_stickersNotModified.md index 441f5c6f..c3b8530b 100644 --- a/docs/API_docs/constructors/messages_stickersNotModified.md +++ b/docs/API_docs/constructors/messages_stickersNotModified.md @@ -1,9 +1,5 @@ ## Constructor: messages\_stickersNotModified -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [messages\_Stickers](../types/messages\_Stickers.md) @@ -12,5 +8,5 @@ ``` -$messages_stickersNotModified = ; +$messages_stickersNotModified = ['_' => messages_stickersNotModified', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/nearestDc.md b/docs/API_docs/constructors/nearestDc.md index dd47f094..74d9f9f5 100644 --- a/docs/API_docs/constructors/nearestDc.md +++ b/docs/API_docs/constructors/nearestDc.md @@ -15,5 +15,5 @@ ``` -$nearestDc = ['country' => string, 'this_dc' => int, 'nearest_dc' => int, ]; +$nearestDc = ['_' => nearestDc', 'country' => string, 'this_dc' => int, 'nearest_dc' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/notifyAll.md b/docs/API_docs/constructors/notifyAll.md index 9fe13531..2ed273a0 100644 --- a/docs/API_docs/constructors/notifyAll.md +++ b/docs/API_docs/constructors/notifyAll.md @@ -1,9 +1,5 @@ ## Constructor: notifyAll -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [NotifyPeer](../types/NotifyPeer.md) @@ -12,5 +8,5 @@ ``` -$notifyAll = ; +$notifyAll = ['_' => notifyAll', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/notifyChats.md b/docs/API_docs/constructors/notifyChats.md index 97cd6479..b708c97b 100644 --- a/docs/API_docs/constructors/notifyChats.md +++ b/docs/API_docs/constructors/notifyChats.md @@ -1,9 +1,5 @@ ## Constructor: notifyChats -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [NotifyPeer](../types/NotifyPeer.md) @@ -12,5 +8,5 @@ ``` -$notifyChats = ; +$notifyChats = ['_' => notifyChats', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/notifyPeer.md b/docs/API_docs/constructors/notifyPeer.md index e94ff0d0..858b5e9f 100644 --- a/docs/API_docs/constructors/notifyPeer.md +++ b/docs/API_docs/constructors/notifyPeer.md @@ -13,5 +13,5 @@ ``` -$notifyPeer = ['peer' => Peer, ]; +$notifyPeer = ['_' => notifyPeer', 'peer' => Peer, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/notifyUsers.md b/docs/API_docs/constructors/notifyUsers.md index 8880574e..11777ef8 100644 --- a/docs/API_docs/constructors/notifyUsers.md +++ b/docs/API_docs/constructors/notifyUsers.md @@ -1,9 +1,5 @@ ## Constructor: notifyUsers -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [NotifyPeer](../types/NotifyPeer.md) @@ -12,5 +8,5 @@ ``` -$notifyUsers = ; +$notifyUsers = ['_' => notifyUsers', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/null.md b/docs/API_docs/constructors/null.md index a15c819e..b5366c37 100644 --- a/docs/API_docs/constructors/null.md +++ b/docs/API_docs/constructors/null.md @@ -1,9 +1,5 @@ ## Constructor: null -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [Null](../types/Null.md) @@ -12,5 +8,5 @@ ``` -$null = ; +$null = ['_' => null', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/peerChannel.md b/docs/API_docs/constructors/peerChannel.md index f3e60c78..5cdc4f29 100644 --- a/docs/API_docs/constructors/peerChannel.md +++ b/docs/API_docs/constructors/peerChannel.md @@ -13,5 +13,5 @@ ``` -$peerChannel = ['channel_id' => int, ]; +$peerChannel = ['_' => peerChannel', 'channel_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/peerChat.md b/docs/API_docs/constructors/peerChat.md index 4073b776..cdf2acc7 100644 --- a/docs/API_docs/constructors/peerChat.md +++ b/docs/API_docs/constructors/peerChat.md @@ -13,5 +13,5 @@ ``` -$peerChat = ['chat_id' => int, ]; +$peerChat = ['_' => peerChat', 'chat_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/peerNotifyEventsAll.md b/docs/API_docs/constructors/peerNotifyEventsAll.md index 705d2ed0..5a13755b 100644 --- a/docs/API_docs/constructors/peerNotifyEventsAll.md +++ b/docs/API_docs/constructors/peerNotifyEventsAll.md @@ -1,9 +1,5 @@ ## Constructor: peerNotifyEventsAll -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [PeerNotifyEvents](../types/PeerNotifyEvents.md) @@ -12,5 +8,5 @@ ``` -$peerNotifyEventsAll = ; +$peerNotifyEventsAll = ['_' => peerNotifyEventsAll', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/peerNotifyEventsEmpty.md b/docs/API_docs/constructors/peerNotifyEventsEmpty.md index 7bb0dfcc..3c5f9f41 100644 --- a/docs/API_docs/constructors/peerNotifyEventsEmpty.md +++ b/docs/API_docs/constructors/peerNotifyEventsEmpty.md @@ -1,9 +1,5 @@ ## Constructor: peerNotifyEventsEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [PeerNotifyEvents](../types/PeerNotifyEvents.md) @@ -12,5 +8,5 @@ ``` -$peerNotifyEventsEmpty = ; +$peerNotifyEventsEmpty = ['_' => peerNotifyEventsEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/peerNotifySettings.md b/docs/API_docs/constructors/peerNotifySettings.md index 770fea1d..0fab0017 100644 --- a/docs/API_docs/constructors/peerNotifySettings.md +++ b/docs/API_docs/constructors/peerNotifySettings.md @@ -16,5 +16,5 @@ ``` -$peerNotifySettings = ['show_previews' => Bool, 'silent' => Bool, 'mute_until' => int, 'sound' => string, ]; +$peerNotifySettings = ['_' => peerNotifySettings', 'show_previews' => true, 'silent' => true, 'mute_until' => int, 'sound' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/peerNotifySettingsEmpty.md b/docs/API_docs/constructors/peerNotifySettingsEmpty.md index 098faabe..23e2e80e 100644 --- a/docs/API_docs/constructors/peerNotifySettingsEmpty.md +++ b/docs/API_docs/constructors/peerNotifySettingsEmpty.md @@ -1,9 +1,5 @@ ## Constructor: peerNotifySettingsEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [PeerNotifySettings](../types/PeerNotifySettings.md) @@ -12,5 +8,5 @@ ``` -$peerNotifySettingsEmpty = ; +$peerNotifySettingsEmpty = ['_' => peerNotifySettingsEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/peerSettings.md b/docs/API_docs/constructors/peerSettings.md index b5652582..9fd30db8 100644 --- a/docs/API_docs/constructors/peerSettings.md +++ b/docs/API_docs/constructors/peerSettings.md @@ -13,5 +13,5 @@ ``` -$peerSettings = ['report_spam' => Bool, ]; +$peerSettings = ['_' => peerSettings', 'report_spam' => true, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/peerUser.md b/docs/API_docs/constructors/peerUser.md index 988d7d4d..e3e6ed87 100644 --- a/docs/API_docs/constructors/peerUser.md +++ b/docs/API_docs/constructors/peerUser.md @@ -13,5 +13,5 @@ ``` -$peerUser = ['user_id' => int, ]; +$peerUser = ['_' => peerUser', 'user_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/photo.md b/docs/API_docs/constructors/photo.md index 1aa0d666..4479fca9 100644 --- a/docs/API_docs/constructors/photo.md +++ b/docs/API_docs/constructors/photo.md @@ -17,5 +17,5 @@ ``` -$photo = ['has_stickers' => Bool, 'id' => long, 'access_hash' => long, 'date' => int, 'sizes' => [PhotoSize], ]; +$photo = ['_' => photo', 'has_stickers' => true, 'id' => long, 'access_hash' => long, 'date' => int, 'sizes' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/photoCachedSize.md b/docs/API_docs/constructors/photoCachedSize.md index 7fa56f2b..843a637a 100644 --- a/docs/API_docs/constructors/photoCachedSize.md +++ b/docs/API_docs/constructors/photoCachedSize.md @@ -17,5 +17,5 @@ ``` -$photoCachedSize = ['type' => string, 'location' => FileLocation, 'w' => int, 'h' => int, 'bytes' => bytes, ]; +$photoCachedSize = ['_' => photoCachedSize', 'type' => string, 'location' => FileLocation, 'w' => int, 'h' => int, 'bytes' => bytes, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/photoEmpty.md b/docs/API_docs/constructors/photoEmpty.md index faced051..1a1032db 100644 --- a/docs/API_docs/constructors/photoEmpty.md +++ b/docs/API_docs/constructors/photoEmpty.md @@ -13,5 +13,5 @@ ``` -$photoEmpty = ['id' => long, ]; +$photoEmpty = ['_' => photoEmpty', 'id' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/photoSize.md b/docs/API_docs/constructors/photoSize.md index ffc12cbb..bc7cdfec 100644 --- a/docs/API_docs/constructors/photoSize.md +++ b/docs/API_docs/constructors/photoSize.md @@ -17,5 +17,5 @@ ``` -$photoSize = ['type' => string, 'location' => FileLocation, 'w' => int, 'h' => int, 'size' => int, ]; +$photoSize = ['_' => photoSize', 'type' => string, 'location' => FileLocation, 'w' => int, 'h' => int, 'size' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/photoSizeEmpty.md b/docs/API_docs/constructors/photoSizeEmpty.md index 65eeba06..269cc637 100644 --- a/docs/API_docs/constructors/photoSizeEmpty.md +++ b/docs/API_docs/constructors/photoSizeEmpty.md @@ -13,5 +13,5 @@ ``` -$photoSizeEmpty = ['type' => string, ]; +$photoSizeEmpty = ['_' => photoSizeEmpty', 'type' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/photos_photo.md b/docs/API_docs/constructors/photos_photo.md index 3b50375a..76121799 100644 --- a/docs/API_docs/constructors/photos_photo.md +++ b/docs/API_docs/constructors/photos_photo.md @@ -14,5 +14,5 @@ ``` -$photos_photo = ['photo' => Photo, 'users' => [User], ]; +$photos_photo = ['_' => photos_photo', 'photo' => Photo, 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/photos_photos.md b/docs/API_docs/constructors/photos_photos.md index 7e9ee400..f7d55e23 100644 --- a/docs/API_docs/constructors/photos_photos.md +++ b/docs/API_docs/constructors/photos_photos.md @@ -14,5 +14,5 @@ ``` -$photos_photos = ['photos' => [Photo], 'users' => [User], ]; +$photos_photos = ['_' => photos_photos', 'photos' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/photos_photosSlice.md b/docs/API_docs/constructors/photos_photosSlice.md index 7f135812..79dd7ce5 100644 --- a/docs/API_docs/constructors/photos_photosSlice.md +++ b/docs/API_docs/constructors/photos_photosSlice.md @@ -15,5 +15,5 @@ ``` -$photos_photosSlice = ['count' => int, 'photos' => [Photo], 'users' => [User], ]; +$photos_photosSlice = ['_' => photos_photosSlice', 'count' => int, 'photos' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/privacyKeyChatInvite.md b/docs/API_docs/constructors/privacyKeyChatInvite.md index fa764c76..e2adc3aa 100644 --- a/docs/API_docs/constructors/privacyKeyChatInvite.md +++ b/docs/API_docs/constructors/privacyKeyChatInvite.md @@ -1,9 +1,5 @@ ## Constructor: privacyKeyChatInvite -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [PrivacyKey](../types/PrivacyKey.md) @@ -12,5 +8,5 @@ ``` -$privacyKeyChatInvite = ; +$privacyKeyChatInvite = ['_' => privacyKeyChatInvite', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/privacyKeyStatusTimestamp.md b/docs/API_docs/constructors/privacyKeyStatusTimestamp.md index 8a6eee49..a90ad6de 100644 --- a/docs/API_docs/constructors/privacyKeyStatusTimestamp.md +++ b/docs/API_docs/constructors/privacyKeyStatusTimestamp.md @@ -1,9 +1,5 @@ ## Constructor: privacyKeyStatusTimestamp -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [PrivacyKey](../types/PrivacyKey.md) @@ -12,5 +8,5 @@ ``` -$privacyKeyStatusTimestamp = ; +$privacyKeyStatusTimestamp = ['_' => privacyKeyStatusTimestamp', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/privacyValueAllowAll.md b/docs/API_docs/constructors/privacyValueAllowAll.md index f872e6b6..55753b74 100644 --- a/docs/API_docs/constructors/privacyValueAllowAll.md +++ b/docs/API_docs/constructors/privacyValueAllowAll.md @@ -1,9 +1,5 @@ ## Constructor: privacyValueAllowAll -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [PrivacyRule](../types/PrivacyRule.md) @@ -12,5 +8,5 @@ ``` -$privacyValueAllowAll = ; +$privacyValueAllowAll = ['_' => privacyValueAllowAll', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/privacyValueAllowContacts.md b/docs/API_docs/constructors/privacyValueAllowContacts.md index 862c59fe..a851db9a 100644 --- a/docs/API_docs/constructors/privacyValueAllowContacts.md +++ b/docs/API_docs/constructors/privacyValueAllowContacts.md @@ -1,9 +1,5 @@ ## Constructor: privacyValueAllowContacts -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [PrivacyRule](../types/PrivacyRule.md) @@ -12,5 +8,5 @@ ``` -$privacyValueAllowContacts = ; +$privacyValueAllowContacts = ['_' => privacyValueAllowContacts', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/privacyValueAllowUsers.md b/docs/API_docs/constructors/privacyValueAllowUsers.md index 883a5e74..8aeff226 100644 --- a/docs/API_docs/constructors/privacyValueAllowUsers.md +++ b/docs/API_docs/constructors/privacyValueAllowUsers.md @@ -13,5 +13,5 @@ ``` -$privacyValueAllowUsers = ['users' => [int], ]; +$privacyValueAllowUsers = ['_' => privacyValueAllowUsers', 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/privacyValueDisallowAll.md b/docs/API_docs/constructors/privacyValueDisallowAll.md index b432fa29..79a491c1 100644 --- a/docs/API_docs/constructors/privacyValueDisallowAll.md +++ b/docs/API_docs/constructors/privacyValueDisallowAll.md @@ -1,9 +1,5 @@ ## Constructor: privacyValueDisallowAll -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [PrivacyRule](../types/PrivacyRule.md) @@ -12,5 +8,5 @@ ``` -$privacyValueDisallowAll = ; +$privacyValueDisallowAll = ['_' => privacyValueDisallowAll', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/privacyValueDisallowContacts.md b/docs/API_docs/constructors/privacyValueDisallowContacts.md index f9fc2d6a..19d51a31 100644 --- a/docs/API_docs/constructors/privacyValueDisallowContacts.md +++ b/docs/API_docs/constructors/privacyValueDisallowContacts.md @@ -1,9 +1,5 @@ ## Constructor: privacyValueDisallowContacts -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [PrivacyRule](../types/PrivacyRule.md) @@ -12,5 +8,5 @@ ``` -$privacyValueDisallowContacts = ; +$privacyValueDisallowContacts = ['_' => privacyValueDisallowContacts', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/privacyValueDisallowUsers.md b/docs/API_docs/constructors/privacyValueDisallowUsers.md index 108e8a48..3345553c 100644 --- a/docs/API_docs/constructors/privacyValueDisallowUsers.md +++ b/docs/API_docs/constructors/privacyValueDisallowUsers.md @@ -13,5 +13,5 @@ ``` -$privacyValueDisallowUsers = ['users' => [int], ]; +$privacyValueDisallowUsers = ['_' => privacyValueDisallowUsers', 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/receivedNotifyMessage.md b/docs/API_docs/constructors/receivedNotifyMessage.md index b512e787..f944a936 100644 --- a/docs/API_docs/constructors/receivedNotifyMessage.md +++ b/docs/API_docs/constructors/receivedNotifyMessage.md @@ -13,5 +13,5 @@ ``` -$receivedNotifyMessage = ['id' => int, ]; +$receivedNotifyMessage = ['_' => receivedNotifyMessage', 'id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/replyInlineMarkup.md b/docs/API_docs/constructors/replyInlineMarkup.md index f02976eb..d685fc6b 100644 --- a/docs/API_docs/constructors/replyInlineMarkup.md +++ b/docs/API_docs/constructors/replyInlineMarkup.md @@ -13,5 +13,5 @@ ``` -$replyInlineMarkup = ['rows' => [KeyboardButtonRow], ]; +$replyInlineMarkup = ['_' => replyInlineMarkup', 'rows' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/replyKeyboardForceReply.md b/docs/API_docs/constructors/replyKeyboardForceReply.md index 61b78564..fc816103 100644 --- a/docs/API_docs/constructors/replyKeyboardForceReply.md +++ b/docs/API_docs/constructors/replyKeyboardForceReply.md @@ -14,5 +14,5 @@ ``` -$replyKeyboardForceReply = ['single_use' => Bool, 'selective' => Bool, ]; +$replyKeyboardForceReply = ['_' => replyKeyboardForceReply', 'single_use' => true, 'selective' => true, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/replyKeyboardHide.md b/docs/API_docs/constructors/replyKeyboardHide.md index ee3abdda..d6f1126c 100644 --- a/docs/API_docs/constructors/replyKeyboardHide.md +++ b/docs/API_docs/constructors/replyKeyboardHide.md @@ -13,5 +13,5 @@ ``` -$replyKeyboardHide = ['selective' => Bool, ]; +$replyKeyboardHide = ['_' => replyKeyboardHide', 'selective' => true, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/replyKeyboardMarkup.md b/docs/API_docs/constructors/replyKeyboardMarkup.md index 01115a81..271fa3b2 100644 --- a/docs/API_docs/constructors/replyKeyboardMarkup.md +++ b/docs/API_docs/constructors/replyKeyboardMarkup.md @@ -16,5 +16,5 @@ ``` -$replyKeyboardMarkup = ['resize' => Bool, 'single_use' => Bool, 'selective' => Bool, 'rows' => [KeyboardButtonRow], ]; +$replyKeyboardMarkup = ['_' => replyKeyboardMarkup', 'resize' => true, 'single_use' => true, 'selective' => true, 'rows' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/sendMessageCancelAction.md b/docs/API_docs/constructors/sendMessageCancelAction.md index 0cbbb44c..bac59ff6 100644 --- a/docs/API_docs/constructors/sendMessageCancelAction.md +++ b/docs/API_docs/constructors/sendMessageCancelAction.md @@ -1,9 +1,5 @@ ## Constructor: sendMessageCancelAction -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [SendMessageAction](../types/SendMessageAction.md) @@ -12,5 +8,5 @@ ``` -$sendMessageCancelAction = ; +$sendMessageCancelAction = ['_' => sendMessageCancelAction', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/sendMessageChooseContactAction.md b/docs/API_docs/constructors/sendMessageChooseContactAction.md index 529691be..1365a333 100644 --- a/docs/API_docs/constructors/sendMessageChooseContactAction.md +++ b/docs/API_docs/constructors/sendMessageChooseContactAction.md @@ -1,9 +1,5 @@ ## Constructor: sendMessageChooseContactAction -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [SendMessageAction](../types/SendMessageAction.md) @@ -12,5 +8,5 @@ ``` -$sendMessageChooseContactAction = ; +$sendMessageChooseContactAction = ['_' => sendMessageChooseContactAction', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/sendMessageGamePlayAction.md b/docs/API_docs/constructors/sendMessageGamePlayAction.md index 7fa16b6c..9bfbf063 100644 --- a/docs/API_docs/constructors/sendMessageGamePlayAction.md +++ b/docs/API_docs/constructors/sendMessageGamePlayAction.md @@ -1,9 +1,5 @@ ## Constructor: sendMessageGamePlayAction -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [SendMessageAction](../types/SendMessageAction.md) @@ -12,5 +8,5 @@ ``` -$sendMessageGamePlayAction = ; +$sendMessageGamePlayAction = ['_' => sendMessageGamePlayAction', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/sendMessageGeoLocationAction.md b/docs/API_docs/constructors/sendMessageGeoLocationAction.md index 7b576a64..5301607a 100644 --- a/docs/API_docs/constructors/sendMessageGeoLocationAction.md +++ b/docs/API_docs/constructors/sendMessageGeoLocationAction.md @@ -1,9 +1,5 @@ ## Constructor: sendMessageGeoLocationAction -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [SendMessageAction](../types/SendMessageAction.md) @@ -12,5 +8,5 @@ ``` -$sendMessageGeoLocationAction = ; +$sendMessageGeoLocationAction = ['_' => sendMessageGeoLocationAction', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/sendMessageRecordAudioAction.md b/docs/API_docs/constructors/sendMessageRecordAudioAction.md index 804c1184..05e9978c 100644 --- a/docs/API_docs/constructors/sendMessageRecordAudioAction.md +++ b/docs/API_docs/constructors/sendMessageRecordAudioAction.md @@ -1,9 +1,5 @@ ## Constructor: sendMessageRecordAudioAction -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [SendMessageAction](../types/SendMessageAction.md) @@ -12,5 +8,5 @@ ``` -$sendMessageRecordAudioAction = ; +$sendMessageRecordAudioAction = ['_' => sendMessageRecordAudioAction', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/sendMessageRecordVideoAction.md b/docs/API_docs/constructors/sendMessageRecordVideoAction.md index 1f1b7967..34222eb0 100644 --- a/docs/API_docs/constructors/sendMessageRecordVideoAction.md +++ b/docs/API_docs/constructors/sendMessageRecordVideoAction.md @@ -1,9 +1,5 @@ ## Constructor: sendMessageRecordVideoAction -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [SendMessageAction](../types/SendMessageAction.md) @@ -12,5 +8,5 @@ ``` -$sendMessageRecordVideoAction = ; +$sendMessageRecordVideoAction = ['_' => sendMessageRecordVideoAction', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/sendMessageTypingAction.md b/docs/API_docs/constructors/sendMessageTypingAction.md index efff9706..abd753a0 100644 --- a/docs/API_docs/constructors/sendMessageTypingAction.md +++ b/docs/API_docs/constructors/sendMessageTypingAction.md @@ -1,9 +1,5 @@ ## Constructor: sendMessageTypingAction -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [SendMessageAction](../types/SendMessageAction.md) @@ -12,5 +8,5 @@ ``` -$sendMessageTypingAction = ; +$sendMessageTypingAction = ['_' => sendMessageTypingAction', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/sendMessageUploadAudioAction.md b/docs/API_docs/constructors/sendMessageUploadAudioAction.md index e42b8597..b8fd4241 100644 --- a/docs/API_docs/constructors/sendMessageUploadAudioAction.md +++ b/docs/API_docs/constructors/sendMessageUploadAudioAction.md @@ -13,5 +13,5 @@ ``` -$sendMessageUploadAudioAction = ['progress' => int, ]; +$sendMessageUploadAudioAction = ['_' => sendMessageUploadAudioAction', 'progress' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/sendMessageUploadDocumentAction.md b/docs/API_docs/constructors/sendMessageUploadDocumentAction.md index 662591e2..cb25082b 100644 --- a/docs/API_docs/constructors/sendMessageUploadDocumentAction.md +++ b/docs/API_docs/constructors/sendMessageUploadDocumentAction.md @@ -13,5 +13,5 @@ ``` -$sendMessageUploadDocumentAction = ['progress' => int, ]; +$sendMessageUploadDocumentAction = ['_' => sendMessageUploadDocumentAction', 'progress' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/sendMessageUploadPhotoAction.md b/docs/API_docs/constructors/sendMessageUploadPhotoAction.md index 4631b76f..44e2611e 100644 --- a/docs/API_docs/constructors/sendMessageUploadPhotoAction.md +++ b/docs/API_docs/constructors/sendMessageUploadPhotoAction.md @@ -13,5 +13,5 @@ ``` -$sendMessageUploadPhotoAction = ['progress' => int, ]; +$sendMessageUploadPhotoAction = ['_' => sendMessageUploadPhotoAction', 'progress' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/sendMessageUploadVideoAction.md b/docs/API_docs/constructors/sendMessageUploadVideoAction.md index f671bddd..a4b65b1b 100644 --- a/docs/API_docs/constructors/sendMessageUploadVideoAction.md +++ b/docs/API_docs/constructors/sendMessageUploadVideoAction.md @@ -13,5 +13,5 @@ ``` -$sendMessageUploadVideoAction = ['progress' => int, ]; +$sendMessageUploadVideoAction = ['_' => sendMessageUploadVideoAction', 'progress' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/stickerPack.md b/docs/API_docs/constructors/stickerPack.md index 90addbdb..e4236efb 100644 --- a/docs/API_docs/constructors/stickerPack.md +++ b/docs/API_docs/constructors/stickerPack.md @@ -14,5 +14,5 @@ ``` -$stickerPack = ['emoticon' => string, 'documents' => [long], ]; +$stickerPack = ['_' => stickerPack', 'emoticon' => string, 'documents' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/stickerSet.md b/docs/API_docs/constructors/stickerSet.md index 8be80e96..fc872099 100644 --- a/docs/API_docs/constructors/stickerSet.md +++ b/docs/API_docs/constructors/stickerSet.md @@ -22,5 +22,5 @@ ``` -$stickerSet = ['installed' => Bool, 'archived' => Bool, 'official' => Bool, 'masks' => Bool, 'id' => long, 'access_hash' => long, 'title' => string, 'short_name' => string, 'count' => int, 'hash' => int, ]; +$stickerSet = ['_' => stickerSet', 'installed' => true, 'archived' => true, 'official' => true, 'masks' => true, 'id' => long, 'access_hash' => long, 'title' => string, 'short_name' => string, 'count' => int, 'hash' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/stickerSetCovered.md b/docs/API_docs/constructors/stickerSetCovered.md index 88122067..405dc0c8 100644 --- a/docs/API_docs/constructors/stickerSetCovered.md +++ b/docs/API_docs/constructors/stickerSetCovered.md @@ -14,5 +14,5 @@ ``` -$stickerSetCovered = ['set' => StickerSet, 'cover' => Document, ]; +$stickerSetCovered = ['_' => stickerSetCovered', 'set' => StickerSet, 'cover' => Document, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/stickerSetMultiCovered.md b/docs/API_docs/constructors/stickerSetMultiCovered.md index b9211595..a5ad02eb 100644 --- a/docs/API_docs/constructors/stickerSetMultiCovered.md +++ b/docs/API_docs/constructors/stickerSetMultiCovered.md @@ -14,5 +14,5 @@ ``` -$stickerSetMultiCovered = ['set' => StickerSet, 'covers' => [Document], ]; +$stickerSetMultiCovered = ['_' => stickerSetMultiCovered', 'set' => StickerSet, 'covers' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/storage_fileGif.md b/docs/API_docs/constructors/storage_fileGif.md index b23b1487..54230873 100644 --- a/docs/API_docs/constructors/storage_fileGif.md +++ b/docs/API_docs/constructors/storage_fileGif.md @@ -1,9 +1,5 @@ ## Constructor: storage\_fileGif -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [storage\_FileType](../types/storage\_FileType.md) @@ -12,5 +8,5 @@ ``` -$storage_fileGif = ; +$storage_fileGif = ['_' => storage_fileGif', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/storage_fileJpeg.md b/docs/API_docs/constructors/storage_fileJpeg.md index dbae37f7..6e9c9973 100644 --- a/docs/API_docs/constructors/storage_fileJpeg.md +++ b/docs/API_docs/constructors/storage_fileJpeg.md @@ -1,9 +1,5 @@ ## Constructor: storage\_fileJpeg -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [storage\_FileType](../types/storage\_FileType.md) @@ -12,5 +8,5 @@ ``` -$storage_fileJpeg = ; +$storage_fileJpeg = ['_' => storage_fileJpeg', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/storage_fileMov.md b/docs/API_docs/constructors/storage_fileMov.md index c109e724..41b3dd43 100644 --- a/docs/API_docs/constructors/storage_fileMov.md +++ b/docs/API_docs/constructors/storage_fileMov.md @@ -1,9 +1,5 @@ ## Constructor: storage\_fileMov -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [storage\_FileType](../types/storage\_FileType.md) @@ -12,5 +8,5 @@ ``` -$storage_fileMov = ; +$storage_fileMov = ['_' => storage_fileMov', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/storage_fileMp3.md b/docs/API_docs/constructors/storage_fileMp3.md index b158a863..cee43b2b 100644 --- a/docs/API_docs/constructors/storage_fileMp3.md +++ b/docs/API_docs/constructors/storage_fileMp3.md @@ -1,9 +1,5 @@ ## Constructor: storage\_fileMp3 -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [storage\_FileType](../types/storage\_FileType.md) @@ -12,5 +8,5 @@ ``` -$storage_fileMp3 = ; +$storage_fileMp3 = ['_' => storage_fileMp3', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/storage_fileMp4.md b/docs/API_docs/constructors/storage_fileMp4.md index 54ec52a3..d7a91fa0 100644 --- a/docs/API_docs/constructors/storage_fileMp4.md +++ b/docs/API_docs/constructors/storage_fileMp4.md @@ -1,9 +1,5 @@ ## Constructor: storage\_fileMp4 -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [storage\_FileType](../types/storage\_FileType.md) @@ -12,5 +8,5 @@ ``` -$storage_fileMp4 = ; +$storage_fileMp4 = ['_' => storage_fileMp4', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/storage_filePartial.md b/docs/API_docs/constructors/storage_filePartial.md index 04abf479..569c61a2 100644 --- a/docs/API_docs/constructors/storage_filePartial.md +++ b/docs/API_docs/constructors/storage_filePartial.md @@ -1,9 +1,5 @@ ## Constructor: storage\_filePartial -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [storage\_FileType](../types/storage\_FileType.md) @@ -12,5 +8,5 @@ ``` -$storage_filePartial = ; +$storage_filePartial = ['_' => storage_filePartial', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/storage_filePdf.md b/docs/API_docs/constructors/storage_filePdf.md index 1b156b37..c44063c1 100644 --- a/docs/API_docs/constructors/storage_filePdf.md +++ b/docs/API_docs/constructors/storage_filePdf.md @@ -1,9 +1,5 @@ ## Constructor: storage\_filePdf -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [storage\_FileType](../types/storage\_FileType.md) @@ -12,5 +8,5 @@ ``` -$storage_filePdf = ; +$storage_filePdf = ['_' => storage_filePdf', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/storage_filePng.md b/docs/API_docs/constructors/storage_filePng.md index 933bfdb3..6c9363cb 100644 --- a/docs/API_docs/constructors/storage_filePng.md +++ b/docs/API_docs/constructors/storage_filePng.md @@ -1,9 +1,5 @@ ## Constructor: storage\_filePng -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [storage\_FileType](../types/storage\_FileType.md) @@ -12,5 +8,5 @@ ``` -$storage_filePng = ; +$storage_filePng = ['_' => storage_filePng', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/storage_fileUnknown.md b/docs/API_docs/constructors/storage_fileUnknown.md index f4e01161..e0cccdd1 100644 --- a/docs/API_docs/constructors/storage_fileUnknown.md +++ b/docs/API_docs/constructors/storage_fileUnknown.md @@ -1,9 +1,5 @@ ## Constructor: storage\_fileUnknown -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [storage\_FileType](../types/storage\_FileType.md) @@ -12,5 +8,5 @@ ``` -$storage_fileUnknown = ; +$storage_fileUnknown = ['_' => storage_fileUnknown', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/storage_fileWebp.md b/docs/API_docs/constructors/storage_fileWebp.md index 33b13df6..8d35b494 100644 --- a/docs/API_docs/constructors/storage_fileWebp.md +++ b/docs/API_docs/constructors/storage_fileWebp.md @@ -1,9 +1,5 @@ ## Constructor: storage\_fileWebp -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [storage\_FileType](../types/storage\_FileType.md) @@ -12,5 +8,5 @@ ``` -$storage_fileWebp = ; +$storage_fileWebp = ['_' => storage_fileWebp', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/topPeer.md b/docs/API_docs/constructors/topPeer.md index c7b38780..cf2cf650 100644 --- a/docs/API_docs/constructors/topPeer.md +++ b/docs/API_docs/constructors/topPeer.md @@ -14,5 +14,5 @@ ``` -$topPeer = ['peer' => Peer, 'rating' => double, ]; +$topPeer = ['_' => topPeer', 'peer' => Peer, 'rating' => double, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/topPeerCategoryBotsInline.md b/docs/API_docs/constructors/topPeerCategoryBotsInline.md index 831d6712..b827c731 100644 --- a/docs/API_docs/constructors/topPeerCategoryBotsInline.md +++ b/docs/API_docs/constructors/topPeerCategoryBotsInline.md @@ -1,9 +1,5 @@ ## Constructor: topPeerCategoryBotsInline -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [TopPeerCategory](../types/TopPeerCategory.md) @@ -12,5 +8,5 @@ ``` -$topPeerCategoryBotsInline = ; +$topPeerCategoryBotsInline = ['_' => topPeerCategoryBotsInline', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/topPeerCategoryBotsPM.md b/docs/API_docs/constructors/topPeerCategoryBotsPM.md index c269fa6a..1b2121c3 100644 --- a/docs/API_docs/constructors/topPeerCategoryBotsPM.md +++ b/docs/API_docs/constructors/topPeerCategoryBotsPM.md @@ -1,9 +1,5 @@ ## Constructor: topPeerCategoryBotsPM -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [TopPeerCategory](../types/TopPeerCategory.md) @@ -12,5 +8,5 @@ ``` -$topPeerCategoryBotsPM = ; +$topPeerCategoryBotsPM = ['_' => topPeerCategoryBotsPM', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/topPeerCategoryChannels.md b/docs/API_docs/constructors/topPeerCategoryChannels.md index dc1ab668..4e06926f 100644 --- a/docs/API_docs/constructors/topPeerCategoryChannels.md +++ b/docs/API_docs/constructors/topPeerCategoryChannels.md @@ -1,9 +1,5 @@ ## Constructor: topPeerCategoryChannels -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [TopPeerCategory](../types/TopPeerCategory.md) @@ -12,5 +8,5 @@ ``` -$topPeerCategoryChannels = ; +$topPeerCategoryChannels = ['_' => topPeerCategoryChannels', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/topPeerCategoryCorrespondents.md b/docs/API_docs/constructors/topPeerCategoryCorrespondents.md index 163f3cb1..0b709b53 100644 --- a/docs/API_docs/constructors/topPeerCategoryCorrespondents.md +++ b/docs/API_docs/constructors/topPeerCategoryCorrespondents.md @@ -1,9 +1,5 @@ ## Constructor: topPeerCategoryCorrespondents -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [TopPeerCategory](../types/TopPeerCategory.md) @@ -12,5 +8,5 @@ ``` -$topPeerCategoryCorrespondents = ; +$topPeerCategoryCorrespondents = ['_' => topPeerCategoryCorrespondents', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/topPeerCategoryGroups.md b/docs/API_docs/constructors/topPeerCategoryGroups.md index 70fadfe3..0935846a 100644 --- a/docs/API_docs/constructors/topPeerCategoryGroups.md +++ b/docs/API_docs/constructors/topPeerCategoryGroups.md @@ -1,9 +1,5 @@ ## Constructor: topPeerCategoryGroups -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [TopPeerCategory](../types/TopPeerCategory.md) @@ -12,5 +8,5 @@ ``` -$topPeerCategoryGroups = ; +$topPeerCategoryGroups = ['_' => topPeerCategoryGroups', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/topPeerCategoryPeers.md b/docs/API_docs/constructors/topPeerCategoryPeers.md index b3103df3..ddddcf2e 100644 --- a/docs/API_docs/constructors/topPeerCategoryPeers.md +++ b/docs/API_docs/constructors/topPeerCategoryPeers.md @@ -15,5 +15,5 @@ ``` -$topPeerCategoryPeers = ['category' => TopPeerCategory, 'count' => int, 'peers' => [TopPeer], ]; +$topPeerCategoryPeers = ['_' => topPeerCategoryPeers', 'category' => TopPeerCategory, 'count' => int, 'peers' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/true.md b/docs/API_docs/constructors/true.md index c48bf811..4f319148 100644 --- a/docs/API_docs/constructors/true.md +++ b/docs/API_docs/constructors/true.md @@ -1,9 +1,5 @@ ## Constructor: true -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [True](../types/True.md) @@ -12,5 +8,5 @@ ``` -$true = ; +$true = ['_' => true', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateBotCallbackQuery.md b/docs/API_docs/constructors/updateBotCallbackQuery.md index 1c02f639..f96c2c0d 100644 --- a/docs/API_docs/constructors/updateBotCallbackQuery.md +++ b/docs/API_docs/constructors/updateBotCallbackQuery.md @@ -19,5 +19,5 @@ ``` -$updateBotCallbackQuery = ['query_id' => long, 'user_id' => int, 'peer' => Peer, 'msg_id' => int, 'chat_instance' => long, 'data' => bytes, 'game_short_name' => string, ]; +$updateBotCallbackQuery = ['_' => updateBotCallbackQuery', 'query_id' => long, 'user_id' => int, 'peer' => Peer, 'msg_id' => int, 'chat_instance' => long, 'data' => bytes, 'game_short_name' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateBotInlineQuery.md b/docs/API_docs/constructors/updateBotInlineQuery.md index c085b793..b101bda1 100644 --- a/docs/API_docs/constructors/updateBotInlineQuery.md +++ b/docs/API_docs/constructors/updateBotInlineQuery.md @@ -17,5 +17,5 @@ ``` -$updateBotInlineQuery = ['query_id' => long, 'user_id' => int, 'query' => string, 'geo' => GeoPoint, 'offset' => string, ]; +$updateBotInlineQuery = ['_' => updateBotInlineQuery', 'query_id' => long, 'user_id' => int, 'query' => string, 'geo' => GeoPoint, 'offset' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateBotInlineSend.md b/docs/API_docs/constructors/updateBotInlineSend.md index 4cd1c4bb..4a591c24 100644 --- a/docs/API_docs/constructors/updateBotInlineSend.md +++ b/docs/API_docs/constructors/updateBotInlineSend.md @@ -17,5 +17,5 @@ ``` -$updateBotInlineSend = ['user_id' => int, 'query' => string, 'geo' => GeoPoint, 'id' => string, 'msg_id' => InputBotInlineMessageID, ]; +$updateBotInlineSend = ['_' => updateBotInlineSend', 'user_id' => int, 'query' => string, 'geo' => GeoPoint, 'id' => string, 'msg_id' => InputBotInlineMessageID, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateChannel.md b/docs/API_docs/constructors/updateChannel.md index d2347c17..21000c6c 100644 --- a/docs/API_docs/constructors/updateChannel.md +++ b/docs/API_docs/constructors/updateChannel.md @@ -13,5 +13,5 @@ ``` -$updateChannel = ['channel_id' => int, ]; +$updateChannel = ['_' => updateChannel', 'channel_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateChannelMessageViews.md b/docs/API_docs/constructors/updateChannelMessageViews.md index ef80d96c..564947cd 100644 --- a/docs/API_docs/constructors/updateChannelMessageViews.md +++ b/docs/API_docs/constructors/updateChannelMessageViews.md @@ -15,5 +15,5 @@ ``` -$updateChannelMessageViews = ['channel_id' => int, 'id' => int, 'views' => int, ]; +$updateChannelMessageViews = ['_' => updateChannelMessageViews', 'channel_id' => int, 'id' => int, 'views' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateChannelPinnedMessage.md b/docs/API_docs/constructors/updateChannelPinnedMessage.md index 1fd60850..7ec03e18 100644 --- a/docs/API_docs/constructors/updateChannelPinnedMessage.md +++ b/docs/API_docs/constructors/updateChannelPinnedMessage.md @@ -14,5 +14,5 @@ ``` -$updateChannelPinnedMessage = ['channel_id' => int, 'id' => int, ]; +$updateChannelPinnedMessage = ['_' => updateChannelPinnedMessage', 'channel_id' => int, 'id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateChannelTooLong.md b/docs/API_docs/constructors/updateChannelTooLong.md index 5b6e3212..12af1ed3 100644 --- a/docs/API_docs/constructors/updateChannelTooLong.md +++ b/docs/API_docs/constructors/updateChannelTooLong.md @@ -14,5 +14,5 @@ ``` -$updateChannelTooLong = ['channel_id' => int, 'pts' => int, ]; +$updateChannelTooLong = ['_' => updateChannelTooLong', 'channel_id' => int, 'pts' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateChatAdmins.md b/docs/API_docs/constructors/updateChatAdmins.md index 5b724f32..d597ed24 100644 --- a/docs/API_docs/constructors/updateChatAdmins.md +++ b/docs/API_docs/constructors/updateChatAdmins.md @@ -15,5 +15,5 @@ ``` -$updateChatAdmins = ['chat_id' => int, 'enabled' => Bool, 'version' => int, ]; +$updateChatAdmins = ['_' => updateChatAdmins', 'chat_id' => int, 'enabled' => Bool, 'version' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateChatParticipantAdd.md b/docs/API_docs/constructors/updateChatParticipantAdd.md index 0b4b3e42..b9595b00 100644 --- a/docs/API_docs/constructors/updateChatParticipantAdd.md +++ b/docs/API_docs/constructors/updateChatParticipantAdd.md @@ -17,5 +17,5 @@ ``` -$updateChatParticipantAdd = ['chat_id' => int, 'user_id' => int, 'inviter_id' => int, 'date' => int, 'version' => int, ]; +$updateChatParticipantAdd = ['_' => updateChatParticipantAdd', 'chat_id' => int, 'user_id' => int, 'inviter_id' => int, 'date' => int, 'version' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateChatParticipantAdmin.md b/docs/API_docs/constructors/updateChatParticipantAdmin.md index dadec677..063e20b1 100644 --- a/docs/API_docs/constructors/updateChatParticipantAdmin.md +++ b/docs/API_docs/constructors/updateChatParticipantAdmin.md @@ -16,5 +16,5 @@ ``` -$updateChatParticipantAdmin = ['chat_id' => int, 'user_id' => int, 'is_admin' => Bool, 'version' => int, ]; +$updateChatParticipantAdmin = ['_' => updateChatParticipantAdmin', 'chat_id' => int, 'user_id' => int, 'is_admin' => Bool, 'version' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateChatParticipantDelete.md b/docs/API_docs/constructors/updateChatParticipantDelete.md index d68b3eb4..3902313e 100644 --- a/docs/API_docs/constructors/updateChatParticipantDelete.md +++ b/docs/API_docs/constructors/updateChatParticipantDelete.md @@ -15,5 +15,5 @@ ``` -$updateChatParticipantDelete = ['chat_id' => int, 'user_id' => int, 'version' => int, ]; +$updateChatParticipantDelete = ['_' => updateChatParticipantDelete', 'chat_id' => int, 'user_id' => int, 'version' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateChatParticipants.md b/docs/API_docs/constructors/updateChatParticipants.md index 229963fe..070d180c 100644 --- a/docs/API_docs/constructors/updateChatParticipants.md +++ b/docs/API_docs/constructors/updateChatParticipants.md @@ -13,5 +13,5 @@ ``` -$updateChatParticipants = ['participants' => ChatParticipants, ]; +$updateChatParticipants = ['_' => updateChatParticipants', 'participants' => ChatParticipants, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateChatUserTyping.md b/docs/API_docs/constructors/updateChatUserTyping.md index 7c1bcf41..503bc1e8 100644 --- a/docs/API_docs/constructors/updateChatUserTyping.md +++ b/docs/API_docs/constructors/updateChatUserTyping.md @@ -15,5 +15,5 @@ ``` -$updateChatUserTyping = ['chat_id' => int, 'user_id' => int, 'action' => SendMessageAction, ]; +$updateChatUserTyping = ['_' => updateChatUserTyping', 'chat_id' => int, 'user_id' => int, 'action' => SendMessageAction, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateConfig.md b/docs/API_docs/constructors/updateConfig.md index 9483105f..d7a49e4d 100644 --- a/docs/API_docs/constructors/updateConfig.md +++ b/docs/API_docs/constructors/updateConfig.md @@ -1,9 +1,5 @@ ## Constructor: updateConfig -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [Update](../types/Update.md) @@ -12,5 +8,5 @@ ``` -$updateConfig = ; +$updateConfig = ['_' => updateConfig', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateContactLink.md b/docs/API_docs/constructors/updateContactLink.md index b9324629..8f097149 100644 --- a/docs/API_docs/constructors/updateContactLink.md +++ b/docs/API_docs/constructors/updateContactLink.md @@ -15,5 +15,5 @@ ``` -$updateContactLink = ['user_id' => int, 'my_link' => ContactLink, 'foreign_link' => ContactLink, ]; +$updateContactLink = ['_' => updateContactLink', 'user_id' => int, 'my_link' => ContactLink, 'foreign_link' => ContactLink, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateContactRegistered.md b/docs/API_docs/constructors/updateContactRegistered.md index 247d1ac3..fb1138be 100644 --- a/docs/API_docs/constructors/updateContactRegistered.md +++ b/docs/API_docs/constructors/updateContactRegistered.md @@ -14,5 +14,5 @@ ``` -$updateContactRegistered = ['user_id' => int, 'date' => int, ]; +$updateContactRegistered = ['_' => updateContactRegistered', 'user_id' => int, 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateDcOptions.md b/docs/API_docs/constructors/updateDcOptions.md index 6fc05b50..e941db60 100644 --- a/docs/API_docs/constructors/updateDcOptions.md +++ b/docs/API_docs/constructors/updateDcOptions.md @@ -13,5 +13,5 @@ ``` -$updateDcOptions = ['dc_options' => [DcOption], ]; +$updateDcOptions = ['_' => updateDcOptions', 'dc_options' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateDeleteChannelMessages.md b/docs/API_docs/constructors/updateDeleteChannelMessages.md index 111ea220..d36525f2 100644 --- a/docs/API_docs/constructors/updateDeleteChannelMessages.md +++ b/docs/API_docs/constructors/updateDeleteChannelMessages.md @@ -16,5 +16,5 @@ ``` -$updateDeleteChannelMessages = ['channel_id' => int, 'messages' => [int], 'pts' => int, 'pts_count' => int, ]; +$updateDeleteChannelMessages = ['_' => updateDeleteChannelMessages', 'channel_id' => int, 'messages' => [Vector t], 'pts' => int, 'pts_count' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateDeleteMessages.md b/docs/API_docs/constructors/updateDeleteMessages.md index 3e6d029f..8d3bdf56 100644 --- a/docs/API_docs/constructors/updateDeleteMessages.md +++ b/docs/API_docs/constructors/updateDeleteMessages.md @@ -15,5 +15,5 @@ ``` -$updateDeleteMessages = ['messages' => [int], 'pts' => int, 'pts_count' => int, ]; +$updateDeleteMessages = ['_' => updateDeleteMessages', 'messages' => [Vector t], 'pts' => int, 'pts_count' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateDraftMessage.md b/docs/API_docs/constructors/updateDraftMessage.md index 6886964c..fb084fb9 100644 --- a/docs/API_docs/constructors/updateDraftMessage.md +++ b/docs/API_docs/constructors/updateDraftMessage.md @@ -14,5 +14,5 @@ ``` -$updateDraftMessage = ['peer' => Peer, 'draft' => DraftMessage, ]; +$updateDraftMessage = ['_' => updateDraftMessage', 'peer' => Peer, 'draft' => DraftMessage, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateEditChannelMessage.md b/docs/API_docs/constructors/updateEditChannelMessage.md index de28ce96..39471744 100644 --- a/docs/API_docs/constructors/updateEditChannelMessage.md +++ b/docs/API_docs/constructors/updateEditChannelMessage.md @@ -15,5 +15,5 @@ ``` -$updateEditChannelMessage = ['message' => Message, 'pts' => int, 'pts_count' => int, ]; +$updateEditChannelMessage = ['_' => updateEditChannelMessage', 'message' => Message, 'pts' => int, 'pts_count' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateEditMessage.md b/docs/API_docs/constructors/updateEditMessage.md index 476fdd71..80e454db 100644 --- a/docs/API_docs/constructors/updateEditMessage.md +++ b/docs/API_docs/constructors/updateEditMessage.md @@ -15,5 +15,5 @@ ``` -$updateEditMessage = ['message' => Message, 'pts' => int, 'pts_count' => int, ]; +$updateEditMessage = ['_' => updateEditMessage', 'message' => Message, 'pts' => int, 'pts_count' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateEncryptedChatTyping.md b/docs/API_docs/constructors/updateEncryptedChatTyping.md index 107d0df0..fbc16381 100644 --- a/docs/API_docs/constructors/updateEncryptedChatTyping.md +++ b/docs/API_docs/constructors/updateEncryptedChatTyping.md @@ -13,5 +13,5 @@ ``` -$updateEncryptedChatTyping = ['chat_id' => int, ]; +$updateEncryptedChatTyping = ['_' => updateEncryptedChatTyping', 'chat_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateEncryptedMessagesRead.md b/docs/API_docs/constructors/updateEncryptedMessagesRead.md index 8e39ff7d..2c958824 100644 --- a/docs/API_docs/constructors/updateEncryptedMessagesRead.md +++ b/docs/API_docs/constructors/updateEncryptedMessagesRead.md @@ -15,5 +15,5 @@ ``` -$updateEncryptedMessagesRead = ['chat_id' => int, 'max_date' => int, 'date' => int, ]; +$updateEncryptedMessagesRead = ['_' => updateEncryptedMessagesRead', 'chat_id' => int, 'max_date' => int, 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateEncryption.md b/docs/API_docs/constructors/updateEncryption.md index 14e6217b..82ef40aa 100644 --- a/docs/API_docs/constructors/updateEncryption.md +++ b/docs/API_docs/constructors/updateEncryption.md @@ -14,5 +14,5 @@ ``` -$updateEncryption = ['chat' => EncryptedChat, 'date' => int, ]; +$updateEncryption = ['_' => updateEncryption', 'chat' => EncryptedChat, 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateInlineBotCallbackQuery.md b/docs/API_docs/constructors/updateInlineBotCallbackQuery.md index 121a409a..6ebe10b3 100644 --- a/docs/API_docs/constructors/updateInlineBotCallbackQuery.md +++ b/docs/API_docs/constructors/updateInlineBotCallbackQuery.md @@ -18,5 +18,5 @@ ``` -$updateInlineBotCallbackQuery = ['query_id' => long, 'user_id' => int, 'msg_id' => InputBotInlineMessageID, 'chat_instance' => long, 'data' => bytes, 'game_short_name' => string, ]; +$updateInlineBotCallbackQuery = ['_' => updateInlineBotCallbackQuery', 'query_id' => long, 'user_id' => int, 'msg_id' => InputBotInlineMessageID, 'chat_instance' => long, 'data' => bytes, 'game_short_name' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateMessageID.md b/docs/API_docs/constructors/updateMessageID.md index 5d972e85..2537810b 100644 --- a/docs/API_docs/constructors/updateMessageID.md +++ b/docs/API_docs/constructors/updateMessageID.md @@ -14,5 +14,5 @@ ``` -$updateMessageID = ['id' => int, 'random_id' => long, ]; +$updateMessageID = ['_' => updateMessageID', 'id' => int, 'random_id' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateNewAuthorization.md b/docs/API_docs/constructors/updateNewAuthorization.md index 13caefd2..33b3e024 100644 --- a/docs/API_docs/constructors/updateNewAuthorization.md +++ b/docs/API_docs/constructors/updateNewAuthorization.md @@ -16,5 +16,5 @@ ``` -$updateNewAuthorization = ['auth_key_id' => long, 'date' => int, 'device' => string, 'location' => string, ]; +$updateNewAuthorization = ['_' => updateNewAuthorization', 'auth_key_id' => long, 'date' => int, 'device' => string, 'location' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateNewChannelMessage.md b/docs/API_docs/constructors/updateNewChannelMessage.md index 9caf8132..90ab8edb 100644 --- a/docs/API_docs/constructors/updateNewChannelMessage.md +++ b/docs/API_docs/constructors/updateNewChannelMessage.md @@ -15,5 +15,5 @@ ``` -$updateNewChannelMessage = ['message' => Message, 'pts' => int, 'pts_count' => int, ]; +$updateNewChannelMessage = ['_' => updateNewChannelMessage', 'message' => Message, 'pts' => int, 'pts_count' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateNewEncryptedMessage.md b/docs/API_docs/constructors/updateNewEncryptedMessage.md index 88b947a0..1be6978e 100644 --- a/docs/API_docs/constructors/updateNewEncryptedMessage.md +++ b/docs/API_docs/constructors/updateNewEncryptedMessage.md @@ -14,5 +14,5 @@ ``` -$updateNewEncryptedMessage = ['message' => EncryptedMessage, 'qts' => int, ]; +$updateNewEncryptedMessage = ['_' => updateNewEncryptedMessage', 'message' => EncryptedMessage, 'qts' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateNewMessage.md b/docs/API_docs/constructors/updateNewMessage.md index 8add8be5..33d75469 100644 --- a/docs/API_docs/constructors/updateNewMessage.md +++ b/docs/API_docs/constructors/updateNewMessage.md @@ -15,5 +15,5 @@ ``` -$updateNewMessage = ['message' => Message, 'pts' => int, 'pts_count' => int, ]; +$updateNewMessage = ['_' => updateNewMessage', 'message' => Message, 'pts' => int, 'pts_count' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateNewStickerSet.md b/docs/API_docs/constructors/updateNewStickerSet.md index 52ce7e36..0fbf2a69 100644 --- a/docs/API_docs/constructors/updateNewStickerSet.md +++ b/docs/API_docs/constructors/updateNewStickerSet.md @@ -13,5 +13,5 @@ ``` -$updateNewStickerSet = ['stickerset' => messages_StickerSet, ]; +$updateNewStickerSet = ['_' => updateNewStickerSet', 'stickerset' => messages.StickerSet, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateNotifySettings.md b/docs/API_docs/constructors/updateNotifySettings.md index a069f64d..778e6e90 100644 --- a/docs/API_docs/constructors/updateNotifySettings.md +++ b/docs/API_docs/constructors/updateNotifySettings.md @@ -14,5 +14,5 @@ ``` -$updateNotifySettings = ['peer' => NotifyPeer, 'notify_settings' => PeerNotifySettings, ]; +$updateNotifySettings = ['_' => updateNotifySettings', 'peer' => NotifyPeer, 'notify_settings' => PeerNotifySettings, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updatePrivacy.md b/docs/API_docs/constructors/updatePrivacy.md index 1407490a..2a1fe0a6 100644 --- a/docs/API_docs/constructors/updatePrivacy.md +++ b/docs/API_docs/constructors/updatePrivacy.md @@ -14,5 +14,5 @@ ``` -$updatePrivacy = ['key' => PrivacyKey, 'rules' => [PrivacyRule], ]; +$updatePrivacy = ['_' => updatePrivacy', 'key' => PrivacyKey, 'rules' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updatePtsChanged.md b/docs/API_docs/constructors/updatePtsChanged.md index bf6b8a9a..16ba7f89 100644 --- a/docs/API_docs/constructors/updatePtsChanged.md +++ b/docs/API_docs/constructors/updatePtsChanged.md @@ -1,9 +1,5 @@ ## Constructor: updatePtsChanged -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [Update](../types/Update.md) @@ -12,5 +8,5 @@ ``` -$updatePtsChanged = ; +$updatePtsChanged = ['_' => updatePtsChanged', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateReadChannelInbox.md b/docs/API_docs/constructors/updateReadChannelInbox.md index 6161ca6e..df744fbe 100644 --- a/docs/API_docs/constructors/updateReadChannelInbox.md +++ b/docs/API_docs/constructors/updateReadChannelInbox.md @@ -14,5 +14,5 @@ ``` -$updateReadChannelInbox = ['channel_id' => int, 'max_id' => int, ]; +$updateReadChannelInbox = ['_' => updateReadChannelInbox', 'channel_id' => int, 'max_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateReadChannelOutbox.md b/docs/API_docs/constructors/updateReadChannelOutbox.md index fa62a6c1..7d2650a9 100644 --- a/docs/API_docs/constructors/updateReadChannelOutbox.md +++ b/docs/API_docs/constructors/updateReadChannelOutbox.md @@ -14,5 +14,5 @@ ``` -$updateReadChannelOutbox = ['channel_id' => int, 'max_id' => int, ]; +$updateReadChannelOutbox = ['_' => updateReadChannelOutbox', 'channel_id' => int, 'max_id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateReadFeaturedStickers.md b/docs/API_docs/constructors/updateReadFeaturedStickers.md index d5b37864..25b455bd 100644 --- a/docs/API_docs/constructors/updateReadFeaturedStickers.md +++ b/docs/API_docs/constructors/updateReadFeaturedStickers.md @@ -1,9 +1,5 @@ ## Constructor: updateReadFeaturedStickers -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [Update](../types/Update.md) @@ -12,5 +8,5 @@ ``` -$updateReadFeaturedStickers = ; +$updateReadFeaturedStickers = ['_' => updateReadFeaturedStickers', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateReadHistoryInbox.md b/docs/API_docs/constructors/updateReadHistoryInbox.md index 861dba42..a28a30f9 100644 --- a/docs/API_docs/constructors/updateReadHistoryInbox.md +++ b/docs/API_docs/constructors/updateReadHistoryInbox.md @@ -16,5 +16,5 @@ ``` -$updateReadHistoryInbox = ['peer' => Peer, 'max_id' => int, 'pts' => int, 'pts_count' => int, ]; +$updateReadHistoryInbox = ['_' => updateReadHistoryInbox', 'peer' => Peer, 'max_id' => int, 'pts' => int, 'pts_count' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateReadHistoryOutbox.md b/docs/API_docs/constructors/updateReadHistoryOutbox.md index ab2dc3de..1dc30f3d 100644 --- a/docs/API_docs/constructors/updateReadHistoryOutbox.md +++ b/docs/API_docs/constructors/updateReadHistoryOutbox.md @@ -16,5 +16,5 @@ ``` -$updateReadHistoryOutbox = ['peer' => Peer, 'max_id' => int, 'pts' => int, 'pts_count' => int, ]; +$updateReadHistoryOutbox = ['_' => updateReadHistoryOutbox', 'peer' => Peer, 'max_id' => int, 'pts' => int, 'pts_count' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateReadMessagesContents.md b/docs/API_docs/constructors/updateReadMessagesContents.md index 10c95ab0..e9c9c52e 100644 --- a/docs/API_docs/constructors/updateReadMessagesContents.md +++ b/docs/API_docs/constructors/updateReadMessagesContents.md @@ -15,5 +15,5 @@ ``` -$updateReadMessagesContents = ['messages' => [int], 'pts' => int, 'pts_count' => int, ]; +$updateReadMessagesContents = ['_' => updateReadMessagesContents', 'messages' => [Vector t], 'pts' => int, 'pts_count' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateRecentStickers.md b/docs/API_docs/constructors/updateRecentStickers.md index 619d5a22..79bc4c2f 100644 --- a/docs/API_docs/constructors/updateRecentStickers.md +++ b/docs/API_docs/constructors/updateRecentStickers.md @@ -1,9 +1,5 @@ ## Constructor: updateRecentStickers -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [Update](../types/Update.md) @@ -12,5 +8,5 @@ ``` -$updateRecentStickers = ; +$updateRecentStickers = ['_' => updateRecentStickers', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateSavedGifs.md b/docs/API_docs/constructors/updateSavedGifs.md index 0b0b5f96..7b7694f5 100644 --- a/docs/API_docs/constructors/updateSavedGifs.md +++ b/docs/API_docs/constructors/updateSavedGifs.md @@ -1,9 +1,5 @@ ## Constructor: updateSavedGifs -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [Update](../types/Update.md) @@ -12,5 +8,5 @@ ``` -$updateSavedGifs = ; +$updateSavedGifs = ['_' => updateSavedGifs', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateServiceNotification.md b/docs/API_docs/constructors/updateServiceNotification.md index e800fc03..b82d83ce 100644 --- a/docs/API_docs/constructors/updateServiceNotification.md +++ b/docs/API_docs/constructors/updateServiceNotification.md @@ -16,5 +16,5 @@ ``` -$updateServiceNotification = ['type' => string, 'message' => string, 'media' => MessageMedia, 'popup' => Bool, ]; +$updateServiceNotification = ['_' => updateServiceNotification', 'type' => string, 'message' => string, 'media' => MessageMedia, 'popup' => Bool, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateShort.md b/docs/API_docs/constructors/updateShort.md index 33a007f7..233afe80 100644 --- a/docs/API_docs/constructors/updateShort.md +++ b/docs/API_docs/constructors/updateShort.md @@ -14,5 +14,5 @@ ``` -$updateShort = ['update' => Update, 'date' => int, ]; +$updateShort = ['_' => updateShort', 'update' => Update, 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateShortChatMessage.md b/docs/API_docs/constructors/updateShortChatMessage.md index 087afb17..de4827f5 100644 --- a/docs/API_docs/constructors/updateShortChatMessage.md +++ b/docs/API_docs/constructors/updateShortChatMessage.md @@ -27,5 +27,5 @@ ``` -$updateShortChatMessage = ['out' => Bool, 'mentioned' => Bool, 'media_unread' => Bool, 'silent' => Bool, 'id' => int, 'from_id' => int, 'chat_id' => int, 'message' => string, 'pts' => int, 'pts_count' => int, 'date' => int, 'fwd_from' => MessageFwdHeader, 'via_bot_id' => int, 'reply_to_msg_id' => int, 'entities' => [MessageEntity], ]; +$updateShortChatMessage = ['_' => updateShortChatMessage', 'out' => true, 'mentioned' => true, 'media_unread' => true, 'silent' => true, 'id' => int, 'from_id' => int, 'chat_id' => int, 'message' => string, 'pts' => int, 'pts_count' => int, 'date' => int, 'fwd_from' => MessageFwdHeader, 'via_bot_id' => int, 'reply_to_msg_id' => int, 'entities' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateShortMessage.md b/docs/API_docs/constructors/updateShortMessage.md index 87f54209..e5d53a6d 100644 --- a/docs/API_docs/constructors/updateShortMessage.md +++ b/docs/API_docs/constructors/updateShortMessage.md @@ -26,5 +26,5 @@ ``` -$updateShortMessage = ['out' => Bool, 'mentioned' => Bool, 'media_unread' => Bool, 'silent' => Bool, 'id' => int, 'user_id' => int, 'message' => string, 'pts' => int, 'pts_count' => int, 'date' => int, 'fwd_from' => MessageFwdHeader, 'via_bot_id' => int, 'reply_to_msg_id' => int, 'entities' => [MessageEntity], ]; +$updateShortMessage = ['_' => updateShortMessage', 'out' => true, 'mentioned' => true, 'media_unread' => true, 'silent' => true, 'id' => int, 'user_id' => int, 'message' => string, 'pts' => int, 'pts_count' => int, 'date' => int, 'fwd_from' => MessageFwdHeader, 'via_bot_id' => int, 'reply_to_msg_id' => int, 'entities' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateShortSentMessage.md b/docs/API_docs/constructors/updateShortSentMessage.md index 526d316d..9a74e199 100644 --- a/docs/API_docs/constructors/updateShortSentMessage.md +++ b/docs/API_docs/constructors/updateShortSentMessage.md @@ -19,5 +19,5 @@ ``` -$updateShortSentMessage = ['out' => Bool, 'id' => int, 'pts' => int, 'pts_count' => int, 'date' => int, 'media' => MessageMedia, 'entities' => [MessageEntity], ]; +$updateShortSentMessage = ['_' => updateShortSentMessage', 'out' => true, 'id' => int, 'pts' => int, 'pts_count' => int, 'date' => int, 'media' => MessageMedia, 'entities' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateStickerSets.md b/docs/API_docs/constructors/updateStickerSets.md index 1001b26c..b37ee78f 100644 --- a/docs/API_docs/constructors/updateStickerSets.md +++ b/docs/API_docs/constructors/updateStickerSets.md @@ -1,9 +1,5 @@ ## Constructor: updateStickerSets -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [Update](../types/Update.md) @@ -12,5 +8,5 @@ ``` -$updateStickerSets = ; +$updateStickerSets = ['_' => updateStickerSets', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateStickerSetsOrder.md b/docs/API_docs/constructors/updateStickerSetsOrder.md index b822223b..e6bd44ab 100644 --- a/docs/API_docs/constructors/updateStickerSetsOrder.md +++ b/docs/API_docs/constructors/updateStickerSetsOrder.md @@ -14,5 +14,5 @@ ``` -$updateStickerSetsOrder = ['masks' => Bool, 'order' => [long], ]; +$updateStickerSetsOrder = ['_' => updateStickerSetsOrder', 'masks' => true, 'order' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateUserBlocked.md b/docs/API_docs/constructors/updateUserBlocked.md index 96864eb9..6225f153 100644 --- a/docs/API_docs/constructors/updateUserBlocked.md +++ b/docs/API_docs/constructors/updateUserBlocked.md @@ -14,5 +14,5 @@ ``` -$updateUserBlocked = ['user_id' => int, 'blocked' => Bool, ]; +$updateUserBlocked = ['_' => updateUserBlocked', 'user_id' => int, 'blocked' => Bool, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateUserName.md b/docs/API_docs/constructors/updateUserName.md index fae84783..66b0ea0f 100644 --- a/docs/API_docs/constructors/updateUserName.md +++ b/docs/API_docs/constructors/updateUserName.md @@ -16,5 +16,5 @@ ``` -$updateUserName = ['user_id' => int, 'first_name' => string, 'last_name' => string, 'username' => string, ]; +$updateUserName = ['_' => updateUserName', 'user_id' => int, 'first_name' => string, 'last_name' => string, 'username' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateUserPhone.md b/docs/API_docs/constructors/updateUserPhone.md index f668acab..317498f4 100644 --- a/docs/API_docs/constructors/updateUserPhone.md +++ b/docs/API_docs/constructors/updateUserPhone.md @@ -14,5 +14,5 @@ ``` -$updateUserPhone = ['user_id' => int, 'phone' => string, ]; +$updateUserPhone = ['_' => updateUserPhone', 'user_id' => int, 'phone' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateUserPhoto.md b/docs/API_docs/constructors/updateUserPhoto.md index 1e543f3b..7699f683 100644 --- a/docs/API_docs/constructors/updateUserPhoto.md +++ b/docs/API_docs/constructors/updateUserPhoto.md @@ -16,5 +16,5 @@ ``` -$updateUserPhoto = ['user_id' => int, 'date' => int, 'photo' => UserProfilePhoto, 'previous' => Bool, ]; +$updateUserPhoto = ['_' => updateUserPhoto', 'user_id' => int, 'date' => int, 'photo' => UserProfilePhoto, 'previous' => Bool, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateUserStatus.md b/docs/API_docs/constructors/updateUserStatus.md index e5ecfeb4..ddb65893 100644 --- a/docs/API_docs/constructors/updateUserStatus.md +++ b/docs/API_docs/constructors/updateUserStatus.md @@ -14,5 +14,5 @@ ``` -$updateUserStatus = ['user_id' => int, 'status' => UserStatus, ]; +$updateUserStatus = ['_' => updateUserStatus', 'user_id' => int, 'status' => UserStatus, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateUserTyping.md b/docs/API_docs/constructors/updateUserTyping.md index c7d4422b..90c24ff6 100644 --- a/docs/API_docs/constructors/updateUserTyping.md +++ b/docs/API_docs/constructors/updateUserTyping.md @@ -14,5 +14,5 @@ ``` -$updateUserTyping = ['user_id' => int, 'action' => SendMessageAction, ]; +$updateUserTyping = ['_' => updateUserTyping', 'user_id' => int, 'action' => SendMessageAction, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updateWebPage.md b/docs/API_docs/constructors/updateWebPage.md index 03def3a9..325577e4 100644 --- a/docs/API_docs/constructors/updateWebPage.md +++ b/docs/API_docs/constructors/updateWebPage.md @@ -15,5 +15,5 @@ ``` -$updateWebPage = ['webpage' => WebPage, 'pts' => int, 'pts_count' => int, ]; +$updateWebPage = ['_' => updateWebPage', 'webpage' => WebPage, 'pts' => int, 'pts_count' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updates.md b/docs/API_docs/constructors/updates.md index 881d66f3..5464f3e8 100644 --- a/docs/API_docs/constructors/updates.md +++ b/docs/API_docs/constructors/updates.md @@ -17,5 +17,5 @@ ``` -$updates = ['updates' => [Update], 'users' => [User], 'chats' => [Chat], 'date' => int, 'seq' => int, ]; +$updates = ['_' => updates', 'updates' => [Vector t], 'users' => [Vector t], 'chats' => [Vector t], 'date' => int, 'seq' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updatesCombined.md b/docs/API_docs/constructors/updatesCombined.md index 930249ee..83a6584e 100644 --- a/docs/API_docs/constructors/updatesCombined.md +++ b/docs/API_docs/constructors/updatesCombined.md @@ -18,5 +18,5 @@ ``` -$updatesCombined = ['updates' => [Update], 'users' => [User], 'chats' => [Chat], 'date' => int, 'seq_start' => int, 'seq' => int, ]; +$updatesCombined = ['_' => updatesCombined', 'updates' => [Vector t], 'users' => [Vector t], 'chats' => [Vector t], 'date' => int, 'seq_start' => int, 'seq' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updatesTooLong.md b/docs/API_docs/constructors/updatesTooLong.md index f7e12bac..3114e7fd 100644 --- a/docs/API_docs/constructors/updatesTooLong.md +++ b/docs/API_docs/constructors/updatesTooLong.md @@ -1,9 +1,5 @@ ## Constructor: updatesTooLong -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [Updates](../types/Updates.md) @@ -12,5 +8,5 @@ ``` -$updatesTooLong = ; +$updatesTooLong = ['_' => updatesTooLong', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updates_channelDifference.md b/docs/API_docs/constructors/updates_channelDifference.md index 2556c038..8c6097e4 100644 --- a/docs/API_docs/constructors/updates_channelDifference.md +++ b/docs/API_docs/constructors/updates_channelDifference.md @@ -19,5 +19,5 @@ ``` -$updates_channelDifference = ['final' => Bool, 'pts' => int, 'timeout' => int, 'new_messages' => [Message], 'other_updates' => [Update], 'chats' => [Chat], 'users' => [User], ]; +$updates_channelDifference = ['_' => updates_channelDifference', 'final' => true, 'pts' => int, 'timeout' => int, 'new_messages' => [Vector t], 'other_updates' => [Vector t], 'chats' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updates_channelDifferenceEmpty.md b/docs/API_docs/constructors/updates_channelDifferenceEmpty.md index 3fb3a7b4..7d6acd7a 100644 --- a/docs/API_docs/constructors/updates_channelDifferenceEmpty.md +++ b/docs/API_docs/constructors/updates_channelDifferenceEmpty.md @@ -15,5 +15,5 @@ ``` -$updates_channelDifferenceEmpty = ['final' => Bool, 'pts' => int, 'timeout' => int, ]; +$updates_channelDifferenceEmpty = ['_' => updates_channelDifferenceEmpty', 'final' => true, 'pts' => int, 'timeout' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updates_channelDifferenceTooLong.md b/docs/API_docs/constructors/updates_channelDifferenceTooLong.md index c9382b0b..1f79a0fa 100644 --- a/docs/API_docs/constructors/updates_channelDifferenceTooLong.md +++ b/docs/API_docs/constructors/updates_channelDifferenceTooLong.md @@ -22,5 +22,5 @@ ``` -$updates_channelDifferenceTooLong = ['final' => Bool, 'pts' => int, 'timeout' => int, 'top_message' => int, 'read_inbox_max_id' => int, 'read_outbox_max_id' => int, 'unread_count' => int, 'messages' => [Message], 'chats' => [Chat], 'users' => [User], ]; +$updates_channelDifferenceTooLong = ['_' => updates_channelDifferenceTooLong', 'final' => true, 'pts' => int, 'timeout' => int, 'top_message' => int, 'read_inbox_max_id' => int, 'read_outbox_max_id' => int, 'unread_count' => int, 'messages' => [Vector t], 'chats' => [Vector t], 'users' => [Vector t], ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updates_difference.md b/docs/API_docs/constructors/updates_difference.md index 75a7a982..b2c68a79 100644 --- a/docs/API_docs/constructors/updates_difference.md +++ b/docs/API_docs/constructors/updates_difference.md @@ -18,5 +18,5 @@ ``` -$updates_difference = ['new_messages' => [Message], 'new_encrypted_messages' => [EncryptedMessage], 'other_updates' => [Update], 'chats' => [Chat], 'users' => [User], 'state' => updates_State, ]; +$updates_difference = ['_' => updates_difference', 'new_messages' => [Vector t], 'new_encrypted_messages' => [Vector t], 'other_updates' => [Vector t], 'chats' => [Vector t], 'users' => [Vector t], 'state' => updates.State, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updates_differenceEmpty.md b/docs/API_docs/constructors/updates_differenceEmpty.md index ffec5a03..65599094 100644 --- a/docs/API_docs/constructors/updates_differenceEmpty.md +++ b/docs/API_docs/constructors/updates_differenceEmpty.md @@ -14,5 +14,5 @@ ``` -$updates_differenceEmpty = ['date' => int, 'seq' => int, ]; +$updates_differenceEmpty = ['_' => updates_differenceEmpty', 'date' => int, 'seq' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updates_differenceSlice.md b/docs/API_docs/constructors/updates_differenceSlice.md index da0f1876..17d60ba7 100644 --- a/docs/API_docs/constructors/updates_differenceSlice.md +++ b/docs/API_docs/constructors/updates_differenceSlice.md @@ -18,5 +18,5 @@ ``` -$updates_differenceSlice = ['new_messages' => [Message], 'new_encrypted_messages' => [EncryptedMessage], 'other_updates' => [Update], 'chats' => [Chat], 'users' => [User], 'intermediate_state' => updates_State, ]; +$updates_differenceSlice = ['_' => updates_differenceSlice', 'new_messages' => [Vector t], 'new_encrypted_messages' => [Vector t], 'other_updates' => [Vector t], 'chats' => [Vector t], 'users' => [Vector t], 'intermediate_state' => updates.State, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/updates_state.md b/docs/API_docs/constructors/updates_state.md index 877fac1f..bb9b37ab 100644 --- a/docs/API_docs/constructors/updates_state.md +++ b/docs/API_docs/constructors/updates_state.md @@ -17,5 +17,5 @@ ``` -$updates_state = ['pts' => int, 'qts' => int, 'date' => int, 'seq' => int, 'unread_count' => int, ]; +$updates_state = ['_' => updates_state', 'pts' => int, 'qts' => int, 'date' => int, 'seq' => int, 'unread_count' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/upload_file.md b/docs/API_docs/constructors/upload_file.md index 21120c03..c2e1d4e3 100644 --- a/docs/API_docs/constructors/upload_file.md +++ b/docs/API_docs/constructors/upload_file.md @@ -15,5 +15,5 @@ ``` -$upload_file = ['type' => storage_FileType, 'mtime' => int, 'bytes' => bytes, ]; +$upload_file = ['_' => upload_file', 'type' => storage.FileType, 'mtime' => int, 'bytes' => bytes, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/user.md b/docs/API_docs/constructors/user.md index 060513d6..3406320f 100644 --- a/docs/API_docs/constructors/user.md +++ b/docs/API_docs/constructors/user.md @@ -34,5 +34,5 @@ ``` -$user = ['self' => Bool, 'contact' => Bool, 'mutual_contact' => Bool, 'deleted' => Bool, 'bot' => Bool, 'bot_chat_history' => Bool, 'bot_nochats' => Bool, 'verified' => Bool, 'restricted' => Bool, 'min' => Bool, 'bot_inline_geo' => Bool, 'id' => int, 'access_hash' => long, 'first_name' => string, 'last_name' => string, 'username' => string, 'phone' => string, 'photo' => UserProfilePhoto, 'status' => UserStatus, 'bot_info_version' => int, 'restriction_reason' => string, 'bot_inline_placeholder' => string, ]; +$user = ['_' => user', 'self' => true, 'contact' => true, 'mutual_contact' => true, 'deleted' => true, 'bot' => true, 'bot_chat_history' => true, 'bot_nochats' => true, 'verified' => true, 'restricted' => true, 'min' => true, 'bot_inline_geo' => true, 'id' => int, 'access_hash' => long, 'first_name' => string, 'last_name' => string, 'username' => string, 'phone' => string, 'photo' => UserProfilePhoto, 'status' => UserStatus, 'bot_info_version' => int, 'restriction_reason' => string, 'bot_inline_placeholder' => string, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/userEmpty.md b/docs/API_docs/constructors/userEmpty.md index e6e43cd1..535c37fb 100644 --- a/docs/API_docs/constructors/userEmpty.md +++ b/docs/API_docs/constructors/userEmpty.md @@ -13,5 +13,5 @@ ``` -$userEmpty = ['id' => int, ]; +$userEmpty = ['_' => userEmpty', 'id' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/userFull.md b/docs/API_docs/constructors/userFull.md index b941d2a7..ac5c5afa 100644 --- a/docs/API_docs/constructors/userFull.md +++ b/docs/API_docs/constructors/userFull.md @@ -19,5 +19,5 @@ ``` -$userFull = ['blocked' => Bool, 'user' => User, 'about' => string, 'link' => contacts_Link, 'profile_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'bot_info' => BotInfo, ]; +$userFull = ['_' => userFull', 'blocked' => true, 'user' => User, 'about' => string, 'link' => contacts.Link, 'profile_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'bot_info' => BotInfo, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/userProfilePhoto.md b/docs/API_docs/constructors/userProfilePhoto.md index 96d508d3..b109a228 100644 --- a/docs/API_docs/constructors/userProfilePhoto.md +++ b/docs/API_docs/constructors/userProfilePhoto.md @@ -15,5 +15,5 @@ ``` -$userProfilePhoto = ['photo_id' => long, 'photo_small' => FileLocation, 'photo_big' => FileLocation, ]; +$userProfilePhoto = ['_' => userProfilePhoto', 'photo_id' => long, 'photo_small' => FileLocation, 'photo_big' => FileLocation, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/userProfilePhotoEmpty.md b/docs/API_docs/constructors/userProfilePhotoEmpty.md index 585c1b68..65eff00a 100644 --- a/docs/API_docs/constructors/userProfilePhotoEmpty.md +++ b/docs/API_docs/constructors/userProfilePhotoEmpty.md @@ -1,9 +1,5 @@ ## Constructor: userProfilePhotoEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [UserProfilePhoto](../types/UserProfilePhoto.md) @@ -12,5 +8,5 @@ ``` -$userProfilePhotoEmpty = ; +$userProfilePhotoEmpty = ['_' => userProfilePhotoEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/userStatusEmpty.md b/docs/API_docs/constructors/userStatusEmpty.md index 48f3918a..e24f52c4 100644 --- a/docs/API_docs/constructors/userStatusEmpty.md +++ b/docs/API_docs/constructors/userStatusEmpty.md @@ -1,9 +1,5 @@ ## Constructor: userStatusEmpty -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [UserStatus](../types/UserStatus.md) @@ -12,5 +8,5 @@ ``` -$userStatusEmpty = ; +$userStatusEmpty = ['_' => userStatusEmpty', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/userStatusLastMonth.md b/docs/API_docs/constructors/userStatusLastMonth.md index 6d3d177b..cfa65b6c 100644 --- a/docs/API_docs/constructors/userStatusLastMonth.md +++ b/docs/API_docs/constructors/userStatusLastMonth.md @@ -1,9 +1,5 @@ ## Constructor: userStatusLastMonth -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [UserStatus](../types/UserStatus.md) @@ -12,5 +8,5 @@ ``` -$userStatusLastMonth = ; +$userStatusLastMonth = ['_' => userStatusLastMonth', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/userStatusLastWeek.md b/docs/API_docs/constructors/userStatusLastWeek.md index 20767202..c1fbd167 100644 --- a/docs/API_docs/constructors/userStatusLastWeek.md +++ b/docs/API_docs/constructors/userStatusLastWeek.md @@ -1,9 +1,5 @@ ## Constructor: userStatusLastWeek -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [UserStatus](../types/UserStatus.md) @@ -12,5 +8,5 @@ ``` -$userStatusLastWeek = ; +$userStatusLastWeek = ['_' => userStatusLastWeek', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/userStatusOffline.md b/docs/API_docs/constructors/userStatusOffline.md index 56b26fbb..82c8b310 100644 --- a/docs/API_docs/constructors/userStatusOffline.md +++ b/docs/API_docs/constructors/userStatusOffline.md @@ -13,5 +13,5 @@ ``` -$userStatusOffline = ['was_online' => int, ]; +$userStatusOffline = ['_' => userStatusOffline', 'was_online' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/userStatusOnline.md b/docs/API_docs/constructors/userStatusOnline.md index 531f1f12..3e3549f7 100644 --- a/docs/API_docs/constructors/userStatusOnline.md +++ b/docs/API_docs/constructors/userStatusOnline.md @@ -13,5 +13,5 @@ ``` -$userStatusOnline = ['expires' => int, ]; +$userStatusOnline = ['_' => userStatusOnline', 'expires' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/userStatusRecently.md b/docs/API_docs/constructors/userStatusRecently.md index 5c7190ec..7823c310 100644 --- a/docs/API_docs/constructors/userStatusRecently.md +++ b/docs/API_docs/constructors/userStatusRecently.md @@ -1,9 +1,5 @@ ## Constructor: userStatusRecently -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [UserStatus](../types/UserStatus.md) @@ -12,5 +8,5 @@ ``` -$userStatusRecently = ; +$userStatusRecently = ['_' => userStatusRecently', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/vector.md b/docs/API_docs/constructors/vector.md index b16f781d..5d853db8 100644 --- a/docs/API_docs/constructors/vector.md +++ b/docs/API_docs/constructors/vector.md @@ -1,9 +1,5 @@ ## Constructor: vector -### Attributes: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Type: [Vector t](../types/Vector t.md) @@ -12,5 +8,5 @@ ``` -$vector = ; +$vector = ['_' => vector', ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/wallPaper.md b/docs/API_docs/constructors/wallPaper.md index 81526b6e..3a26e5d0 100644 --- a/docs/API_docs/constructors/wallPaper.md +++ b/docs/API_docs/constructors/wallPaper.md @@ -16,5 +16,5 @@ ``` -$wallPaper = ['id' => int, 'title' => string, 'sizes' => [PhotoSize], 'color' => int, ]; +$wallPaper = ['_' => wallPaper', 'id' => int, 'title' => string, 'sizes' => [Vector t], 'color' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/wallPaperSolid.md b/docs/API_docs/constructors/wallPaperSolid.md index df666352..b96faff6 100644 --- a/docs/API_docs/constructors/wallPaperSolid.md +++ b/docs/API_docs/constructors/wallPaperSolid.md @@ -16,5 +16,5 @@ ``` -$wallPaperSolid = ['id' => int, 'title' => string, 'bg_color' => int, 'color' => int, ]; +$wallPaperSolid = ['_' => wallPaperSolid', 'id' => int, 'title' => string, 'bg_color' => int, 'color' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/webPage.md b/docs/API_docs/constructors/webPage.md index d1694997..df961210 100644 --- a/docs/API_docs/constructors/webPage.md +++ b/docs/API_docs/constructors/webPage.md @@ -27,5 +27,5 @@ ``` -$webPage = ['id' => long, 'url' => string, 'display_url' => string, 'type' => string, 'site_name' => string, 'title' => string, 'description' => string, 'photo' => Photo, 'embed_url' => string, 'embed_type' => string, 'embed_width' => int, 'embed_height' => int, 'duration' => int, 'author' => string, 'document' => Document, ]; +$webPage = ['_' => webPage', 'id' => long, 'url' => string, 'display_url' => string, 'type' => string, 'site_name' => string, 'title' => string, 'description' => string, 'photo' => Photo, 'embed_url' => string, 'embed_type' => string, 'embed_width' => int, 'embed_height' => int, 'duration' => int, 'author' => string, 'document' => Document, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/webPageEmpty.md b/docs/API_docs/constructors/webPageEmpty.md index 9f0d3600..a76a0b40 100644 --- a/docs/API_docs/constructors/webPageEmpty.md +++ b/docs/API_docs/constructors/webPageEmpty.md @@ -13,5 +13,5 @@ ``` -$webPageEmpty = ['id' => long, ]; +$webPageEmpty = ['_' => webPageEmpty', 'id' => long, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/constructors/webPagePending.md b/docs/API_docs/constructors/webPagePending.md index 16ecd8a3..b5aeeed7 100644 --- a/docs/API_docs/constructors/webPagePending.md +++ b/docs/API_docs/constructors/webPagePending.md @@ -14,5 +14,5 @@ ``` -$webPagePending = ['id' => long, 'date' => int, ]; +$webPagePending = ['_' => webPagePending', 'id' => long, 'date' => int, ]; ``` \ No newline at end of file diff --git a/docs/API_docs/methods/account.getAccountTTL.md b/docs/API_docs/methods/account.getAccountTTL.md index 12aac12e..502b59c0 100644 --- a/docs/API_docs/methods/account.getAccountTTL.md +++ b/docs/API_docs/methods/account.getAccountTTL.md @@ -1,9 +1,5 @@ ## Method: account.getAccountTTL -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [AccountDaysTTL](../types/AccountDaysTTL.md) diff --git a/docs/API_docs/methods/account.getAuthorizations.md b/docs/API_docs/methods/account.getAuthorizations.md index c863ce44..b6acddcd 100644 --- a/docs/API_docs/methods/account.getAuthorizations.md +++ b/docs/API_docs/methods/account.getAuthorizations.md @@ -1,9 +1,5 @@ ## Method: account.getAuthorizations -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [account\_Authorizations](../types/account\_Authorizations.md) diff --git a/docs/API_docs/methods/account.getPassword.md b/docs/API_docs/methods/account.getPassword.md index 1f4632d2..a59db42f 100644 --- a/docs/API_docs/methods/account.getPassword.md +++ b/docs/API_docs/methods/account.getPassword.md @@ -1,9 +1,5 @@ ## Method: account.getPassword -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [account\_Password](../types/account\_Password.md) diff --git a/docs/API_docs/methods/account.getWallPapers.md b/docs/API_docs/methods/account.getWallPapers.md index 9e403971..0ad76973 100644 --- a/docs/API_docs/methods/account.getWallPapers.md +++ b/docs/API_docs/methods/account.getWallPapers.md @@ -1,9 +1,5 @@ ## Method: account.getWallPapers -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [Vector\_of\_WallPaper](../types/WallPaper.md) diff --git a/docs/API_docs/methods/account.resetNotifySettings.md b/docs/API_docs/methods/account.resetNotifySettings.md index 60f912c9..49da1669 100644 --- a/docs/API_docs/methods/account.resetNotifySettings.md +++ b/docs/API_docs/methods/account.resetNotifySettings.md @@ -1,9 +1,5 @@ ## Method: account.resetNotifySettings -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [Bool](../types/Bool.md) diff --git a/docs/API_docs/methods/auth.logOut.md b/docs/API_docs/methods/auth.logOut.md index 0f0416dd..5e2d1b22 100644 --- a/docs/API_docs/methods/auth.logOut.md +++ b/docs/API_docs/methods/auth.logOut.md @@ -1,9 +1,5 @@ ## Method: auth.logOut -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [Bool](../types/Bool.md) diff --git a/docs/API_docs/methods/auth.requestPasswordRecovery.md b/docs/API_docs/methods/auth.requestPasswordRecovery.md index 52320a9b..19f7676c 100644 --- a/docs/API_docs/methods/auth.requestPasswordRecovery.md +++ b/docs/API_docs/methods/auth.requestPasswordRecovery.md @@ -1,9 +1,5 @@ ## Method: auth.requestPasswordRecovery -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [auth\_PasswordRecovery](../types/auth\_PasswordRecovery.md) diff --git a/docs/API_docs/methods/auth.resetAuthorizations.md b/docs/API_docs/methods/auth.resetAuthorizations.md index 3803cb71..9ebd2844 100644 --- a/docs/API_docs/methods/auth.resetAuthorizations.md +++ b/docs/API_docs/methods/auth.resetAuthorizations.md @@ -1,9 +1,5 @@ ## Method: auth.resetAuthorizations -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [Bool](../types/Bool.md) diff --git a/docs/API_docs/methods/channels.getAdminedPublicChannels.md b/docs/API_docs/methods/channels.getAdminedPublicChannels.md index 3223f5d1..708e47dd 100644 --- a/docs/API_docs/methods/channels.getAdminedPublicChannels.md +++ b/docs/API_docs/methods/channels.getAdminedPublicChannels.md @@ -1,9 +1,5 @@ ## Method: channels.getAdminedPublicChannels -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [messages\_Chats](../types/messages\_Chats.md) diff --git a/docs/API_docs/methods/contacts.exportCard.md b/docs/API_docs/methods/contacts.exportCard.md index a66edcc9..c84fc445 100644 --- a/docs/API_docs/methods/contacts.exportCard.md +++ b/docs/API_docs/methods/contacts.exportCard.md @@ -1,9 +1,5 @@ ## Method: contacts.exportCard -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [Vector\_of\_int](../types/int.md) diff --git a/docs/API_docs/methods/contacts.getStatuses.md b/docs/API_docs/methods/contacts.getStatuses.md index 25be8003..70615845 100644 --- a/docs/API_docs/methods/contacts.getStatuses.md +++ b/docs/API_docs/methods/contacts.getStatuses.md @@ -1,9 +1,5 @@ ## Method: contacts.getStatuses -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [Vector\_of\_ContactStatus](../types/ContactStatus.md) diff --git a/docs/API_docs/methods/help.getAppChangelog.md b/docs/API_docs/methods/help.getAppChangelog.md index 3d4e4a45..524564a4 100644 --- a/docs/API_docs/methods/help.getAppChangelog.md +++ b/docs/API_docs/methods/help.getAppChangelog.md @@ -1,9 +1,5 @@ ## Method: help.getAppChangelog -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [help\_AppChangelog](../types/help\_AppChangelog.md) diff --git a/docs/API_docs/methods/help.getAppUpdate.md b/docs/API_docs/methods/help.getAppUpdate.md index 2655050b..11047eb7 100644 --- a/docs/API_docs/methods/help.getAppUpdate.md +++ b/docs/API_docs/methods/help.getAppUpdate.md @@ -1,9 +1,5 @@ ## Method: help.getAppUpdate -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [help\_AppUpdate](../types/help\_AppUpdate.md) diff --git a/docs/API_docs/methods/help.getConfig.md b/docs/API_docs/methods/help.getConfig.md index c3702e87..13d8d5d1 100644 --- a/docs/API_docs/methods/help.getConfig.md +++ b/docs/API_docs/methods/help.getConfig.md @@ -1,9 +1,5 @@ ## Method: help.getConfig -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [Config](../types/Config.md) diff --git a/docs/API_docs/methods/help.getInviteText.md b/docs/API_docs/methods/help.getInviteText.md index 6fae2e57..cdfa3180 100644 --- a/docs/API_docs/methods/help.getInviteText.md +++ b/docs/API_docs/methods/help.getInviteText.md @@ -1,9 +1,5 @@ ## Method: help.getInviteText -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [help\_InviteText](../types/help\_InviteText.md) diff --git a/docs/API_docs/methods/help.getNearestDc.md b/docs/API_docs/methods/help.getNearestDc.md index fbad5c2a..3ea0278a 100644 --- a/docs/API_docs/methods/help.getNearestDc.md +++ b/docs/API_docs/methods/help.getNearestDc.md @@ -1,9 +1,5 @@ ## Method: help.getNearestDc -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [NearestDc](../types/NearestDc.md) diff --git a/docs/API_docs/methods/help.getSupport.md b/docs/API_docs/methods/help.getSupport.md index 870d4567..6b54157d 100644 --- a/docs/API_docs/methods/help.getSupport.md +++ b/docs/API_docs/methods/help.getSupport.md @@ -1,9 +1,5 @@ ## Method: help.getSupport -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [help\_Support](../types/help\_Support.md) diff --git a/docs/API_docs/methods/help.getTermsOfService.md b/docs/API_docs/methods/help.getTermsOfService.md index cab3b278..5da9372d 100644 --- a/docs/API_docs/methods/help.getTermsOfService.md +++ b/docs/API_docs/methods/help.getTermsOfService.md @@ -1,9 +1,5 @@ ## Method: help.getTermsOfService -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [help\_TermsOfService](../types/help\_TermsOfService.md) diff --git a/docs/API_docs/methods/messages.getAllDrafts.md b/docs/API_docs/methods/messages.getAllDrafts.md index 211d935d..1281dbc6 100644 --- a/docs/API_docs/methods/messages.getAllDrafts.md +++ b/docs/API_docs/methods/messages.getAllDrafts.md @@ -1,9 +1,5 @@ ## Method: messages.getAllDrafts -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [Updates](../types/Updates.md) diff --git a/docs/API_docs/methods/updates.getState.md b/docs/API_docs/methods/updates.getState.md index 7ebad778..68214187 100644 --- a/docs/API_docs/methods/updates.getState.md +++ b/docs/API_docs/methods/updates.getState.md @@ -1,9 +1,5 @@ ## Method: updates.getState -### Parameters: - -| Name | Type | Required | -|----------|:-------------:|---------:| ### Return type: [updates\_State](../types/updates\_State.md) diff --git a/docs/API_docs/types/AccountDaysTTL.md b/docs/API_docs/types/AccountDaysTTL.md index da8e4012..cd748ab5 100644 --- a/docs/API_docs/types/AccountDaysTTL.md +++ b/docs/API_docs/types/AccountDaysTTL.md @@ -1,6 +1,6 @@ ## Type: AccountDaysTTL -### Constructors: +### Possible values (constructors): [accountDaysTTL](../constructors/accountDaysTTL.md) diff --git a/docs/API_docs/types/Authorization.md b/docs/API_docs/types/Authorization.md index a9612030..d98ff7e0 100644 --- a/docs/API_docs/types/Authorization.md +++ b/docs/API_docs/types/Authorization.md @@ -1,6 +1,6 @@ ## Type: Authorization -### Constructors: +### Possible values (constructors): [authorization](../constructors/authorization.md) diff --git a/docs/API_docs/types/Bool.md b/docs/API_docs/types/Bool.md index 172a1a4f..997e05c7 100644 --- a/docs/API_docs/types/Bool.md +++ b/docs/API_docs/types/Bool.md @@ -1,6 +1,6 @@ ## Type: Bool -### Constructors: +### Possible values (constructors): [boolFalse](../constructors/boolFalse.md) diff --git a/docs/API_docs/types/BotCommand.md b/docs/API_docs/types/BotCommand.md index 60084457..6e4d1f99 100644 --- a/docs/API_docs/types/BotCommand.md +++ b/docs/API_docs/types/BotCommand.md @@ -1,6 +1,6 @@ ## Type: BotCommand -### Constructors: +### Possible values (constructors): [botCommand](../constructors/botCommand.md) diff --git a/docs/API_docs/types/BotInfo.md b/docs/API_docs/types/BotInfo.md index 1f29cd88..834275ce 100644 --- a/docs/API_docs/types/BotInfo.md +++ b/docs/API_docs/types/BotInfo.md @@ -1,6 +1,6 @@ ## Type: BotInfo -### Constructors: +### Possible values (constructors): [botInfo](../constructors/botInfo.md) diff --git a/docs/API_docs/types/BotInlineMessage.md b/docs/API_docs/types/BotInlineMessage.md index 04bec755..d6137d8c 100644 --- a/docs/API_docs/types/BotInlineMessage.md +++ b/docs/API_docs/types/BotInlineMessage.md @@ -1,6 +1,6 @@ ## Type: BotInlineMessage -### Constructors: +### Possible values (constructors): [botInlineMessageMediaAuto](../constructors/botInlineMessageMediaAuto.md) diff --git a/docs/API_docs/types/BotInlineResult.md b/docs/API_docs/types/BotInlineResult.md index 5af7f852..356108e7 100644 --- a/docs/API_docs/types/BotInlineResult.md +++ b/docs/API_docs/types/BotInlineResult.md @@ -1,6 +1,6 @@ ## Type: BotInlineResult -### Constructors: +### Possible values (constructors): [botInlineResult](../constructors/botInlineResult.md) diff --git a/docs/API_docs/types/ChannelMessagesFilter.md b/docs/API_docs/types/ChannelMessagesFilter.md index 43aeb8f3..36901273 100644 --- a/docs/API_docs/types/ChannelMessagesFilter.md +++ b/docs/API_docs/types/ChannelMessagesFilter.md @@ -1,6 +1,6 @@ ## Type: ChannelMessagesFilter -### Constructors: +### Possible values (constructors): [channelMessagesFilterEmpty](../constructors/channelMessagesFilterEmpty.md) diff --git a/docs/API_docs/types/ChannelParticipant.md b/docs/API_docs/types/ChannelParticipant.md index c1caf227..23819222 100644 --- a/docs/API_docs/types/ChannelParticipant.md +++ b/docs/API_docs/types/ChannelParticipant.md @@ -1,6 +1,6 @@ ## Type: ChannelParticipant -### Constructors: +### Possible values (constructors): [channelParticipant](../constructors/channelParticipant.md) diff --git a/docs/API_docs/types/ChannelParticipantRole.md b/docs/API_docs/types/ChannelParticipantRole.md index e6b176db..8d6927ed 100644 --- a/docs/API_docs/types/ChannelParticipantRole.md +++ b/docs/API_docs/types/ChannelParticipantRole.md @@ -1,6 +1,6 @@ ## Type: ChannelParticipantRole -### Constructors: +### Possible values (constructors): [channelRoleEmpty](../constructors/channelRoleEmpty.md) diff --git a/docs/API_docs/types/ChannelParticipantsFilter.md b/docs/API_docs/types/ChannelParticipantsFilter.md index fdf285c8..521d4a91 100644 --- a/docs/API_docs/types/ChannelParticipantsFilter.md +++ b/docs/API_docs/types/ChannelParticipantsFilter.md @@ -1,6 +1,6 @@ ## Type: ChannelParticipantsFilter -### Constructors: +### Possible values (constructors): [channelParticipantsRecent](../constructors/channelParticipantsRecent.md) diff --git a/docs/API_docs/types/Chat.md b/docs/API_docs/types/Chat.md index b10c7dc3..b82fa2ad 100644 --- a/docs/API_docs/types/Chat.md +++ b/docs/API_docs/types/Chat.md @@ -1,6 +1,6 @@ ## Type: Chat -### Constructors: +### Possible values (constructors): [chatEmpty](../constructors/chatEmpty.md) diff --git a/docs/API_docs/types/ChatFull.md b/docs/API_docs/types/ChatFull.md index 3ab49fe7..9103881b 100644 --- a/docs/API_docs/types/ChatFull.md +++ b/docs/API_docs/types/ChatFull.md @@ -1,6 +1,6 @@ ## Type: ChatFull -### Constructors: +### Possible values (constructors): [chatFull](../constructors/chatFull.md) diff --git a/docs/API_docs/types/ChatInvite.md b/docs/API_docs/types/ChatInvite.md index e68e1899..2edb47c6 100644 --- a/docs/API_docs/types/ChatInvite.md +++ b/docs/API_docs/types/ChatInvite.md @@ -1,6 +1,6 @@ ## Type: ChatInvite -### Constructors: +### Possible values (constructors): [chatInviteAlready](../constructors/chatInviteAlready.md) diff --git a/docs/API_docs/types/ChatParticipant.md b/docs/API_docs/types/ChatParticipant.md index f9c5a852..9ac257b2 100644 --- a/docs/API_docs/types/ChatParticipant.md +++ b/docs/API_docs/types/ChatParticipant.md @@ -1,6 +1,6 @@ ## Type: ChatParticipant -### Constructors: +### Possible values (constructors): [chatParticipant](../constructors/chatParticipant.md) diff --git a/docs/API_docs/types/ChatParticipants.md b/docs/API_docs/types/ChatParticipants.md index f9301ae3..5865c3c4 100644 --- a/docs/API_docs/types/ChatParticipants.md +++ b/docs/API_docs/types/ChatParticipants.md @@ -1,6 +1,6 @@ ## Type: ChatParticipants -### Constructors: +### Possible values (constructors): [chatParticipantsForbidden](../constructors/chatParticipantsForbidden.md) diff --git a/docs/API_docs/types/ChatPhoto.md b/docs/API_docs/types/ChatPhoto.md index bd1e504d..933709ec 100644 --- a/docs/API_docs/types/ChatPhoto.md +++ b/docs/API_docs/types/ChatPhoto.md @@ -1,6 +1,6 @@ ## Type: ChatPhoto -### Constructors: +### Possible values (constructors): [chatPhotoEmpty](../constructors/chatPhotoEmpty.md) diff --git a/docs/API_docs/types/Config.md b/docs/API_docs/types/Config.md index 897277e4..8092bc26 100644 --- a/docs/API_docs/types/Config.md +++ b/docs/API_docs/types/Config.md @@ -1,6 +1,6 @@ ## Type: Config -### Constructors: +### Possible values (constructors): [config](../constructors/config.md) diff --git a/docs/API_docs/types/Contact.md b/docs/API_docs/types/Contact.md index f3fa2637..d74b13a9 100644 --- a/docs/API_docs/types/Contact.md +++ b/docs/API_docs/types/Contact.md @@ -1,6 +1,6 @@ ## Type: Contact -### Constructors: +### Possible values (constructors): [contact](../constructors/contact.md) diff --git a/docs/API_docs/types/ContactBlocked.md b/docs/API_docs/types/ContactBlocked.md index 27af0bf1..60bc8d8b 100644 --- a/docs/API_docs/types/ContactBlocked.md +++ b/docs/API_docs/types/ContactBlocked.md @@ -1,6 +1,6 @@ ## Type: ContactBlocked -### Constructors: +### Possible values (constructors): [contactBlocked](../constructors/contactBlocked.md) diff --git a/docs/API_docs/types/ContactLink.md b/docs/API_docs/types/ContactLink.md index 725262e0..c4938e4a 100644 --- a/docs/API_docs/types/ContactLink.md +++ b/docs/API_docs/types/ContactLink.md @@ -1,6 +1,6 @@ ## Type: ContactLink -### Constructors: +### Possible values (constructors): [contactLinkUnknown](../constructors/contactLinkUnknown.md) diff --git a/docs/API_docs/types/ContactStatus.md b/docs/API_docs/types/ContactStatus.md index 398a5169..a52686ce 100644 --- a/docs/API_docs/types/ContactStatus.md +++ b/docs/API_docs/types/ContactStatus.md @@ -1,6 +1,6 @@ ## Type: ContactStatus -### Constructors: +### Possible values (constructors): [contactStatus](../constructors/contactStatus.md) diff --git a/docs/API_docs/types/DcOption.md b/docs/API_docs/types/DcOption.md index 6be414a6..0834dcc0 100644 --- a/docs/API_docs/types/DcOption.md +++ b/docs/API_docs/types/DcOption.md @@ -1,6 +1,6 @@ ## Type: DcOption -### Constructors: +### Possible values (constructors): [dcOption](../constructors/dcOption.md) diff --git a/docs/API_docs/types/Dialog.md b/docs/API_docs/types/Dialog.md index f758c8b3..f77906ba 100644 --- a/docs/API_docs/types/Dialog.md +++ b/docs/API_docs/types/Dialog.md @@ -1,6 +1,6 @@ ## Type: Dialog -### Constructors: +### Possible values (constructors): [dialog](../constructors/dialog.md) diff --git a/docs/API_docs/types/DisabledFeature.md b/docs/API_docs/types/DisabledFeature.md index 9b5e4126..b5ded6a0 100644 --- a/docs/API_docs/types/DisabledFeature.md +++ b/docs/API_docs/types/DisabledFeature.md @@ -1,6 +1,6 @@ ## Type: DisabledFeature -### Constructors: +### Possible values (constructors): [disabledFeature](../constructors/disabledFeature.md) diff --git a/docs/API_docs/types/Document.md b/docs/API_docs/types/Document.md index e8b6d687..8d785f36 100644 --- a/docs/API_docs/types/Document.md +++ b/docs/API_docs/types/Document.md @@ -1,6 +1,6 @@ ## Type: Document -### Constructors: +### Possible values (constructors): [documentEmpty](../constructors/documentEmpty.md) diff --git a/docs/API_docs/types/DocumentAttribute.md b/docs/API_docs/types/DocumentAttribute.md index d7073a3e..18ff287e 100644 --- a/docs/API_docs/types/DocumentAttribute.md +++ b/docs/API_docs/types/DocumentAttribute.md @@ -1,6 +1,6 @@ ## Type: DocumentAttribute -### Constructors: +### Possible values (constructors): [documentAttributeImageSize](../constructors/documentAttributeImageSize.md) diff --git a/docs/API_docs/types/DraftMessage.md b/docs/API_docs/types/DraftMessage.md index b8c221c2..423069b6 100644 --- a/docs/API_docs/types/DraftMessage.md +++ b/docs/API_docs/types/DraftMessage.md @@ -1,6 +1,6 @@ ## Type: DraftMessage -### Constructors: +### Possible values (constructors): [draftMessageEmpty](../constructors/draftMessageEmpty.md) diff --git a/docs/API_docs/types/EncryptedChat.md b/docs/API_docs/types/EncryptedChat.md index 46273b9f..c4999ebf 100644 --- a/docs/API_docs/types/EncryptedChat.md +++ b/docs/API_docs/types/EncryptedChat.md @@ -1,6 +1,6 @@ ## Type: EncryptedChat -### Constructors: +### Possible values (constructors): [encryptedChatEmpty](../constructors/encryptedChatEmpty.md) diff --git a/docs/API_docs/types/EncryptedFile.md b/docs/API_docs/types/EncryptedFile.md index c5154be0..48618ea3 100644 --- a/docs/API_docs/types/EncryptedFile.md +++ b/docs/API_docs/types/EncryptedFile.md @@ -1,6 +1,6 @@ ## Type: EncryptedFile -### Constructors: +### Possible values (constructors): [encryptedFileEmpty](../constructors/encryptedFileEmpty.md) diff --git a/docs/API_docs/types/EncryptedMessage.md b/docs/API_docs/types/EncryptedMessage.md index cf19ea03..2dbf7546 100644 --- a/docs/API_docs/types/EncryptedMessage.md +++ b/docs/API_docs/types/EncryptedMessage.md @@ -1,6 +1,6 @@ ## Type: EncryptedMessage -### Constructors: +### Possible values (constructors): [encryptedMessage](../constructors/encryptedMessage.md) diff --git a/docs/API_docs/types/Error.md b/docs/API_docs/types/Error.md index a3fdb5dd..b042184e 100644 --- a/docs/API_docs/types/Error.md +++ b/docs/API_docs/types/Error.md @@ -1,6 +1,6 @@ ## Type: Error -### Constructors: +### Possible values (constructors): [error](../constructors/error.md) diff --git a/docs/API_docs/types/ExportedChatInvite.md b/docs/API_docs/types/ExportedChatInvite.md index a42f5392..7b72464a 100644 --- a/docs/API_docs/types/ExportedChatInvite.md +++ b/docs/API_docs/types/ExportedChatInvite.md @@ -1,6 +1,6 @@ ## Type: ExportedChatInvite -### Constructors: +### Possible values (constructors): [chatInviteEmpty](../constructors/chatInviteEmpty.md) diff --git a/docs/API_docs/types/ExportedMessageLink.md b/docs/API_docs/types/ExportedMessageLink.md index 7a4e5520..49fc2a22 100644 --- a/docs/API_docs/types/ExportedMessageLink.md +++ b/docs/API_docs/types/ExportedMessageLink.md @@ -1,6 +1,6 @@ ## Type: ExportedMessageLink -### Constructors: +### Possible values (constructors): [exportedMessageLink](../constructors/exportedMessageLink.md) diff --git a/docs/API_docs/types/FileLocation.md b/docs/API_docs/types/FileLocation.md index 8bd86de5..866c1b26 100644 --- a/docs/API_docs/types/FileLocation.md +++ b/docs/API_docs/types/FileLocation.md @@ -1,6 +1,6 @@ ## Type: FileLocation -### Constructors: +### Possible values (constructors): [fileLocationUnavailable](../constructors/fileLocationUnavailable.md) diff --git a/docs/API_docs/types/FoundGif.md b/docs/API_docs/types/FoundGif.md index f279f3ec..28e2afec 100644 --- a/docs/API_docs/types/FoundGif.md +++ b/docs/API_docs/types/FoundGif.md @@ -1,6 +1,6 @@ ## Type: FoundGif -### Constructors: +### Possible values (constructors): [foundGif](../constructors/foundGif.md) diff --git a/docs/API_docs/types/Game.md b/docs/API_docs/types/Game.md index 5651b9cf..5b213931 100644 --- a/docs/API_docs/types/Game.md +++ b/docs/API_docs/types/Game.md @@ -1,6 +1,6 @@ ## Type: Game -### Constructors: +### Possible values (constructors): [game](../constructors/game.md) diff --git a/docs/API_docs/types/GeoPoint.md b/docs/API_docs/types/GeoPoint.md index 6f39666b..6246a400 100644 --- a/docs/API_docs/types/GeoPoint.md +++ b/docs/API_docs/types/GeoPoint.md @@ -1,6 +1,6 @@ ## Type: GeoPoint -### Constructors: +### Possible values (constructors): [geoPointEmpty](../constructors/geoPointEmpty.md) diff --git a/docs/API_docs/types/HighScore.md b/docs/API_docs/types/HighScore.md index 65d1ec41..959f652f 100644 --- a/docs/API_docs/types/HighScore.md +++ b/docs/API_docs/types/HighScore.md @@ -1,6 +1,6 @@ ## Type: HighScore -### Constructors: +### Possible values (constructors): [highScore](../constructors/highScore.md) diff --git a/docs/API_docs/types/ImportedContact.md b/docs/API_docs/types/ImportedContact.md index c138ecf0..7df4512c 100644 --- a/docs/API_docs/types/ImportedContact.md +++ b/docs/API_docs/types/ImportedContact.md @@ -1,6 +1,6 @@ ## Type: ImportedContact -### Constructors: +### Possible values (constructors): [importedContact](../constructors/importedContact.md) diff --git a/docs/API_docs/types/InlineBotSwitchPM.md b/docs/API_docs/types/InlineBotSwitchPM.md index 8a36525b..2b11fd47 100644 --- a/docs/API_docs/types/InlineBotSwitchPM.md +++ b/docs/API_docs/types/InlineBotSwitchPM.md @@ -1,6 +1,6 @@ ## Type: InlineBotSwitchPM -### Constructors: +### Possible values (constructors): [inlineBotSwitchPM](../constructors/inlineBotSwitchPM.md) diff --git a/docs/API_docs/types/InputAppEvent.md b/docs/API_docs/types/InputAppEvent.md index d14d2ca6..c3c6ffda 100644 --- a/docs/API_docs/types/InputAppEvent.md +++ b/docs/API_docs/types/InputAppEvent.md @@ -1,6 +1,6 @@ ## Type: InputAppEvent -### Constructors: +### Possible values (constructors): [inputAppEvent](../constructors/inputAppEvent.md) diff --git a/docs/API_docs/types/InputBotInlineMessage.md b/docs/API_docs/types/InputBotInlineMessage.md index 9fd66cc5..7b700554 100644 --- a/docs/API_docs/types/InputBotInlineMessage.md +++ b/docs/API_docs/types/InputBotInlineMessage.md @@ -1,6 +1,6 @@ ## Type: InputBotInlineMessage -### Constructors: +### Possible values (constructors): [inputBotInlineMessageMediaAuto](../constructors/inputBotInlineMessageMediaAuto.md) diff --git a/docs/API_docs/types/InputBotInlineMessageID.md b/docs/API_docs/types/InputBotInlineMessageID.md index cc8b349b..666c63c5 100644 --- a/docs/API_docs/types/InputBotInlineMessageID.md +++ b/docs/API_docs/types/InputBotInlineMessageID.md @@ -1,6 +1,6 @@ ## Type: InputBotInlineMessageID -### Constructors: +### Possible values (constructors): [inputBotInlineMessageID](../constructors/inputBotInlineMessageID.md) diff --git a/docs/API_docs/types/InputBotInlineResult.md b/docs/API_docs/types/InputBotInlineResult.md index 154c8f36..3fdc7a11 100644 --- a/docs/API_docs/types/InputBotInlineResult.md +++ b/docs/API_docs/types/InputBotInlineResult.md @@ -1,6 +1,6 @@ ## Type: InputBotInlineResult -### Constructors: +### Possible values (constructors): [inputBotInlineResult](../constructors/inputBotInlineResult.md) diff --git a/docs/API_docs/types/InputChannel.md b/docs/API_docs/types/InputChannel.md index 2d432566..cad9d403 100644 --- a/docs/API_docs/types/InputChannel.md +++ b/docs/API_docs/types/InputChannel.md @@ -1,6 +1,6 @@ ## Type: InputChannel -### Constructors: +### Possible values (constructors): [inputChannelEmpty](../constructors/inputChannelEmpty.md) diff --git a/docs/API_docs/types/InputChatPhoto.md b/docs/API_docs/types/InputChatPhoto.md index dbe92bab..28472e66 100644 --- a/docs/API_docs/types/InputChatPhoto.md +++ b/docs/API_docs/types/InputChatPhoto.md @@ -1,6 +1,6 @@ ## Type: InputChatPhoto -### Constructors: +### Possible values (constructors): [inputChatPhotoEmpty](../constructors/inputChatPhotoEmpty.md) diff --git a/docs/API_docs/types/InputContact.md b/docs/API_docs/types/InputContact.md index eb053629..21956269 100644 --- a/docs/API_docs/types/InputContact.md +++ b/docs/API_docs/types/InputContact.md @@ -1,6 +1,6 @@ ## Type: InputContact -### Constructors: +### Possible values (constructors): [inputPhoneContact](../constructors/inputPhoneContact.md) diff --git a/docs/API_docs/types/InputDocument.md b/docs/API_docs/types/InputDocument.md index 2a2e48c2..e8072bfa 100644 --- a/docs/API_docs/types/InputDocument.md +++ b/docs/API_docs/types/InputDocument.md @@ -1,6 +1,6 @@ ## Type: InputDocument -### Constructors: +### Possible values (constructors): [inputDocumentEmpty](../constructors/inputDocumentEmpty.md) diff --git a/docs/API_docs/types/InputEncryptedChat.md b/docs/API_docs/types/InputEncryptedChat.md index c52afb81..92135884 100644 --- a/docs/API_docs/types/InputEncryptedChat.md +++ b/docs/API_docs/types/InputEncryptedChat.md @@ -1,6 +1,6 @@ ## Type: InputEncryptedChat -### Constructors: +### Possible values (constructors): [inputEncryptedChat](../constructors/inputEncryptedChat.md) diff --git a/docs/API_docs/types/InputEncryptedFile.md b/docs/API_docs/types/InputEncryptedFile.md index 0ca7a7dc..175b439e 100644 --- a/docs/API_docs/types/InputEncryptedFile.md +++ b/docs/API_docs/types/InputEncryptedFile.md @@ -1,6 +1,6 @@ ## Type: InputEncryptedFile -### Constructors: +### Possible values (constructors): [inputEncryptedFileEmpty](../constructors/inputEncryptedFileEmpty.md) diff --git a/docs/API_docs/types/InputFile.md b/docs/API_docs/types/InputFile.md index c30c818e..159c2dfe 100644 --- a/docs/API_docs/types/InputFile.md +++ b/docs/API_docs/types/InputFile.md @@ -1,6 +1,6 @@ ## Type: InputFile -### Constructors: +### Possible values (constructors): [inputFile](../constructors/inputFile.md) diff --git a/docs/API_docs/types/InputFileLocation.md b/docs/API_docs/types/InputFileLocation.md index fea7516e..c97a9dd1 100644 --- a/docs/API_docs/types/InputFileLocation.md +++ b/docs/API_docs/types/InputFileLocation.md @@ -1,6 +1,6 @@ ## Type: InputFileLocation -### Constructors: +### Possible values (constructors): [inputFileLocation](../constructors/inputFileLocation.md) diff --git a/docs/API_docs/types/InputGame.md b/docs/API_docs/types/InputGame.md index 5fc0714c..1f5fe077 100644 --- a/docs/API_docs/types/InputGame.md +++ b/docs/API_docs/types/InputGame.md @@ -1,6 +1,6 @@ ## Type: InputGame -### Constructors: +### Possible values (constructors): [inputGameID](../constructors/inputGameID.md) diff --git a/docs/API_docs/types/InputGeoPoint.md b/docs/API_docs/types/InputGeoPoint.md index a897cb43..f0d50d30 100644 --- a/docs/API_docs/types/InputGeoPoint.md +++ b/docs/API_docs/types/InputGeoPoint.md @@ -1,6 +1,6 @@ ## Type: InputGeoPoint -### Constructors: +### Possible values (constructors): [inputGeoPointEmpty](../constructors/inputGeoPointEmpty.md) diff --git a/docs/API_docs/types/InputMedia.md b/docs/API_docs/types/InputMedia.md index 7c726caa..8b44dd54 100644 --- a/docs/API_docs/types/InputMedia.md +++ b/docs/API_docs/types/InputMedia.md @@ -1,6 +1,6 @@ ## Type: InputMedia -### Constructors: +### Possible values (constructors): [inputMediaEmpty](../constructors/inputMediaEmpty.md) diff --git a/docs/API_docs/types/InputNotifyPeer.md b/docs/API_docs/types/InputNotifyPeer.md index d27bdaed..bb024b0e 100644 --- a/docs/API_docs/types/InputNotifyPeer.md +++ b/docs/API_docs/types/InputNotifyPeer.md @@ -1,6 +1,6 @@ ## Type: InputNotifyPeer -### Constructors: +### Possible values (constructors): [inputNotifyPeer](../constructors/inputNotifyPeer.md) diff --git a/docs/API_docs/types/InputPeer.md b/docs/API_docs/types/InputPeer.md index bced0b62..06680302 100644 --- a/docs/API_docs/types/InputPeer.md +++ b/docs/API_docs/types/InputPeer.md @@ -1,6 +1,6 @@ ## Type: InputPeer -### Constructors: +### Possible values (constructors): [inputPeerEmpty](../constructors/inputPeerEmpty.md) diff --git a/docs/API_docs/types/InputPeerNotifyEvents.md b/docs/API_docs/types/InputPeerNotifyEvents.md index 069aa435..39b9a8cd 100644 --- a/docs/API_docs/types/InputPeerNotifyEvents.md +++ b/docs/API_docs/types/InputPeerNotifyEvents.md @@ -1,6 +1,6 @@ ## Type: InputPeerNotifyEvents -### Constructors: +### Possible values (constructors): [inputPeerNotifyEventsEmpty](../constructors/inputPeerNotifyEventsEmpty.md) diff --git a/docs/API_docs/types/InputPeerNotifySettings.md b/docs/API_docs/types/InputPeerNotifySettings.md index 75571719..9b7dadd9 100644 --- a/docs/API_docs/types/InputPeerNotifySettings.md +++ b/docs/API_docs/types/InputPeerNotifySettings.md @@ -1,6 +1,6 @@ ## Type: InputPeerNotifySettings -### Constructors: +### Possible values (constructors): [inputPeerNotifySettings](../constructors/inputPeerNotifySettings.md) diff --git a/docs/API_docs/types/InputPhoto.md b/docs/API_docs/types/InputPhoto.md index 81aed950..b03bd1f4 100644 --- a/docs/API_docs/types/InputPhoto.md +++ b/docs/API_docs/types/InputPhoto.md @@ -1,6 +1,6 @@ ## Type: InputPhoto -### Constructors: +### Possible values (constructors): [inputPhotoEmpty](../constructors/inputPhotoEmpty.md) diff --git a/docs/API_docs/types/InputPrivacyKey.md b/docs/API_docs/types/InputPrivacyKey.md index 099b140c..0a6931cd 100644 --- a/docs/API_docs/types/InputPrivacyKey.md +++ b/docs/API_docs/types/InputPrivacyKey.md @@ -1,6 +1,6 @@ ## Type: InputPrivacyKey -### Constructors: +### Possible values (constructors): [inputPrivacyKeyStatusTimestamp](../constructors/inputPrivacyKeyStatusTimestamp.md) diff --git a/docs/API_docs/types/InputPrivacyRule.md b/docs/API_docs/types/InputPrivacyRule.md index dc758779..81a749f2 100644 --- a/docs/API_docs/types/InputPrivacyRule.md +++ b/docs/API_docs/types/InputPrivacyRule.md @@ -1,6 +1,6 @@ ## Type: InputPrivacyRule -### Constructors: +### Possible values (constructors): [inputPrivacyValueAllowContacts](../constructors/inputPrivacyValueAllowContacts.md) diff --git a/docs/API_docs/types/InputStickerSet.md b/docs/API_docs/types/InputStickerSet.md index dad726ff..f4cda030 100644 --- a/docs/API_docs/types/InputStickerSet.md +++ b/docs/API_docs/types/InputStickerSet.md @@ -1,6 +1,6 @@ ## Type: InputStickerSet -### Constructors: +### Possible values (constructors): [inputStickerSetEmpty](../constructors/inputStickerSetEmpty.md) diff --git a/docs/API_docs/types/InputStickeredMedia.md b/docs/API_docs/types/InputStickeredMedia.md index 3cf1d7fd..c96075c8 100644 --- a/docs/API_docs/types/InputStickeredMedia.md +++ b/docs/API_docs/types/InputStickeredMedia.md @@ -1,6 +1,6 @@ ## Type: InputStickeredMedia -### Constructors: +### Possible values (constructors): [inputStickeredMediaPhoto](../constructors/inputStickeredMediaPhoto.md) diff --git a/docs/API_docs/types/InputUser.md b/docs/API_docs/types/InputUser.md index 48c8b632..d2919bf2 100644 --- a/docs/API_docs/types/InputUser.md +++ b/docs/API_docs/types/InputUser.md @@ -1,6 +1,6 @@ ## Type: InputUser -### Constructors: +### Possible values (constructors): [inputUserEmpty](../constructors/inputUserEmpty.md) diff --git a/docs/API_docs/types/KeyboardButton.md b/docs/API_docs/types/KeyboardButton.md index 8eca6f34..868890f9 100644 --- a/docs/API_docs/types/KeyboardButton.md +++ b/docs/API_docs/types/KeyboardButton.md @@ -1,6 +1,6 @@ ## Type: KeyboardButton -### Constructors: +### Possible values (constructors): [keyboardButton](../constructors/keyboardButton.md) diff --git a/docs/API_docs/types/KeyboardButtonRow.md b/docs/API_docs/types/KeyboardButtonRow.md index 5bec495a..d691b733 100644 --- a/docs/API_docs/types/KeyboardButtonRow.md +++ b/docs/API_docs/types/KeyboardButtonRow.md @@ -1,6 +1,6 @@ ## Type: KeyboardButtonRow -### Constructors: +### Possible values (constructors): [keyboardButtonRow](../constructors/keyboardButtonRow.md) diff --git a/docs/API_docs/types/MaskCoords.md b/docs/API_docs/types/MaskCoords.md index de9879a4..2c7a557f 100644 --- a/docs/API_docs/types/MaskCoords.md +++ b/docs/API_docs/types/MaskCoords.md @@ -1,6 +1,6 @@ ## Type: MaskCoords -### Constructors: +### Possible values (constructors): [maskCoords](../constructors/maskCoords.md) diff --git a/docs/API_docs/types/Message.md b/docs/API_docs/types/Message.md index aea668e5..8acf5b1a 100644 --- a/docs/API_docs/types/Message.md +++ b/docs/API_docs/types/Message.md @@ -1,6 +1,6 @@ ## Type: Message -### Constructors: +### Possible values (constructors): [messageEmpty](../constructors/messageEmpty.md) diff --git a/docs/API_docs/types/MessageAction.md b/docs/API_docs/types/MessageAction.md index 9c669610..a0eda8a4 100644 --- a/docs/API_docs/types/MessageAction.md +++ b/docs/API_docs/types/MessageAction.md @@ -1,6 +1,6 @@ ## Type: MessageAction -### Constructors: +### Possible values (constructors): [messageActionEmpty](../constructors/messageActionEmpty.md) diff --git a/docs/API_docs/types/MessageEntity.md b/docs/API_docs/types/MessageEntity.md index add88405..ca00389b 100644 --- a/docs/API_docs/types/MessageEntity.md +++ b/docs/API_docs/types/MessageEntity.md @@ -1,6 +1,6 @@ ## Type: MessageEntity -### Constructors: +### Possible values (constructors): [messageEntityUnknown](../constructors/messageEntityUnknown.md) diff --git a/docs/API_docs/types/MessageFwdHeader.md b/docs/API_docs/types/MessageFwdHeader.md index d13e6873..8e225361 100644 --- a/docs/API_docs/types/MessageFwdHeader.md +++ b/docs/API_docs/types/MessageFwdHeader.md @@ -1,6 +1,6 @@ ## Type: MessageFwdHeader -### Constructors: +### Possible values (constructors): [messageFwdHeader](../constructors/messageFwdHeader.md) diff --git a/docs/API_docs/types/MessageMedia.md b/docs/API_docs/types/MessageMedia.md index 02fa7a84..b6572233 100644 --- a/docs/API_docs/types/MessageMedia.md +++ b/docs/API_docs/types/MessageMedia.md @@ -1,6 +1,6 @@ ## Type: MessageMedia -### Constructors: +### Possible values (constructors): [messageMediaEmpty](../constructors/messageMediaEmpty.md) diff --git a/docs/API_docs/types/MessageRange.md b/docs/API_docs/types/MessageRange.md index 02bcbaf0..020062ee 100644 --- a/docs/API_docs/types/MessageRange.md +++ b/docs/API_docs/types/MessageRange.md @@ -1,6 +1,6 @@ ## Type: MessageRange -### Constructors: +### Possible values (constructors): [messageRange](../constructors/messageRange.md) diff --git a/docs/API_docs/types/MessagesFilter.md b/docs/API_docs/types/MessagesFilter.md index 2e0f89b9..57dee79a 100644 --- a/docs/API_docs/types/MessagesFilter.md +++ b/docs/API_docs/types/MessagesFilter.md @@ -1,6 +1,6 @@ ## Type: MessagesFilter -### Constructors: +### Possible values (constructors): [inputMessagesFilterEmpty](../constructors/inputMessagesFilterEmpty.md) diff --git a/docs/API_docs/types/NearestDc.md b/docs/API_docs/types/NearestDc.md index 53b41745..85af2486 100644 --- a/docs/API_docs/types/NearestDc.md +++ b/docs/API_docs/types/NearestDc.md @@ -1,6 +1,6 @@ ## Type: NearestDc -### Constructors: +### Possible values (constructors): [nearestDc](../constructors/nearestDc.md) diff --git a/docs/API_docs/types/NotifyPeer.md b/docs/API_docs/types/NotifyPeer.md index 6b694c3d..f95bd60b 100644 --- a/docs/API_docs/types/NotifyPeer.md +++ b/docs/API_docs/types/NotifyPeer.md @@ -1,6 +1,6 @@ ## Type: NotifyPeer -### Constructors: +### Possible values (constructors): [notifyPeer](../constructors/notifyPeer.md) diff --git a/docs/API_docs/types/Null.md b/docs/API_docs/types/Null.md index 567e6a56..dc6aa6b1 100644 --- a/docs/API_docs/types/Null.md +++ b/docs/API_docs/types/Null.md @@ -1,6 +1,6 @@ ## Type: Null -### Constructors: +### Possible values (constructors): [null](../constructors/null.md) diff --git a/docs/API_docs/types/Peer.md b/docs/API_docs/types/Peer.md index ee144f55..1c68ca0d 100644 --- a/docs/API_docs/types/Peer.md +++ b/docs/API_docs/types/Peer.md @@ -1,6 +1,6 @@ ## Type: Peer -### Constructors: +### Possible values (constructors): [peerUser](../constructors/peerUser.md) diff --git a/docs/API_docs/types/PeerNotifyEvents.md b/docs/API_docs/types/PeerNotifyEvents.md index 49810dfd..34e907f7 100644 --- a/docs/API_docs/types/PeerNotifyEvents.md +++ b/docs/API_docs/types/PeerNotifyEvents.md @@ -1,6 +1,6 @@ ## Type: PeerNotifyEvents -### Constructors: +### Possible values (constructors): [peerNotifyEventsEmpty](../constructors/peerNotifyEventsEmpty.md) diff --git a/docs/API_docs/types/PeerNotifySettings.md b/docs/API_docs/types/PeerNotifySettings.md index 1b9c3582..ef89dfc5 100644 --- a/docs/API_docs/types/PeerNotifySettings.md +++ b/docs/API_docs/types/PeerNotifySettings.md @@ -1,6 +1,6 @@ ## Type: PeerNotifySettings -### Constructors: +### Possible values (constructors): [peerNotifySettingsEmpty](../constructors/peerNotifySettingsEmpty.md) diff --git a/docs/API_docs/types/PeerSettings.md b/docs/API_docs/types/PeerSettings.md index 780c90c7..a8d6e0c9 100644 --- a/docs/API_docs/types/PeerSettings.md +++ b/docs/API_docs/types/PeerSettings.md @@ -1,6 +1,6 @@ ## Type: PeerSettings -### Constructors: +### Possible values (constructors): [peerSettings](../constructors/peerSettings.md) diff --git a/docs/API_docs/types/Photo.md b/docs/API_docs/types/Photo.md index a9d993f2..d8eafc74 100644 --- a/docs/API_docs/types/Photo.md +++ b/docs/API_docs/types/Photo.md @@ -1,6 +1,6 @@ ## Type: Photo -### Constructors: +### Possible values (constructors): [photoEmpty](../constructors/photoEmpty.md) diff --git a/docs/API_docs/types/PhotoSize.md b/docs/API_docs/types/PhotoSize.md index 16f1446f..a29406bc 100644 --- a/docs/API_docs/types/PhotoSize.md +++ b/docs/API_docs/types/PhotoSize.md @@ -1,6 +1,6 @@ ## Type: PhotoSize -### Constructors: +### Possible values (constructors): [photoSizeEmpty](../constructors/photoSizeEmpty.md) diff --git a/docs/API_docs/types/PrivacyKey.md b/docs/API_docs/types/PrivacyKey.md index 5870620a..e00483d6 100644 --- a/docs/API_docs/types/PrivacyKey.md +++ b/docs/API_docs/types/PrivacyKey.md @@ -1,6 +1,6 @@ ## Type: PrivacyKey -### Constructors: +### Possible values (constructors): [privacyKeyStatusTimestamp](../constructors/privacyKeyStatusTimestamp.md) diff --git a/docs/API_docs/types/PrivacyRule.md b/docs/API_docs/types/PrivacyRule.md index 27a5a1dc..7793b333 100644 --- a/docs/API_docs/types/PrivacyRule.md +++ b/docs/API_docs/types/PrivacyRule.md @@ -1,6 +1,6 @@ ## Type: PrivacyRule -### Constructors: +### Possible values (constructors): [privacyValueAllowContacts](../constructors/privacyValueAllowContacts.md) diff --git a/docs/API_docs/types/ReceivedNotifyMessage.md b/docs/API_docs/types/ReceivedNotifyMessage.md index e3ed53a8..85f5d8c3 100644 --- a/docs/API_docs/types/ReceivedNotifyMessage.md +++ b/docs/API_docs/types/ReceivedNotifyMessage.md @@ -1,6 +1,6 @@ ## Type: ReceivedNotifyMessage -### Constructors: +### Possible values (constructors): [receivedNotifyMessage](../constructors/receivedNotifyMessage.md) diff --git a/docs/API_docs/types/ReplyMarkup.md b/docs/API_docs/types/ReplyMarkup.md index 894edf25..d32ed7b9 100644 --- a/docs/API_docs/types/ReplyMarkup.md +++ b/docs/API_docs/types/ReplyMarkup.md @@ -1,6 +1,6 @@ ## Type: ReplyMarkup -### Constructors: +### Possible values (constructors): [replyKeyboardHide](../constructors/replyKeyboardHide.md) diff --git a/docs/API_docs/types/ReportReason.md b/docs/API_docs/types/ReportReason.md index 7c57e78a..1eae4a7f 100644 --- a/docs/API_docs/types/ReportReason.md +++ b/docs/API_docs/types/ReportReason.md @@ -1,6 +1,6 @@ ## Type: ReportReason -### Constructors: +### Possible values (constructors): [inputReportReasonSpam](../constructors/inputReportReasonSpam.md) diff --git a/docs/API_docs/types/SendMessageAction.md b/docs/API_docs/types/SendMessageAction.md index 06812f28..a1dd96f8 100644 --- a/docs/API_docs/types/SendMessageAction.md +++ b/docs/API_docs/types/SendMessageAction.md @@ -1,6 +1,6 @@ ## Type: SendMessageAction -### Constructors: +### Possible values (constructors): [sendMessageTypingAction](../constructors/sendMessageTypingAction.md) diff --git a/docs/API_docs/types/StickerPack.md b/docs/API_docs/types/StickerPack.md index 30f92b7f..4fb914a2 100644 --- a/docs/API_docs/types/StickerPack.md +++ b/docs/API_docs/types/StickerPack.md @@ -1,6 +1,6 @@ ## Type: StickerPack -### Constructors: +### Possible values (constructors): [stickerPack](../constructors/stickerPack.md) diff --git a/docs/API_docs/types/StickerSet.md b/docs/API_docs/types/StickerSet.md index 707607d6..e716954b 100644 --- a/docs/API_docs/types/StickerSet.md +++ b/docs/API_docs/types/StickerSet.md @@ -1,6 +1,6 @@ ## Type: StickerSet -### Constructors: +### Possible values (constructors): [stickerSet](../constructors/stickerSet.md) diff --git a/docs/API_docs/types/StickerSetCovered.md b/docs/API_docs/types/StickerSetCovered.md index bf96f62a..3bf3b7a3 100644 --- a/docs/API_docs/types/StickerSetCovered.md +++ b/docs/API_docs/types/StickerSetCovered.md @@ -1,6 +1,6 @@ ## Type: StickerSetCovered -### Constructors: +### Possible values (constructors): [stickerSetCovered](../constructors/stickerSetCovered.md) diff --git a/docs/API_docs/types/TopPeer.md b/docs/API_docs/types/TopPeer.md index dcdef23d..916b8ec6 100644 --- a/docs/API_docs/types/TopPeer.md +++ b/docs/API_docs/types/TopPeer.md @@ -1,6 +1,6 @@ ## Type: TopPeer -### Constructors: +### Possible values (constructors): [topPeer](../constructors/topPeer.md) diff --git a/docs/API_docs/types/TopPeerCategory.md b/docs/API_docs/types/TopPeerCategory.md index dcb26a97..55a7ec76 100644 --- a/docs/API_docs/types/TopPeerCategory.md +++ b/docs/API_docs/types/TopPeerCategory.md @@ -1,6 +1,6 @@ ## Type: TopPeerCategory -### Constructors: +### Possible values (constructors): [topPeerCategoryBotsPM](../constructors/topPeerCategoryBotsPM.md) diff --git a/docs/API_docs/types/TopPeerCategoryPeers.md b/docs/API_docs/types/TopPeerCategoryPeers.md index 2cac1212..e4253c52 100644 --- a/docs/API_docs/types/TopPeerCategoryPeers.md +++ b/docs/API_docs/types/TopPeerCategoryPeers.md @@ -1,6 +1,6 @@ ## Type: TopPeerCategoryPeers -### Constructors: +### Possible values (constructors): [topPeerCategoryPeers](../constructors/topPeerCategoryPeers.md) diff --git a/docs/API_docs/types/True.md b/docs/API_docs/types/True.md index 77793998..944b19f7 100644 --- a/docs/API_docs/types/True.md +++ b/docs/API_docs/types/True.md @@ -1,6 +1,6 @@ ## Type: True -### Constructors: +### Possible values (constructors): [true](../constructors/true.md) diff --git a/docs/API_docs/types/Update.md b/docs/API_docs/types/Update.md index 0bbddca5..e0d36ccd 100644 --- a/docs/API_docs/types/Update.md +++ b/docs/API_docs/types/Update.md @@ -1,6 +1,6 @@ ## Type: Update -### Constructors: +### Possible values (constructors): [updateNewMessage](../constructors/updateNewMessage.md) diff --git a/docs/API_docs/types/Updates.md b/docs/API_docs/types/Updates.md index e196c904..21155f7f 100644 --- a/docs/API_docs/types/Updates.md +++ b/docs/API_docs/types/Updates.md @@ -1,6 +1,6 @@ ## Type: Updates -### Constructors: +### Possible values (constructors): [updatesTooLong](../constructors/updatesTooLong.md) diff --git a/docs/API_docs/types/User.md b/docs/API_docs/types/User.md index 32fa9d1a..69892afd 100644 --- a/docs/API_docs/types/User.md +++ b/docs/API_docs/types/User.md @@ -1,6 +1,6 @@ ## Type: User -### Constructors: +### Possible values (constructors): [userEmpty](../constructors/userEmpty.md) diff --git a/docs/API_docs/types/UserFull.md b/docs/API_docs/types/UserFull.md index bcf3430f..b1f32b69 100644 --- a/docs/API_docs/types/UserFull.md +++ b/docs/API_docs/types/UserFull.md @@ -1,6 +1,6 @@ ## Type: UserFull -### Constructors: +### Possible values (constructors): [userFull](../constructors/userFull.md) diff --git a/docs/API_docs/types/UserProfilePhoto.md b/docs/API_docs/types/UserProfilePhoto.md index 8287e4b6..62cb90e1 100644 --- a/docs/API_docs/types/UserProfilePhoto.md +++ b/docs/API_docs/types/UserProfilePhoto.md @@ -1,6 +1,6 @@ ## Type: UserProfilePhoto -### Constructors: +### Possible values (constructors): [userProfilePhotoEmpty](../constructors/userProfilePhotoEmpty.md) diff --git a/docs/API_docs/types/UserStatus.md b/docs/API_docs/types/UserStatus.md index 647d98d6..0d333530 100644 --- a/docs/API_docs/types/UserStatus.md +++ b/docs/API_docs/types/UserStatus.md @@ -1,6 +1,6 @@ ## Type: UserStatus -### Constructors: +### Possible values (constructors): [userStatusEmpty](../constructors/userStatusEmpty.md) diff --git a/docs/API_docs/types/Vector t.md b/docs/API_docs/types/Vector t.md index b037677f..7c627c3f 100644 --- a/docs/API_docs/types/Vector t.md +++ b/docs/API_docs/types/Vector t.md @@ -1,6 +1,6 @@ ## Type: Vector t -### Constructors: +### Possible values (constructors): [vector](../constructors/vector.md) diff --git a/docs/API_docs/types/WallPaper.md b/docs/API_docs/types/WallPaper.md index ba0dfcd4..627814f4 100644 --- a/docs/API_docs/types/WallPaper.md +++ b/docs/API_docs/types/WallPaper.md @@ -1,6 +1,6 @@ ## Type: WallPaper -### Constructors: +### Possible values (constructors): [wallPaper](../constructors/wallPaper.md) diff --git a/docs/API_docs/types/WebPage.md b/docs/API_docs/types/WebPage.md index 414822ac..4f4fd294 100644 --- a/docs/API_docs/types/WebPage.md +++ b/docs/API_docs/types/WebPage.md @@ -1,6 +1,6 @@ ## Type: WebPage -### Constructors: +### Possible values (constructors): [webPageEmpty](../constructors/webPageEmpty.md) diff --git a/docs/API_docs/types/account_Authorizations.md b/docs/API_docs/types/account_Authorizations.md index 1d6d52c9..b45e9ba5 100644 --- a/docs/API_docs/types/account_Authorizations.md +++ b/docs/API_docs/types/account_Authorizations.md @@ -1,6 +1,6 @@ ## Type: account\_Authorizations -### Constructors: +### Possible values (constructors): [account\_authorizations](../constructors/account\_authorizations.md) diff --git a/docs/API_docs/types/account_Password.md b/docs/API_docs/types/account_Password.md index 079d5727..012b60a2 100644 --- a/docs/API_docs/types/account_Password.md +++ b/docs/API_docs/types/account_Password.md @@ -1,6 +1,6 @@ ## Type: account\_Password -### Constructors: +### Possible values (constructors): [account\_noPassword](../constructors/account\_noPassword.md) diff --git a/docs/API_docs/types/account_PasswordInputSettings.md b/docs/API_docs/types/account_PasswordInputSettings.md index db0b54a9..bca970db 100644 --- a/docs/API_docs/types/account_PasswordInputSettings.md +++ b/docs/API_docs/types/account_PasswordInputSettings.md @@ -1,6 +1,6 @@ ## Type: account\_PasswordInputSettings -### Constructors: +### Possible values (constructors): [account\_passwordInputSettings](../constructors/account\_passwordInputSettings.md) diff --git a/docs/API_docs/types/account_PasswordSettings.md b/docs/API_docs/types/account_PasswordSettings.md index 31e7582b..9d371d00 100644 --- a/docs/API_docs/types/account_PasswordSettings.md +++ b/docs/API_docs/types/account_PasswordSettings.md @@ -1,6 +1,6 @@ ## Type: account\_PasswordSettings -### Constructors: +### Possible values (constructors): [account\_passwordSettings](../constructors/account\_passwordSettings.md) diff --git a/docs/API_docs/types/account_PrivacyRules.md b/docs/API_docs/types/account_PrivacyRules.md index 1e24fd5a..e1023bf2 100644 --- a/docs/API_docs/types/account_PrivacyRules.md +++ b/docs/API_docs/types/account_PrivacyRules.md @@ -1,6 +1,6 @@ ## Type: account\_PrivacyRules -### Constructors: +### Possible values (constructors): [account\_privacyRules](../constructors/account\_privacyRules.md) diff --git a/docs/API_docs/types/auth_Authorization.md b/docs/API_docs/types/auth_Authorization.md index b41fe9a9..9acfa05d 100644 --- a/docs/API_docs/types/auth_Authorization.md +++ b/docs/API_docs/types/auth_Authorization.md @@ -1,6 +1,6 @@ ## Type: auth\_Authorization -### Constructors: +### Possible values (constructors): [auth\_authorization](../constructors/auth\_authorization.md) diff --git a/docs/API_docs/types/auth_CheckedPhone.md b/docs/API_docs/types/auth_CheckedPhone.md index 8d8bdbcc..c33d5024 100644 --- a/docs/API_docs/types/auth_CheckedPhone.md +++ b/docs/API_docs/types/auth_CheckedPhone.md @@ -1,6 +1,6 @@ ## Type: auth\_CheckedPhone -### Constructors: +### Possible values (constructors): [auth\_checkedPhone](../constructors/auth\_checkedPhone.md) diff --git a/docs/API_docs/types/auth_CodeType.md b/docs/API_docs/types/auth_CodeType.md index 468d6ed8..6c203549 100644 --- a/docs/API_docs/types/auth_CodeType.md +++ b/docs/API_docs/types/auth_CodeType.md @@ -1,6 +1,6 @@ ## Type: auth\_CodeType -### Constructors: +### Possible values (constructors): [auth\_codeTypeSms](../constructors/auth\_codeTypeSms.md) diff --git a/docs/API_docs/types/auth_ExportedAuthorization.md b/docs/API_docs/types/auth_ExportedAuthorization.md index 915e77ad..28dffe6e 100644 --- a/docs/API_docs/types/auth_ExportedAuthorization.md +++ b/docs/API_docs/types/auth_ExportedAuthorization.md @@ -1,6 +1,6 @@ ## Type: auth\_ExportedAuthorization -### Constructors: +### Possible values (constructors): [auth\_exportedAuthorization](../constructors/auth\_exportedAuthorization.md) diff --git a/docs/API_docs/types/auth_PasswordRecovery.md b/docs/API_docs/types/auth_PasswordRecovery.md index 1a3e1a0c..2687795a 100644 --- a/docs/API_docs/types/auth_PasswordRecovery.md +++ b/docs/API_docs/types/auth_PasswordRecovery.md @@ -1,6 +1,6 @@ ## Type: auth\_PasswordRecovery -### Constructors: +### Possible values (constructors): [auth\_passwordRecovery](../constructors/auth\_passwordRecovery.md) diff --git a/docs/API_docs/types/auth_SentCode.md b/docs/API_docs/types/auth_SentCode.md index 4a69be55..9fe6c6c5 100644 --- a/docs/API_docs/types/auth_SentCode.md +++ b/docs/API_docs/types/auth_SentCode.md @@ -1,6 +1,6 @@ ## Type: auth\_SentCode -### Constructors: +### Possible values (constructors): [auth\_sentCode](../constructors/auth\_sentCode.md) diff --git a/docs/API_docs/types/auth_SentCodeType.md b/docs/API_docs/types/auth_SentCodeType.md index ec2db681..962c2aae 100644 --- a/docs/API_docs/types/auth_SentCodeType.md +++ b/docs/API_docs/types/auth_SentCodeType.md @@ -1,6 +1,6 @@ ## Type: auth\_SentCodeType -### Constructors: +### Possible values (constructors): [auth\_sentCodeTypeApp](../constructors/auth\_sentCodeTypeApp.md) diff --git a/docs/API_docs/types/channels_ChannelParticipant.md b/docs/API_docs/types/channels_ChannelParticipant.md index cb243dd2..85e607d7 100644 --- a/docs/API_docs/types/channels_ChannelParticipant.md +++ b/docs/API_docs/types/channels_ChannelParticipant.md @@ -1,6 +1,6 @@ ## Type: channels\_ChannelParticipant -### Constructors: +### Possible values (constructors): [channels\_channelParticipant](../constructors/channels\_channelParticipant.md) diff --git a/docs/API_docs/types/channels_ChannelParticipants.md b/docs/API_docs/types/channels_ChannelParticipants.md index 90c339e2..1881197f 100644 --- a/docs/API_docs/types/channels_ChannelParticipants.md +++ b/docs/API_docs/types/channels_ChannelParticipants.md @@ -1,6 +1,6 @@ ## Type: channels\_ChannelParticipants -### Constructors: +### Possible values (constructors): [channels\_channelParticipants](../constructors/channels\_channelParticipants.md) diff --git a/docs/API_docs/types/contacts_Blocked.md b/docs/API_docs/types/contacts_Blocked.md index dbcb87a6..6fba381b 100644 --- a/docs/API_docs/types/contacts_Blocked.md +++ b/docs/API_docs/types/contacts_Blocked.md @@ -1,6 +1,6 @@ ## Type: contacts\_Blocked -### Constructors: +### Possible values (constructors): [contacts\_blocked](../constructors/contacts\_blocked.md) diff --git a/docs/API_docs/types/contacts_Contacts.md b/docs/API_docs/types/contacts_Contacts.md index aaeba5b2..c603f5fa 100644 --- a/docs/API_docs/types/contacts_Contacts.md +++ b/docs/API_docs/types/contacts_Contacts.md @@ -1,6 +1,6 @@ ## Type: contacts\_Contacts -### Constructors: +### Possible values (constructors): [contacts\_contactsNotModified](../constructors/contacts\_contactsNotModified.md) diff --git a/docs/API_docs/types/contacts_Found.md b/docs/API_docs/types/contacts_Found.md index d057c057..2ada678f 100644 --- a/docs/API_docs/types/contacts_Found.md +++ b/docs/API_docs/types/contacts_Found.md @@ -1,6 +1,6 @@ ## Type: contacts\_Found -### Constructors: +### Possible values (constructors): [contacts\_found](../constructors/contacts\_found.md) diff --git a/docs/API_docs/types/contacts_ImportedContacts.md b/docs/API_docs/types/contacts_ImportedContacts.md index 99f17474..b075a340 100644 --- a/docs/API_docs/types/contacts_ImportedContacts.md +++ b/docs/API_docs/types/contacts_ImportedContacts.md @@ -1,6 +1,6 @@ ## Type: contacts\_ImportedContacts -### Constructors: +### Possible values (constructors): [contacts\_importedContacts](../constructors/contacts\_importedContacts.md) diff --git a/docs/API_docs/types/contacts_Link.md b/docs/API_docs/types/contacts_Link.md index 3d9a92ff..aaa77959 100644 --- a/docs/API_docs/types/contacts_Link.md +++ b/docs/API_docs/types/contacts_Link.md @@ -1,6 +1,6 @@ ## Type: contacts\_Link -### Constructors: +### Possible values (constructors): [contacts\_link](../constructors/contacts\_link.md) diff --git a/docs/API_docs/types/contacts_ResolvedPeer.md b/docs/API_docs/types/contacts_ResolvedPeer.md index baa1f27e..fa1094d1 100644 --- a/docs/API_docs/types/contacts_ResolvedPeer.md +++ b/docs/API_docs/types/contacts_ResolvedPeer.md @@ -1,6 +1,6 @@ ## Type: contacts\_ResolvedPeer -### Constructors: +### Possible values (constructors): [contacts\_resolvedPeer](../constructors/contacts\_resolvedPeer.md) diff --git a/docs/API_docs/types/contacts_TopPeers.md b/docs/API_docs/types/contacts_TopPeers.md index 1a802eea..8564f92d 100644 --- a/docs/API_docs/types/contacts_TopPeers.md +++ b/docs/API_docs/types/contacts_TopPeers.md @@ -1,6 +1,6 @@ ## Type: contacts\_TopPeers -### Constructors: +### Possible values (constructors): [contacts\_topPeersNotModified](../constructors/contacts\_topPeersNotModified.md) diff --git a/docs/API_docs/types/help_AppChangelog.md b/docs/API_docs/types/help_AppChangelog.md index a6d64a5f..f0b89d2b 100644 --- a/docs/API_docs/types/help_AppChangelog.md +++ b/docs/API_docs/types/help_AppChangelog.md @@ -1,6 +1,6 @@ ## Type: help\_AppChangelog -### Constructors: +### Possible values (constructors): [help\_appChangelogEmpty](../constructors/help\_appChangelogEmpty.md) diff --git a/docs/API_docs/types/help_AppUpdate.md b/docs/API_docs/types/help_AppUpdate.md index 078b97d5..1609ee19 100644 --- a/docs/API_docs/types/help_AppUpdate.md +++ b/docs/API_docs/types/help_AppUpdate.md @@ -1,6 +1,6 @@ ## Type: help\_AppUpdate -### Constructors: +### Possible values (constructors): [help\_appUpdate](../constructors/help\_appUpdate.md) diff --git a/docs/API_docs/types/help_InviteText.md b/docs/API_docs/types/help_InviteText.md index f946bdb1..3b97a1dc 100644 --- a/docs/API_docs/types/help_InviteText.md +++ b/docs/API_docs/types/help_InviteText.md @@ -1,6 +1,6 @@ ## Type: help\_InviteText -### Constructors: +### Possible values (constructors): [help\_inviteText](../constructors/help\_inviteText.md) diff --git a/docs/API_docs/types/help_Support.md b/docs/API_docs/types/help_Support.md index 92a8e516..a96a916b 100644 --- a/docs/API_docs/types/help_Support.md +++ b/docs/API_docs/types/help_Support.md @@ -1,6 +1,6 @@ ## Type: help\_Support -### Constructors: +### Possible values (constructors): [help\_support](../constructors/help\_support.md) diff --git a/docs/API_docs/types/help_TermsOfService.md b/docs/API_docs/types/help_TermsOfService.md index 7a803e76..4a097ba2 100644 --- a/docs/API_docs/types/help_TermsOfService.md +++ b/docs/API_docs/types/help_TermsOfService.md @@ -1,6 +1,6 @@ ## Type: help\_TermsOfService -### Constructors: +### Possible values (constructors): [help\_termsOfService](../constructors/help\_termsOfService.md) diff --git a/docs/API_docs/types/messages_AffectedHistory.md b/docs/API_docs/types/messages_AffectedHistory.md index 4f07e467..0d57ff94 100644 --- a/docs/API_docs/types/messages_AffectedHistory.md +++ b/docs/API_docs/types/messages_AffectedHistory.md @@ -1,6 +1,6 @@ ## Type: messages\_AffectedHistory -### Constructors: +### Possible values (constructors): [messages\_affectedHistory](../constructors/messages\_affectedHistory.md) diff --git a/docs/API_docs/types/messages_AffectedMessages.md b/docs/API_docs/types/messages_AffectedMessages.md index d181cb40..8eee902d 100644 --- a/docs/API_docs/types/messages_AffectedMessages.md +++ b/docs/API_docs/types/messages_AffectedMessages.md @@ -1,6 +1,6 @@ ## Type: messages\_AffectedMessages -### Constructors: +### Possible values (constructors): [messages\_affectedMessages](../constructors/messages\_affectedMessages.md) diff --git a/docs/API_docs/types/messages_AllStickers.md b/docs/API_docs/types/messages_AllStickers.md index 32fefb50..8d9f83a3 100644 --- a/docs/API_docs/types/messages_AllStickers.md +++ b/docs/API_docs/types/messages_AllStickers.md @@ -1,6 +1,6 @@ ## Type: messages\_AllStickers -### Constructors: +### Possible values (constructors): [messages\_allStickersNotModified](../constructors/messages\_allStickersNotModified.md) diff --git a/docs/API_docs/types/messages_ArchivedStickers.md b/docs/API_docs/types/messages_ArchivedStickers.md index 516ebf1f..ecfa9b81 100644 --- a/docs/API_docs/types/messages_ArchivedStickers.md +++ b/docs/API_docs/types/messages_ArchivedStickers.md @@ -1,6 +1,6 @@ ## Type: messages\_ArchivedStickers -### Constructors: +### Possible values (constructors): [messages\_archivedStickers](../constructors/messages\_archivedStickers.md) diff --git a/docs/API_docs/types/messages_BotCallbackAnswer.md b/docs/API_docs/types/messages_BotCallbackAnswer.md index d5ae2943..43bea253 100644 --- a/docs/API_docs/types/messages_BotCallbackAnswer.md +++ b/docs/API_docs/types/messages_BotCallbackAnswer.md @@ -1,6 +1,6 @@ ## Type: messages\_BotCallbackAnswer -### Constructors: +### Possible values (constructors): [messages\_botCallbackAnswer](../constructors/messages\_botCallbackAnswer.md) diff --git a/docs/API_docs/types/messages_BotResults.md b/docs/API_docs/types/messages_BotResults.md index 8a591d76..cb121483 100644 --- a/docs/API_docs/types/messages_BotResults.md +++ b/docs/API_docs/types/messages_BotResults.md @@ -1,6 +1,6 @@ ## Type: messages\_BotResults -### Constructors: +### Possible values (constructors): [messages\_botResults](../constructors/messages\_botResults.md) diff --git a/docs/API_docs/types/messages_ChatFull.md b/docs/API_docs/types/messages_ChatFull.md index 7671232c..491e9c93 100644 --- a/docs/API_docs/types/messages_ChatFull.md +++ b/docs/API_docs/types/messages_ChatFull.md @@ -1,6 +1,6 @@ ## Type: messages\_ChatFull -### Constructors: +### Possible values (constructors): [messages\_chatFull](../constructors/messages\_chatFull.md) diff --git a/docs/API_docs/types/messages_Chats.md b/docs/API_docs/types/messages_Chats.md index c5d6bfb8..60446d9b 100644 --- a/docs/API_docs/types/messages_Chats.md +++ b/docs/API_docs/types/messages_Chats.md @@ -1,6 +1,6 @@ ## Type: messages\_Chats -### Constructors: +### Possible values (constructors): [messages\_chats](../constructors/messages\_chats.md) diff --git a/docs/API_docs/types/messages_DhConfig.md b/docs/API_docs/types/messages_DhConfig.md index c998f2fc..cb2f5fb0 100644 --- a/docs/API_docs/types/messages_DhConfig.md +++ b/docs/API_docs/types/messages_DhConfig.md @@ -1,6 +1,6 @@ ## Type: messages\_DhConfig -### Constructors: +### Possible values (constructors): [messages\_dhConfigNotModified](../constructors/messages\_dhConfigNotModified.md) diff --git a/docs/API_docs/types/messages_Dialogs.md b/docs/API_docs/types/messages_Dialogs.md index ad11eb90..211084d5 100644 --- a/docs/API_docs/types/messages_Dialogs.md +++ b/docs/API_docs/types/messages_Dialogs.md @@ -1,6 +1,6 @@ ## Type: messages\_Dialogs -### Constructors: +### Possible values (constructors): [messages\_dialogs](../constructors/messages\_dialogs.md) diff --git a/docs/API_docs/types/messages_FeaturedStickers.md b/docs/API_docs/types/messages_FeaturedStickers.md index eb17d1d5..94cdbd6b 100644 --- a/docs/API_docs/types/messages_FeaturedStickers.md +++ b/docs/API_docs/types/messages_FeaturedStickers.md @@ -1,6 +1,6 @@ ## Type: messages\_FeaturedStickers -### Constructors: +### Possible values (constructors): [messages\_featuredStickersNotModified](../constructors/messages\_featuredStickersNotModified.md) diff --git a/docs/API_docs/types/messages_FoundGifs.md b/docs/API_docs/types/messages_FoundGifs.md index dfc278c2..d41ef095 100644 --- a/docs/API_docs/types/messages_FoundGifs.md +++ b/docs/API_docs/types/messages_FoundGifs.md @@ -1,6 +1,6 @@ ## Type: messages\_FoundGifs -### Constructors: +### Possible values (constructors): [messages\_foundGifs](../constructors/messages\_foundGifs.md) diff --git a/docs/API_docs/types/messages_HighScores.md b/docs/API_docs/types/messages_HighScores.md index f7cb1881..8d016070 100644 --- a/docs/API_docs/types/messages_HighScores.md +++ b/docs/API_docs/types/messages_HighScores.md @@ -1,6 +1,6 @@ ## Type: messages\_HighScores -### Constructors: +### Possible values (constructors): [messages\_highScores](../constructors/messages\_highScores.md) diff --git a/docs/API_docs/types/messages_MessageEditData.md b/docs/API_docs/types/messages_MessageEditData.md index 26b436b5..d4bc8e18 100644 --- a/docs/API_docs/types/messages_MessageEditData.md +++ b/docs/API_docs/types/messages_MessageEditData.md @@ -1,6 +1,6 @@ ## Type: messages\_MessageEditData -### Constructors: +### Possible values (constructors): [messages\_messageEditData](../constructors/messages\_messageEditData.md) diff --git a/docs/API_docs/types/messages_Messages.md b/docs/API_docs/types/messages_Messages.md index 8172d3c3..c8bf9792 100644 --- a/docs/API_docs/types/messages_Messages.md +++ b/docs/API_docs/types/messages_Messages.md @@ -1,6 +1,6 @@ ## Type: messages\_Messages -### Constructors: +### Possible values (constructors): [messages\_messages](../constructors/messages\_messages.md) diff --git a/docs/API_docs/types/messages_PeerDialogs.md b/docs/API_docs/types/messages_PeerDialogs.md index ed37c7f9..17e25539 100644 --- a/docs/API_docs/types/messages_PeerDialogs.md +++ b/docs/API_docs/types/messages_PeerDialogs.md @@ -1,6 +1,6 @@ ## Type: messages\_PeerDialogs -### Constructors: +### Possible values (constructors): [messages\_peerDialogs](../constructors/messages\_peerDialogs.md) diff --git a/docs/API_docs/types/messages_RecentStickers.md b/docs/API_docs/types/messages_RecentStickers.md index 9f5fd503..91cdc267 100644 --- a/docs/API_docs/types/messages_RecentStickers.md +++ b/docs/API_docs/types/messages_RecentStickers.md @@ -1,6 +1,6 @@ ## Type: messages\_RecentStickers -### Constructors: +### Possible values (constructors): [messages\_recentStickersNotModified](../constructors/messages\_recentStickersNotModified.md) diff --git a/docs/API_docs/types/messages_SavedGifs.md b/docs/API_docs/types/messages_SavedGifs.md index cdbc4f44..7ca4c14e 100644 --- a/docs/API_docs/types/messages_SavedGifs.md +++ b/docs/API_docs/types/messages_SavedGifs.md @@ -1,6 +1,6 @@ ## Type: messages\_SavedGifs -### Constructors: +### Possible values (constructors): [messages\_savedGifsNotModified](../constructors/messages\_savedGifsNotModified.md) diff --git a/docs/API_docs/types/messages_SentEncryptedMessage.md b/docs/API_docs/types/messages_SentEncryptedMessage.md index 59f70f13..e599fd4a 100644 --- a/docs/API_docs/types/messages_SentEncryptedMessage.md +++ b/docs/API_docs/types/messages_SentEncryptedMessage.md @@ -1,6 +1,6 @@ ## Type: messages\_SentEncryptedMessage -### Constructors: +### Possible values (constructors): [messages\_sentEncryptedMessage](../constructors/messages\_sentEncryptedMessage.md) diff --git a/docs/API_docs/types/messages_StickerSet.md b/docs/API_docs/types/messages_StickerSet.md index 858cf272..9c7a0cc2 100644 --- a/docs/API_docs/types/messages_StickerSet.md +++ b/docs/API_docs/types/messages_StickerSet.md @@ -1,6 +1,6 @@ ## Type: messages\_StickerSet -### Constructors: +### Possible values (constructors): [messages\_stickerSet](../constructors/messages\_stickerSet.md) diff --git a/docs/API_docs/types/messages_StickerSetInstallResult.md b/docs/API_docs/types/messages_StickerSetInstallResult.md index 5d5ad750..d2222898 100644 --- a/docs/API_docs/types/messages_StickerSetInstallResult.md +++ b/docs/API_docs/types/messages_StickerSetInstallResult.md @@ -1,6 +1,6 @@ ## Type: messages\_StickerSetInstallResult -### Constructors: +### Possible values (constructors): [messages\_stickerSetInstallResultSuccess](../constructors/messages\_stickerSetInstallResultSuccess.md) diff --git a/docs/API_docs/types/messages_Stickers.md b/docs/API_docs/types/messages_Stickers.md index 81364535..3addd57d 100644 --- a/docs/API_docs/types/messages_Stickers.md +++ b/docs/API_docs/types/messages_Stickers.md @@ -1,6 +1,6 @@ ## Type: messages\_Stickers -### Constructors: +### Possible values (constructors): [messages\_stickersNotModified](../constructors/messages\_stickersNotModified.md) diff --git a/docs/API_docs/types/photos_Photo.md b/docs/API_docs/types/photos_Photo.md index 87773fd7..df19d8df 100644 --- a/docs/API_docs/types/photos_Photo.md +++ b/docs/API_docs/types/photos_Photo.md @@ -1,6 +1,6 @@ ## Type: photos\_Photo -### Constructors: +### Possible values (constructors): [photos\_photo](../constructors/photos\_photo.md) diff --git a/docs/API_docs/types/photos_Photos.md b/docs/API_docs/types/photos_Photos.md index 45923939..2554b9bf 100644 --- a/docs/API_docs/types/photos_Photos.md +++ b/docs/API_docs/types/photos_Photos.md @@ -1,6 +1,6 @@ ## Type: photos\_Photos -### Constructors: +### Possible values (constructors): [photos\_photos](../constructors/photos\_photos.md) diff --git a/docs/API_docs/types/storage_FileType.md b/docs/API_docs/types/storage_FileType.md index 0123db69..e313025e 100644 --- a/docs/API_docs/types/storage_FileType.md +++ b/docs/API_docs/types/storage_FileType.md @@ -1,6 +1,6 @@ ## Type: storage\_FileType -### Constructors: +### Possible values (constructors): [storage\_fileUnknown](../constructors/storage\_fileUnknown.md) diff --git a/docs/API_docs/types/updates_ChannelDifference.md b/docs/API_docs/types/updates_ChannelDifference.md index 9ae8c93f..7dac6db7 100644 --- a/docs/API_docs/types/updates_ChannelDifference.md +++ b/docs/API_docs/types/updates_ChannelDifference.md @@ -1,6 +1,6 @@ ## Type: updates\_ChannelDifference -### Constructors: +### Possible values (constructors): [updates\_channelDifferenceEmpty](../constructors/updates\_channelDifferenceEmpty.md) diff --git a/docs/API_docs/types/updates_Difference.md b/docs/API_docs/types/updates_Difference.md index d9299aec..e1fe4b45 100644 --- a/docs/API_docs/types/updates_Difference.md +++ b/docs/API_docs/types/updates_Difference.md @@ -1,6 +1,6 @@ ## Type: updates\_Difference -### Constructors: +### Possible values (constructors): [updates\_differenceEmpty](../constructors/updates\_differenceEmpty.md) diff --git a/docs/API_docs/types/updates_State.md b/docs/API_docs/types/updates_State.md index 20c780e5..c87850dd 100644 --- a/docs/API_docs/types/updates_State.md +++ b/docs/API_docs/types/updates_State.md @@ -1,6 +1,6 @@ ## Type: updates\_State -### Constructors: +### Possible values (constructors): [updates\_state](../constructors/updates\_state.md) diff --git a/docs/API_docs/types/upload_File.md b/docs/API_docs/types/upload_File.md index 4c6cc011..a5f74ab7 100644 --- a/docs/API_docs/types/upload_File.md +++ b/docs/API_docs/types/upload_File.md @@ -1,6 +1,6 @@ ## Type: upload\_File -### Constructors: +### Possible values (constructors): [upload\_file](../constructors/upload\_file.md)