This commit is contained in:
Daniil Gentili 2017-09-29 15:50:59 +02:00
parent 7a21c25e35
commit 8600a2fcba
229 changed files with 379 additions and 330 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
docs/.jekyll-metadata
songs.php
_site

Binary file not shown.

View File

@ -14,7 +14,7 @@ description: help_configSimple attributes, type and example
|date|[int](../types/int.md) | Yes|
|expires|[int](../types/int.md) | Yes|
|dc\_id|[int](../types/int.md) | Yes|
|ip\_port\_list|Array of [ipPort](../types/ipPort.md) | Yes|
|ip\_port\_list|Array of [ipPort](../constructors/ipPort.md) | Yes|

View File

@ -33,6 +33,7 @@ description: messages.getHistory parameters, return type and example
|CHANNEL_PRIVATE|You haven't joined this channel/supergroup|
|CHAT_ID_INVALID|The provided chat id is invalid|
|PEER_ID_INVALID|The provided peer id is invalid|
|Timeout|A timeout occurred while fetching data from the bot|
### Example:

View File

@ -24,6 +24,7 @@ description: messages.toggleChatAdmins parameters, return type and example
| Error | Description |
|----------|---------------|
|CHAT_ID_INVALID|The provided chat id is invalid|
|CHAT_NOT_MODIFIED|The pinned message wasn't modified|
### Example:

View File

@ -11,7 +11,7 @@ description: msg_container attributes, type and example
| Name | Type | Required |
|----------|---------------|----------|
|messages|Array of [MTmessage](../constructors/MTmessage.md) | Yes|
|messages|Array of [MTmessage](../types/MTmessage.md) | Yes|

View File

@ -18,8 +18,8 @@ Describes animation file. Animation should be encoded in gif or mp4 format
|height|[int](../types/int.md) | Yes|Height of the animation|
|file\_name|[string](../types/string.md) | Yes|Original name of a file as defined by sender|
|mime\_type|[string](../types/string.md) | Yes|MIME type of a file, usually "image/gif" or "video/mp4"|
|thumb|[photoSize](../types/photoSize.md) | Yes|Animation thumb, nullable|
|animation|[file](../types/file.md) | Yes|File with the animation|
|thumb|[photoSize](../constructors/photoSize.md) | Yes|Animation thumb, nullable|
|animation|[file](../constructors/file.md) | Yes|File with the animation|

View File

@ -18,8 +18,8 @@ Describes audio file. Audio is usually in mp3 format
|performer|[string](../types/string.md) | Yes|Performer of the audio as defined by sender|
|file\_name|[string](../types/string.md) | Yes|Original name of a file as defined by sender|
|mime\_type|[string](../types/string.md) | Yes|MIME type of a file as defined by sender|
|album\_cover\_thumb|[photoSize](../types/photoSize.md) | Yes|Thumb of the album's cover as defined by sender. Full size thumb should be extracted from the downloaded file, nullable|
|audio|[file](../types/file.md) | Yes|File with the audio|
|album\_cover\_thumb|[photoSize](../constructors/photoSize.md) | Yes|Thumb of the album's cover as defined by sender. Full size thumb should be extracted from the downloaded file, nullable|
|audio|[file](../constructors/file.md) | Yes|File with the audio|

View File

@ -13,7 +13,7 @@ Call has ended with an error
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|error|[error](../types/error.md) | Yes|The error. Error with the code 4005000 returned if an outgoing call is missed because of expired timeout|
|error|[error](../constructors/error.md) | Yes|The error. Error with the code 4005000 returned if an outgoing call is missed because of expired timeout|

View File

@ -13,11 +13,11 @@ Call is ready to use
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|protocol|[callProtocol](../types/callProtocol.md) | Yes|Call protocols supported by the peer|
|protocol|[callProtocol](../constructors/callProtocol.md) | Yes|Call protocols supported by the peer|
|connections|Array of [callConnection](../constructors/callConnection.md) | Yes|Available UDP reflectors|
|config|[string](../types/string.md) | Yes|JSON-encoded call config|
|encryption\_key|[bytes](../types/bytes.md) | Yes|Call encryption key|
|emojis|Array of [string](../constructors/string.md) | Yes|Encryption key emojis fingerprint|
|emojis|Array of [string](../types/string.md) | Yes|Encryption key emojis fingerprint|

View File

@ -16,16 +16,16 @@ Chat (private chat or group chat or channel chat)
|id|[int53](../types/int53.md) | Yes|Chat unique identifier|
|type|[ChatType](../types/ChatType.md) | Yes|Information about type of the chat|
|title|[string](../types/string.md) | Yes|Chat title|
|photo|[chatPhoto](../types/chatPhoto.md) | Yes|Chat photo, nullable|
|top\_message|[message](../types/message.md) | Yes|Last message in the chat, nullable|
|photo|[chatPhoto](../constructors/chatPhoto.md) | Yes|Chat photo, nullable|
|top\_message|[message](../constructors/message.md) | Yes|Last message in the chat, nullable|
|order|[long](../types/long.md) | Yes|Parameter by descending of which chats are sorted in the chat list. If order of two chats is equal, then they need to be sorted by id also in descending order. If order == 0, position of the chat in the list is undetermined|
|is\_pinned|[Bool](../types/Bool.md) | Yes|True, if the chat is pinned|
|unread\_count|[int](../types/int.md) | Yes|Count of unread messages in the chat|
|last\_read\_inbox\_message\_id|[int53](../types/int53.md) | Yes|Identifier of last read incoming message|
|last\_read\_outbox\_message\_id|[int53](../types/int53.md) | Yes|Identifier of last read outgoing message|
|notification\_settings|[notificationSettings](../types/notificationSettings.md) | Yes|Notification settings for this chat|
|notification\_settings|[notificationSettings](../constructors/notificationSettings.md) | Yes|Notification settings for this chat|
|reply\_markup\_message\_id|[int53](../types/int53.md) | Yes|Identifier of the message from which reply markup need to be used or 0 if there is no default custom reply markup in the chat|
|draft\_message|[draftMessage](../types/draftMessage.md) | Yes|Draft of a message in the chat, nullable. parse_mode in input_message_text always will be null|
|draft\_message|[draftMessage](../constructors/draftMessage.md) | Yes|Draft of a message in the chat, nullable. parse_mode in input_message_text always will be null|
|client\_data|[string](../types/string.md) | Yes|Client specified data, associated with the chat. For example, chat position or local chat notification settings may be stored here. Persistent if message db is used|

View File

@ -13,7 +13,7 @@ A message was deleted
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|message|[message](../types/message.md) | Yes|Deleted message|
|message|[message](../constructors/message.md) | Yes|Deleted message|

View File

@ -13,8 +13,8 @@ A message was edited
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|old\_message|[message](../types/message.md) | Yes|Message before edit|
|new\_message|[message](../types/message.md) | Yes|Message after edit|
|old\_message|[message](../constructors/message.md) | Yes|Message before edit|
|new\_message|[message](../constructors/message.md) | Yes|Message after edit|

View File

@ -13,7 +13,7 @@ A message was pinned
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|message|[message](../types/message.md) | Yes|Pinned message|
|message|[message](../constructors/message.md) | Yes|Pinned message|

View File

@ -13,8 +13,8 @@ Chat photo changed
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|old\_photo|[chatPhoto](../types/chatPhoto.md) | Yes|Old photo value|
|new\_photo|[chatPhoto](../types/chatPhoto.md) | Yes|New photo value|
|old\_photo|[chatPhoto](../constructors/chatPhoto.md) | Yes|Old photo value|
|new\_photo|[chatPhoto](../constructors/chatPhoto.md) | Yes|New photo value|

View File

@ -15,9 +15,9 @@ Contains information about chat invite link
|----------|---------------|----------|-------------|
|chat\_id|[int53](../types/int53.md) | Yes|Chat identifier of the invite link or 0 if user is not a member of this chat|
|title|[string](../types/string.md) | Yes|Title of the chat|
|photo|[chatPhoto](../types/chatPhoto.md) | Yes|Chat photo, nullable|
|photo|[chatPhoto](../constructors/chatPhoto.md) | Yes|Chat photo, nullable|
|member\_count|[int](../types/int.md) | Yes|Total member count|
|member\_user\_ids|Array of [int](../constructors/int.md) | Yes|User identifiers of some chat members that may be known to the current user|
|member\_user\_ids|Array of [int](../types/int.md) | Yes|User identifiers of some chat members that may be known to the current user|
|is\_group|[Bool](../types/Bool.md) | Yes|True, if the chat is a group chat|
|is\_channel|[Bool](../types/Bool.md) | Yes|True, if the chat is a channel chat|
|is\_public\_channel|[Bool](../types/Bool.md) | Yes|True, if the chat is a channel chat with set up username|

View File

@ -17,7 +17,7 @@ User with information about its chat joining/leaving
|inviter\_user\_id|[int](../types/int.md) | Yes|Identifier of a user invited/promoted/banned this member in the chat, 0 if unknown|
|join\_date|[int](../types/int.md) | Yes|Date the user has joined a chat, unix time|
|status|[ChatMemberStatus](../types/ChatMemberStatus.md) | Yes|Status of the member in the chat|
|bot\_info|[botInfo](../types/botInfo.md) | Yes|Information about bot if user is a bot, nullable. Can be null even for bot if bot is not a chat member|
|bot\_info|[botInfo](../constructors/botInfo.md) | Yes|Information about bot if user is a bot, nullable. Can be null even for bot if bot is not a chat member|

View File

@ -13,8 +13,8 @@ Describes chat photo
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|small|[file](../types/file.md) | Yes|Small (160x160) chat photo|
|big|[file](../types/file.md) | Yes|Big (640x640) chat photo|
|small|[file](../constructors/file.md) | Yes|Small (160x160) chat photo|
|big|[file](../constructors/file.md) | Yes|Big (640x640) chat photo|

View File

@ -13,7 +13,7 @@ Represents list of chats
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|chat\_ids|Array of [int53](../constructors/int53.md) | Yes|List of chat identifiers|
|chat\_ids|Array of [int53](../types/int53.md) | Yes|List of chat identifiers|

View File

@ -15,8 +15,8 @@ Describes document of any type
|----------|---------------|----------|-------------|
|file\_name|[string](../types/string.md) | Yes|Original name of a file as defined by sender|
|mime\_type|[string](../types/string.md) | Yes|MIME type of file as defined by sender|
|thumb|[photoSize](../types/photoSize.md) | Yes|Document thumb as defined by sender, nullable|
|document|[file](../types/file.md) | Yes|File with document|
|thumb|[photoSize](../constructors/photoSize.md) | Yes|Document thumb as defined by sender, nullable|
|document|[file](../constructors/file.md) | Yes|File with document|

View File

@ -19,8 +19,8 @@ Describes a game
|text|[string](../types/string.md) | Yes|Game text, usually containing game scoreboards|
|text\_entities|Array of [textEntity](../constructors/textEntity.md) | Yes|Entities contained in the text|
|description|[string](../types/string.md) | Yes|Game description|
|photo|[photo](../types/photo.md) | Yes|Game photo|
|animation|[animation](../types/animation.md) | Yes|Game animation, nullable|
|photo|[photo](../constructors/photo.md) | Yes|Game photo|
|animation|[animation](../constructors/animation.md) | Yes|Game animation, nullable|

View File

@ -13,7 +13,7 @@ Contatins list of hashtags
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|hashtags|Array of [string](../constructors/string.md) | Yes|List of hashtags|
|hashtags|Array of [string](../types/string.md) | Yes|List of hashtags|

View File

@ -13,8 +13,8 @@ Represent result for ImportContacts request
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|user\_ids|Array of [int](../constructors/int.md) | Yes|User identifiers of imported contacts in the same order as they was specified in the request. 0 if contact is not yet registered|
|importer\_count|Array of [int](../constructors/int.md) | Yes|Number of users which imported corresponding contact. 0 for already registered users or if unavailable|
|user\_ids|Array of [int](../types/int.md) | Yes|User identifiers of imported contacts in the same order as they was specified in the request. 0 if contact is not yet registered|
|importer\_count|Array of [int](../types/int.md) | Yes|Number of users which imported corresponding contact. 0 for already registered users or if unavailable|

View File

@ -107,7 +107,7 @@ description: List of constructors
<br><br>[$channel](../constructors/channel.md) = \['id' => [int](../types/int.md), 'username' => [string](../types/string.md), 'date' => [int](../types/int.md), 'status' => [ChatMemberStatus](../types/ChatMemberStatus.md), 'anyone_can_invite' => [Bool](../types/Bool.md), 'sign_messages' => [Bool](../types/Bool.md), 'is_supergroup' => [Bool](../types/Bool.md), 'is_verified' => [Bool](../types/Bool.md), 'restriction_reason' => [string](../types/string.md), \];<a name="channel"></a>
***
<br><br>[$channelFull](../constructors/channelFull.md) = \['description' => [string](../types/string.md), 'member_count' => [int](../types/int.md), 'administrator_count' => [int](../types/int.md), 'restricted_count' => [int](../types/int.md), 'banned_count' => [int](../types/int.md), 'can_get_members' => [Bool](../types/Bool.md), 'can_set_username' => [Bool](../types/Bool.md), 'invite_link' => [string](../types/string.md), 'pinned_message_id' => [int53](../constructors/int53.md), 'migrated_from_group_id' => [int](../types/int.md), 'migrated_from_max_message_id' => [int53](../constructors/int53.md), \];<a name="channelFull"></a>
<br><br>[$channelFull](../constructors/channelFull.md) = \['description' => [string](../types/string.md), 'member_count' => [int](../types/int.md), 'administrator_count' => [int](../types/int.md), 'restricted_count' => [int](../types/int.md), 'banned_count' => [int](../types/int.md), 'can_get_members' => [Bool](../types/Bool.md), 'can_set_username' => [Bool](../types/Bool.md), 'invite_link' => [string](../types/string.md), 'pinned_message_id' => [int53](../types/int53.md), 'migrated_from_group_id' => [int](../types/int.md), 'migrated_from_max_message_id' => [int53](../types/int53.md), \];<a name="channelFull"></a>
***
<br><br>[$channelMembersFilterAdministrators](../constructors/channelMembersFilterAdministrators.md) = \[\];<a name="channelMembersFilterAdministrators"></a>
@ -128,7 +128,7 @@ description: List of constructors
<br><br>[$channelMembersFilterSearch](../constructors/channelMembersFilterSearch.md) = \['query' => [string](../types/string.md), \];<a name="channelMembersFilterSearch"></a>
***
<br><br>[$chat](../constructors/chat.md) = \['id' => [int53](../constructors/int53.md), 'type' => [ChatType](../types/ChatType.md), 'title' => [string](../types/string.md), 'photo' => [chatPhoto](../constructors/chatPhoto.md), 'top_message' => [message](../constructors/message.md), 'order' => [long](../types/long.md), 'is_pinned' => [Bool](../types/Bool.md), 'unread_count' => [int](../types/int.md), 'last_read_inbox_message_id' => [int53](../constructors/int53.md), 'last_read_outbox_message_id' => [int53](../constructors/int53.md), 'notification_settings' => [notificationSettings](../constructors/notificationSettings.md), 'reply_markup_message_id' => [int53](../constructors/int53.md), 'draft_message' => [draftMessage](../constructors/draftMessage.md), 'client_data' => [string](../types/string.md), \];<a name="chat"></a>
<br><br>[$chat](../constructors/chat.md) = \['id' => [int53](../types/int53.md), 'type' => [ChatType](../types/ChatType.md), 'title' => [string](../types/string.md), 'photo' => [chatPhoto](../constructors/chatPhoto.md), 'top_message' => [message](../constructors/message.md), 'order' => [long](../types/long.md), 'is_pinned' => [Bool](../types/Bool.md), 'unread_count' => [int](../types/int.md), 'last_read_inbox_message_id' => [int53](../types/int53.md), 'last_read_outbox_message_id' => [int53](../types/int53.md), 'notification_settings' => [notificationSettings](../constructors/notificationSettings.md), 'reply_markup_message_id' => [int53](../types/int53.md), 'draft_message' => [draftMessage](../constructors/draftMessage.md), 'client_data' => [string](../types/string.md), \];<a name="chat"></a>
***
<br><br>[$chatActionCancel](../constructors/chatActionCancel.md) = \[\];<a name="chatActionCancel"></a>
@ -227,7 +227,7 @@ description: List of constructors
<br><br>[$chatInviteLink](../constructors/chatInviteLink.md) = \['invite_link' => [string](../types/string.md), \];<a name="chatInviteLink"></a>
***
<br><br>[$chatInviteLinkInfo](../constructors/chatInviteLinkInfo.md) = \['chat_id' => [int53](../constructors/int53.md), 'title' => [string](../types/string.md), 'photo' => [chatPhoto](../constructors/chatPhoto.md), 'member_count' => [int](../types/int.md), 'member_user_ids' => \[[int](../types/int.md)\], 'is_group' => [Bool](../types/Bool.md), 'is_channel' => [Bool](../types/Bool.md), 'is_public_channel' => [Bool](../types/Bool.md), 'is_supergroup_channel' => [Bool](../types/Bool.md), \];<a name="chatInviteLinkInfo"></a>
<br><br>[$chatInviteLinkInfo](../constructors/chatInviteLinkInfo.md) = \['chat_id' => [int53](../types/int53.md), 'title' => [string](../types/string.md), 'photo' => [chatPhoto](../constructors/chatPhoto.md), 'member_count' => [int](../types/int.md), 'member_user_ids' => \[[int](../types/int.md)\], 'is_group' => [Bool](../types/Bool.md), 'is_channel' => [Bool](../types/Bool.md), 'is_public_channel' => [Bool](../types/Bool.md), 'is_supergroup_channel' => [Bool](../types/Bool.md), \];<a name="chatInviteLinkInfo"></a>
***
<br><br>[$chatMember](../constructors/chatMember.md) = \['user_id' => [int](../types/int.md), 'inviter_user_id' => [int](../types/int.md), 'join_date' => [int](../types/int.md), 'status' => [ChatMemberStatus](../types/ChatMemberStatus.md), 'bot_info' => [botInfo](../constructors/botInfo.md), \];<a name="chatMember"></a>
@ -284,7 +284,7 @@ description: List of constructors
<br><br>[$chatTypeSecret](../constructors/chatTypeSecret.md) = \['secret_chat_id' => [int](../types/int.md), \];<a name="chatTypeSecret"></a>
***
<br><br>[$chats](../constructors/chats.md) = \['chat_ids' => \[[int53](../constructors/int53.md)\], \];<a name="chats"></a>
<br><br>[$chats](../constructors/chats.md) = \['chat_ids' => \[[int53](../types/int53.md)\], \];<a name="chats"></a>
***
<br><br>[$connectionStateConnecting](../constructors/connectionStateConnecting.md) = \[\];<a name="connectionStateConnecting"></a>
@ -329,7 +329,7 @@ description: List of constructors
<br><br>[$document](../constructors/document.md) = \['file_name' => [string](../types/string.md), 'mime_type' => [string](../types/string.md), 'thumb' => [photoSize](../constructors/photoSize.md), 'document' => [file](../constructors/file.md), \];<a name="document"></a>
***
<br><br>[$draftMessage](../constructors/draftMessage.md) = \['reply_to_message_id' => [int53](../constructors/int53.md), 'input_message_text' => [InputMessageContent](../types/InputMessageContent.md), \];<a name="draftMessage"></a>
<br><br>[$draftMessage](../constructors/draftMessage.md) = \['reply_to_message_id' => [int53](../types/int53.md), 'input_message_text' => [InputMessageContent](../types/InputMessageContent.md), \];<a name="draftMessage"></a>
***
<br><br>[$error](../constructors/error.md) = \['code' => [int](../types/int.md), 'message' => [string](../types/string.md), \];<a name="error"></a>
@ -533,7 +533,7 @@ description: List of constructors
<br><br>[$inputMessageDocument](../constructors/inputMessageDocument.md) = \['document' => [InputFile](../types/InputFile.md), 'thumb' => [InputThumb](../types/InputThumb.md), 'caption' => [string](../types/string.md), \];<a name="inputMessageDocument"></a>
***
<br><br>[$inputMessageForwarded](../constructors/inputMessageForwarded.md) = \['from_chat_id' => [int53](../constructors/int53.md), 'message_id' => [int53](../constructors/int53.md), 'in_game_share' => [Bool](../types/Bool.md), \];<a name="inputMessageForwarded"></a>
<br><br>[$inputMessageForwarded](../constructors/inputMessageForwarded.md) = \['from_chat_id' => [int53](../types/int53.md), 'message_id' => [int53](../types/int53.md), 'in_game_share' => [Bool](../types/Bool.md), \];<a name="inputMessageForwarded"></a>
***
<br><br>[$inputMessageGame](../constructors/inputMessageGame.md) = \['bot_user_id' => [int](../types/int.md), 'game_short_name' => [string](../types/string.md), \];<a name="inputMessageGame"></a>
@ -590,7 +590,7 @@ description: List of constructors
<br><br>[$keyboardButtonTypeText](../constructors/keyboardButtonTypeText.md) = \[\];<a name="keyboardButtonTypeText"></a>
***
<br><br>[$labeledPrice](../constructors/labeledPrice.md) = \['label' => [string](../types/string.md), 'amount' => [int53](../constructors/int53.md), \];<a name="labeledPrice"></a>
<br><br>[$labeledPrice](../constructors/labeledPrice.md) = \['label' => [string](../types/string.md), 'amount' => [int53](../types/int53.md), \];<a name="labeledPrice"></a>
***
<br><br>[$linkStateContact](../constructors/linkStateContact.md) = \[\];<a name="linkStateContact"></a>
@ -608,7 +608,7 @@ description: List of constructors
<br><br>[$maskPosition](../constructors/maskPosition.md) = \['point' => [int](../types/int.md), 'x_shift' => [double](../types/double.md), 'y_shift' => [double](../types/double.md), 'scale' => [double](../types/double.md), \];<a name="maskPosition"></a>
***
<br><br>[$message](../constructors/message.md) = \['id' => [int53](../constructors/int53.md), 'sender_user_id' => [int](../types/int.md), 'chat_id' => [int53](../constructors/int53.md), 'send_state' => [MessageSendState](../types/MessageSendState.md), 'can_be_edited' => [Bool](../types/Bool.md), 'can_be_forwarded' => [Bool](../types/Bool.md), 'can_be_deleted_only_for_self' => [Bool](../types/Bool.md), 'can_be_deleted_for_everyone' => [Bool](../types/Bool.md), 'is_post' => [Bool](../types/Bool.md), 'date' => [int](../types/int.md), 'edit_date' => [int](../types/int.md), 'forward_info' => [MessageForwardInfo](../types/MessageForwardInfo.md), 'reply_to_message_id' => [int53](../constructors/int53.md), 'ttl' => [int](../types/int.md), 'ttl_expires_in' => [double](../types/double.md), 'via_bot_user_id' => [int](../types/int.md), 'author_signature' => [string](../types/string.md), 'views' => [int](../types/int.md), 'content' => [MessageContent](../types/MessageContent.md), 'reply_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \];<a name="message"></a>
<br><br>[$message](../constructors/message.md) = \['id' => [int53](../types/int53.md), 'sender_user_id' => [int](../types/int.md), 'chat_id' => [int53](../types/int53.md), 'send_state' => [MessageSendState](../types/MessageSendState.md), 'can_be_edited' => [Bool](../types/Bool.md), 'can_be_forwarded' => [Bool](../types/Bool.md), 'can_be_deleted_only_for_self' => [Bool](../types/Bool.md), 'can_be_deleted_for_everyone' => [Bool](../types/Bool.md), 'is_post' => [Bool](../types/Bool.md), 'date' => [int](../types/int.md), 'edit_date' => [int](../types/int.md), 'forward_info' => [MessageForwardInfo](../types/MessageForwardInfo.md), 'reply_to_message_id' => [int53](../types/int53.md), 'ttl' => [int](../types/int.md), 'ttl_expires_in' => [double](../types/double.md), 'via_bot_user_id' => [int](../types/int.md), 'author_signature' => [string](../types/string.md), 'views' => [int](../types/int.md), 'content' => [MessageContent](../types/MessageContent.md), 'reply_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \];<a name="message"></a>
***
<br><br>[$messageAnimation](../constructors/messageAnimation.md) = \['animation' => [animation](../constructors/animation.md), 'caption' => [string](../types/string.md), \];<a name="messageAnimation"></a>
@ -668,19 +668,19 @@ description: List of constructors
<br><br>[$messageForwardedFromUser](../constructors/messageForwardedFromUser.md) = \['sender_user_id' => [int](../types/int.md), 'date' => [int](../types/int.md), \];<a name="messageForwardedFromUser"></a>
***
<br><br>[$messageForwardedPost](../constructors/messageForwardedPost.md) = \['chat_id' => [int53](../constructors/int53.md), 'author_signature' => [string](../types/string.md), 'date' => [int](../types/int.md), 'message_id' => [int53](../constructors/int53.md), \];<a name="messageForwardedPost"></a>
<br><br>[$messageForwardedPost](../constructors/messageForwardedPost.md) = \['chat_id' => [int53](../types/int53.md), 'author_signature' => [string](../types/string.md), 'date' => [int](../types/int.md), 'message_id' => [int53](../types/int53.md), \];<a name="messageForwardedPost"></a>
***
<br><br>[$messageGame](../constructors/messageGame.md) = \['game' => [game](../constructors/game.md), \];<a name="messageGame"></a>
***
<br><br>[$messageGameScore](../constructors/messageGameScore.md) = \['game_message_id' => [int53](../constructors/int53.md), 'game_id' => [long](../types/long.md), 'score' => [int](../types/int.md), \];<a name="messageGameScore"></a>
<br><br>[$messageGameScore](../constructors/messageGameScore.md) = \['game_message_id' => [int53](../types/int53.md), 'game_id' => [long](../types/long.md), 'score' => [int](../types/int.md), \];<a name="messageGameScore"></a>
***
<br><br>[$messageGroupChatCreate](../constructors/messageGroupChatCreate.md) = \['title' => [string](../types/string.md), 'member_user_ids' => \[[int](../types/int.md)\], \];<a name="messageGroupChatCreate"></a>
***
<br><br>[$messageInvoice](../constructors/messageInvoice.md) = \['title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'photo' => [photo](../constructors/photo.md), 'currency' => [string](../types/string.md), 'total_amount' => [int53](../constructors/int53.md), 'start_parameter' => [string](../types/string.md), 'is_test' => [Bool](../types/Bool.md), 'need_shipping_address' => [Bool](../types/Bool.md), 'receipt_message_id' => [int53](../constructors/int53.md), \];<a name="messageInvoice"></a>
<br><br>[$messageInvoice](../constructors/messageInvoice.md) = \['title' => [string](../types/string.md), 'description' => [string](../types/string.md), 'photo' => [photo](../constructors/photo.md), 'currency' => [string](../types/string.md), 'total_amount' => [int53](../types/int53.md), 'start_parameter' => [string](../types/string.md), 'is_test' => [Bool](../types/Bool.md), 'need_shipping_address' => [Bool](../types/Bool.md), 'receipt_message_id' => [int53](../types/int53.md), \];<a name="messageInvoice"></a>
***
<br><br>[$messageIsBeingSent](../constructors/messageIsBeingSent.md) = \[\];<a name="messageIsBeingSent"></a>
@ -698,16 +698,16 @@ description: List of constructors
<br><br>[$messageLocation](../constructors/messageLocation.md) = \['location' => [location](../constructors/location.md), \];<a name="messageLocation"></a>
***
<br><br>[$messagePaymentSuccessful](../constructors/messagePaymentSuccessful.md) = \['currency' => [string](../types/string.md), 'total_amount' => [int53](../constructors/int53.md), \];<a name="messagePaymentSuccessful"></a>
<br><br>[$messagePaymentSuccessful](../constructors/messagePaymentSuccessful.md) = \['currency' => [string](../types/string.md), 'total_amount' => [int53](../types/int53.md), \];<a name="messagePaymentSuccessful"></a>
***
<br><br>[$messagePaymentSuccessfulBot](../constructors/messagePaymentSuccessfulBot.md) = \['currency' => [string](../types/string.md), 'total_amount' => [int53](../constructors/int53.md), 'invoice_payload' => [bytes](../types/bytes.md), 'shipping_option_id' => [string](../types/string.md), 'order_info' => [orderInfo](../constructors/orderInfo.md), 'telegram_payment_charge_id' => [string](../types/string.md), 'provider_payment_charge_id' => [string](../types/string.md), \];<a name="messagePaymentSuccessfulBot"></a>
<br><br>[$messagePaymentSuccessfulBot](../constructors/messagePaymentSuccessfulBot.md) = \['currency' => [string](../types/string.md), 'total_amount' => [int53](../types/int53.md), 'invoice_payload' => [bytes](../types/bytes.md), 'shipping_option_id' => [string](../types/string.md), 'order_info' => [orderInfo](../constructors/orderInfo.md), 'telegram_payment_charge_id' => [string](../types/string.md), 'provider_payment_charge_id' => [string](../types/string.md), \];<a name="messagePaymentSuccessfulBot"></a>
***
<br><br>[$messagePhoto](../constructors/messagePhoto.md) = \['photo' => [photo](../constructors/photo.md), 'caption' => [string](../types/string.md), \];<a name="messagePhoto"></a>
***
<br><br>[$messagePinMessage](../constructors/messagePinMessage.md) = \['message_id' => [int53](../constructors/int53.md), \];<a name="messagePinMessage"></a>
<br><br>[$messagePinMessage](../constructors/messagePinMessage.md) = \['message_id' => [int53](../types/int53.md), \];<a name="messagePinMessage"></a>
***
<br><br>[$messageScreenshotTaken](../constructors/messageScreenshotTaken.md) = \[\];<a name="messageScreenshotTaken"></a>
@ -740,10 +740,10 @@ description: List of constructors
<br><br>[$networkStatistics](../constructors/networkStatistics.md) = \['since_date' => [int](../types/int.md), 'entries' => \[[NetworkStatisticsEntry](../types/NetworkStatisticsEntry.md)\], \];<a name="networkStatistics"></a>
***
<br><br>[$networkStatisticsEntryCall](../constructors/networkStatisticsEntryCall.md) = \['network_type' => [NetworkType](../types/NetworkType.md), 'sent_bytes' => [int53](../constructors/int53.md), 'received_bytes' => [int53](../constructors/int53.md), 'duration' => [double](../types/double.md), \];<a name="networkStatisticsEntryCall"></a>
<br><br>[$networkStatisticsEntryCall](../constructors/networkStatisticsEntryCall.md) = \['network_type' => [NetworkType](../types/NetworkType.md), 'sent_bytes' => [int53](../types/int53.md), 'received_bytes' => [int53](../types/int53.md), 'duration' => [double](../types/double.md), \];<a name="networkStatisticsEntryCall"></a>
***
<br><br>[$networkStatisticsEntryFile](../constructors/networkStatisticsEntryFile.md) = \['file_type' => [FileType](../types/FileType.md), 'network_type' => [NetworkType](../types/NetworkType.md), 'sent_bytes' => [int53](../constructors/int53.md), 'received_bytes' => [int53](../constructors/int53.md), \];<a name="networkStatisticsEntryFile"></a>
<br><br>[$networkStatisticsEntryFile](../constructors/networkStatisticsEntryFile.md) = \['file_type' => [FileType](../types/FileType.md), 'network_type' => [NetworkType](../types/NetworkType.md), 'sent_bytes' => [int53](../types/int53.md), 'received_bytes' => [int53](../types/int53.md), \];<a name="networkStatisticsEntryFile"></a>
***
<br><br>[$networkTypeMobile](../constructors/networkTypeMobile.md) = \[\];<a name="networkTypeMobile"></a>
@ -767,7 +767,7 @@ description: List of constructors
<br><br>[$notificationSettingsScopeAllChats](../constructors/notificationSettingsScopeAllChats.md) = \[\];<a name="notificationSettingsScopeAllChats"></a>
***
<br><br>[$notificationSettingsScopeChat](../constructors/notificationSettingsScopeChat.md) = \['chat_id' => [int53](../constructors/int53.md), \];<a name="notificationSettingsScopeChat"></a>
<br><br>[$notificationSettingsScopeChat](../constructors/notificationSettingsScopeChat.md) = \['chat_id' => [int53](../types/int53.md), \];<a name="notificationSettingsScopeChat"></a>
***
<br><br>[$notificationSettingsScopeGroupChats](../constructors/notificationSettingsScopeGroupChats.md) = \[\];<a name="notificationSettingsScopeGroupChats"></a>
@ -1049,16 +1049,16 @@ description: List of constructors
<br><br>[$stickers](../constructors/stickers.md) = \['stickers' => \[[sticker](../constructors/sticker.md)\], \];<a name="stickers"></a>
***
<br><br>[$storageStatistics](../constructors/storageStatistics.md) = \['size' => [int53](../constructors/int53.md), 'count' => [int](../types/int.md), 'by_chat' => \[[storageStatisticsByChat](../constructors/storageStatisticsByChat.md)\], \];<a name="storageStatistics"></a>
<br><br>[$storageStatistics](../constructors/storageStatistics.md) = \['size' => [int53](../types/int53.md), 'count' => [int](../types/int.md), 'by_chat' => \[[storageStatisticsByChat](../constructors/storageStatisticsByChat.md)\], \];<a name="storageStatistics"></a>
***
<br><br>[$storageStatisticsByChat](../constructors/storageStatisticsByChat.md) = \['chat_id' => [int53](../constructors/int53.md), 'size' => [int53](../constructors/int53.md), 'count' => [int](../types/int.md), 'by_file_type' => \[[storageStatisticsByFileType](../constructors/storageStatisticsByFileType.md)\], \];<a name="storageStatisticsByChat"></a>
<br><br>[$storageStatisticsByChat](../constructors/storageStatisticsByChat.md) = \['chat_id' => [int53](../types/int53.md), 'size' => [int53](../types/int53.md), 'count' => [int](../types/int.md), 'by_file_type' => \[[storageStatisticsByFileType](../constructors/storageStatisticsByFileType.md)\], \];<a name="storageStatisticsByChat"></a>
***
<br><br>[$storageStatisticsByFileType](../constructors/storageStatisticsByFileType.md) = \['file_type' => [FileType](../types/FileType.md), 'size' => [int53](../constructors/int53.md), 'count' => [int](../types/int.md), \];<a name="storageStatisticsByFileType"></a>
<br><br>[$storageStatisticsByFileType](../constructors/storageStatisticsByFileType.md) = \['file_type' => [FileType](../types/FileType.md), 'size' => [int53](../types/int53.md), 'count' => [int](../types/int.md), \];<a name="storageStatisticsByFileType"></a>
***
<br><br>[$storageStatisticsFast](../constructors/storageStatisticsFast.md) = \['files_size' => [int53](../constructors/int53.md), 'files_count' => [int](../types/int.md), 'database_size' => [int53](../constructors/int53.md), \];<a name="storageStatisticsFast"></a>
<br><br>[$storageStatisticsFast](../constructors/storageStatisticsFast.md) = \['files_size' => [int53](../types/int53.md), 'files_count' => [int](../types/int.md), 'database_size' => [int53](../types/int53.md), \];<a name="storageStatisticsFast"></a>
***
<br><br>[$temporaryPasswordState](../constructors/temporaryPasswordState.md) = \['has_password' => [Bool](../types/Bool.md), 'valid_for' => [int](../types/int.md), \];<a name="temporaryPasswordState"></a>
@ -1163,37 +1163,37 @@ description: List of constructors
<br><br>[$updateChannelFull](../constructors/updateChannelFull.md) = \['channel_id' => [int](../types/int.md), 'channel_full' => [channelFull](../constructors/channelFull.md), \];<a name="updateChannelFull"></a>
***
<br><br>[$updateChatDraftMessage](../constructors/updateChatDraftMessage.md) = \['chat_id' => [int53](../constructors/int53.md), 'draft_message' => [draftMessage](../constructors/draftMessage.md), \];<a name="updateChatDraftMessage"></a>
<br><br>[$updateChatDraftMessage](../constructors/updateChatDraftMessage.md) = \['chat_id' => [int53](../types/int53.md), 'draft_message' => [draftMessage](../constructors/draftMessage.md), \];<a name="updateChatDraftMessage"></a>
***
<br><br>[$updateChatIsPinned](../constructors/updateChatIsPinned.md) = \['chat_id' => [int53](../constructors/int53.md), 'is_pinned' => [Bool](../types/Bool.md), \];<a name="updateChatIsPinned"></a>
<br><br>[$updateChatIsPinned](../constructors/updateChatIsPinned.md) = \['chat_id' => [int53](../types/int53.md), 'is_pinned' => [Bool](../types/Bool.md), \];<a name="updateChatIsPinned"></a>
***
<br><br>[$updateChatOrder](../constructors/updateChatOrder.md) = \['chat_id' => [int53](../constructors/int53.md), 'order' => [long](../types/long.md), \];<a name="updateChatOrder"></a>
<br><br>[$updateChatOrder](../constructors/updateChatOrder.md) = \['chat_id' => [int53](../types/int53.md), 'order' => [long](../types/long.md), \];<a name="updateChatOrder"></a>
***
<br><br>[$updateChatPhoto](../constructors/updateChatPhoto.md) = \['chat_id' => [int53](../constructors/int53.md), 'photo' => [chatPhoto](../constructors/chatPhoto.md), \];<a name="updateChatPhoto"></a>
<br><br>[$updateChatPhoto](../constructors/updateChatPhoto.md) = \['chat_id' => [int53](../types/int53.md), 'photo' => [chatPhoto](../constructors/chatPhoto.md), \];<a name="updateChatPhoto"></a>
***
<br><br>[$updateChatReadInbox](../constructors/updateChatReadInbox.md) = \['chat_id' => [int53](../constructors/int53.md), 'last_read_inbox_message_id' => [int53](../constructors/int53.md), 'unread_count' => [int](../types/int.md), \];<a name="updateChatReadInbox"></a>
<br><br>[$updateChatReadInbox](../constructors/updateChatReadInbox.md) = \['chat_id' => [int53](../types/int53.md), 'last_read_inbox_message_id' => [int53](../types/int53.md), 'unread_count' => [int](../types/int.md), \];<a name="updateChatReadInbox"></a>
***
<br><br>[$updateChatReadOutbox](../constructors/updateChatReadOutbox.md) = \['chat_id' => [int53](../constructors/int53.md), 'last_read_outbox_message_id' => [int53](../constructors/int53.md), \];<a name="updateChatReadOutbox"></a>
<br><br>[$updateChatReadOutbox](../constructors/updateChatReadOutbox.md) = \['chat_id' => [int53](../types/int53.md), 'last_read_outbox_message_id' => [int53](../types/int53.md), \];<a name="updateChatReadOutbox"></a>
***
<br><br>[$updateChatReplyMarkup](../constructors/updateChatReplyMarkup.md) = \['chat_id' => [int53](../constructors/int53.md), 'reply_markup_message_id' => [int53](../constructors/int53.md), \];<a name="updateChatReplyMarkup"></a>
<br><br>[$updateChatReplyMarkup](../constructors/updateChatReplyMarkup.md) = \['chat_id' => [int53](../types/int53.md), 'reply_markup_message_id' => [int53](../types/int53.md), \];<a name="updateChatReplyMarkup"></a>
***
<br><br>[$updateChatTitle](../constructors/updateChatTitle.md) = \['chat_id' => [int53](../constructors/int53.md), 'title' => [string](../types/string.md), \];<a name="updateChatTitle"></a>
<br><br>[$updateChatTitle](../constructors/updateChatTitle.md) = \['chat_id' => [int53](../types/int53.md), 'title' => [string](../types/string.md), \];<a name="updateChatTitle"></a>
***
<br><br>[$updateChatTopMessage](../constructors/updateChatTopMessage.md) = \['chat_id' => [int53](../constructors/int53.md), 'top_message' => [message](../constructors/message.md), \];<a name="updateChatTopMessage"></a>
<br><br>[$updateChatTopMessage](../constructors/updateChatTopMessage.md) = \['chat_id' => [int53](../types/int53.md), 'top_message' => [message](../constructors/message.md), \];<a name="updateChatTopMessage"></a>
***
<br><br>[$updateConnectionState](../constructors/updateConnectionState.md) = \['state' => [ConnectionState](../types/ConnectionState.md), \];<a name="updateConnectionState"></a>
***
<br><br>[$updateDeleteMessages](../constructors/updateDeleteMessages.md) = \['chat_id' => [int53](../constructors/int53.md), 'message_ids' => \[[int53](../constructors/int53.md)\], \];<a name="updateDeleteMessages"></a>
<br><br>[$updateDeleteMessages](../constructors/updateDeleteMessages.md) = \['chat_id' => [int53](../types/int53.md), 'message_ids' => \[[int53](../types/int53.md)\], \];<a name="updateDeleteMessages"></a>
***
<br><br>[$updateFile](../constructors/updateFile.md) = \['file' => [file](../constructors/file.md), \];<a name="updateFile"></a>
@ -1220,25 +1220,25 @@ description: List of constructors
<br><br>[$updateInstalledStickerSets](../constructors/updateInstalledStickerSets.md) = \['is_masks' => [Bool](../types/Bool.md), 'sticker_set_ids' => \[[long](../types/long.md)\], \];<a name="updateInstalledStickerSets"></a>
***
<br><br>[$updateMessageContent](../constructors/updateMessageContent.md) = \['chat_id' => [int53](../constructors/int53.md), 'message_id' => [int53](../constructors/int53.md), 'new_content' => [MessageContent](../types/MessageContent.md), \];<a name="updateMessageContent"></a>
<br><br>[$updateMessageContent](../constructors/updateMessageContent.md) = \['chat_id' => [int53](../types/int53.md), 'message_id' => [int53](../types/int53.md), 'new_content' => [MessageContent](../types/MessageContent.md), \];<a name="updateMessageContent"></a>
***
<br><br>[$updateMessageEdited](../constructors/updateMessageEdited.md) = \['chat_id' => [int53](../constructors/int53.md), 'message_id' => [int53](../constructors/int53.md), 'edit_date' => [int](../types/int.md), 'reply_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \];<a name="updateMessageEdited"></a>
<br><br>[$updateMessageEdited](../constructors/updateMessageEdited.md) = \['chat_id' => [int53](../types/int53.md), 'message_id' => [int53](../types/int53.md), 'edit_date' => [int](../types/int.md), 'reply_markup' => [ReplyMarkup](../types/ReplyMarkup.md), \];<a name="updateMessageEdited"></a>
***
<br><br>[$updateMessageSendAcknowledged](../constructors/updateMessageSendAcknowledged.md) = \['chat_id' => [int53](../constructors/int53.md), 'message_id' => [int53](../constructors/int53.md), \];<a name="updateMessageSendAcknowledged"></a>
<br><br>[$updateMessageSendAcknowledged](../constructors/updateMessageSendAcknowledged.md) = \['chat_id' => [int53](../types/int53.md), 'message_id' => [int53](../types/int53.md), \];<a name="updateMessageSendAcknowledged"></a>
***
<br><br>[$updateMessageSendFailed](../constructors/updateMessageSendFailed.md) = \['message' => [message](../constructors/message.md), 'old_message_id' => [int53](../constructors/int53.md), 'error_code' => [int](../types/int.md), 'error_message' => [string](../types/string.md), \];<a name="updateMessageSendFailed"></a>
<br><br>[$updateMessageSendFailed](../constructors/updateMessageSendFailed.md) = \['message' => [message](../constructors/message.md), 'old_message_id' => [int53](../types/int53.md), 'error_code' => [int](../types/int.md), 'error_message' => [string](../types/string.md), \];<a name="updateMessageSendFailed"></a>
***
<br><br>[$updateMessageSendSucceeded](../constructors/updateMessageSendSucceeded.md) = \['message' => [message](../constructors/message.md), 'old_message_id' => [int53](../constructors/int53.md), \];<a name="updateMessageSendSucceeded"></a>
<br><br>[$updateMessageSendSucceeded](../constructors/updateMessageSendSucceeded.md) = \['message' => [message](../constructors/message.md), 'old_message_id' => [int53](../types/int53.md), \];<a name="updateMessageSendSucceeded"></a>
***
<br><br>[$updateMessageViews](../constructors/updateMessageViews.md) = \['chat_id' => [int53](../constructors/int53.md), 'message_id' => [int53](../constructors/int53.md), 'views' => [int](../types/int.md), \];<a name="updateMessageViews"></a>
<br><br>[$updateMessageViews](../constructors/updateMessageViews.md) = \['chat_id' => [int53](../types/int53.md), 'message_id' => [int53](../types/int53.md), 'views' => [int](../types/int.md), \];<a name="updateMessageViews"></a>
***
<br><br>[$updateNewCallbackQuery](../constructors/updateNewCallbackQuery.md) = \['id' => [long](../types/long.md), 'sender_user_id' => [int](../types/int.md), 'chat_id' => [int53](../constructors/int53.md), 'message_id' => [int53](../constructors/int53.md), 'chat_instance' => [long](../types/long.md), 'payload' => [CallbackQueryPayload](../types/CallbackQueryPayload.md), \];<a name="updateNewCallbackQuery"></a>
<br><br>[$updateNewCallbackQuery](../constructors/updateNewCallbackQuery.md) = \['id' => [long](../types/long.md), 'sender_user_id' => [int](../types/int.md), 'chat_id' => [int53](../types/int53.md), 'message_id' => [int53](../types/int53.md), 'chat_instance' => [long](../types/long.md), 'payload' => [CallbackQueryPayload](../types/CallbackQueryPayload.md), \];<a name="updateNewCallbackQuery"></a>
***
<br><br>[$updateNewChat](../constructors/updateNewChat.md) = \['chat' => [chat](../constructors/chat.md), \];<a name="updateNewChat"></a>
@ -1262,7 +1262,7 @@ description: List of constructors
<br><br>[$updateNewMessage](../constructors/updateNewMessage.md) = \['message' => [message](../constructors/message.md), 'disable_notification' => [Bool](../types/Bool.md), 'contains_mention' => [Bool](../types/Bool.md), \];<a name="updateNewMessage"></a>
***
<br><br>[$updateNewPreCheckoutQuery](../constructors/updateNewPreCheckoutQuery.md) = \['id' => [long](../types/long.md), 'sender_user_id' => [int](../types/int.md), 'currency' => [string](../types/string.md), 'total_amount' => [int53](../constructors/int53.md), 'invoice_payload' => [bytes](../types/bytes.md), 'shipping_option_id' => [string](../types/string.md), 'order_info' => [orderInfo](../constructors/orderInfo.md), \];<a name="updateNewPreCheckoutQuery"></a>
<br><br>[$updateNewPreCheckoutQuery](../constructors/updateNewPreCheckoutQuery.md) = \['id' => [long](../types/long.md), 'sender_user_id' => [int](../types/int.md), 'currency' => [string](../types/string.md), 'total_amount' => [int53](../types/int53.md), 'invoice_payload' => [bytes](../types/bytes.md), 'shipping_option_id' => [string](../types/string.md), 'order_info' => [orderInfo](../constructors/orderInfo.md), \];<a name="updateNewPreCheckoutQuery"></a>
***
<br><br>[$updateNewShippingQuery](../constructors/updateNewShippingQuery.md) = \['id' => [long](../types/long.md), 'sender_user_id' => [int](../types/int.md), 'invoice_payload' => [string](../types/string.md), 'shipping_address' => [shippingAddress](../constructors/shippingAddress.md), \];<a name="updateNewShippingQuery"></a>
@ -1271,7 +1271,7 @@ description: List of constructors
<br><br>[$updateNotificationSettings](../constructors/updateNotificationSettings.md) = \['scope' => [NotificationSettingsScope](../types/NotificationSettingsScope.md), 'notification_settings' => [notificationSettings](../constructors/notificationSettings.md), \];<a name="updateNotificationSettings"></a>
***
<br><br>[$updateOpenMessageContent](../constructors/updateOpenMessageContent.md) = \['chat_id' => [int53](../constructors/int53.md), 'message_id' => [int53](../constructors/int53.md), \];<a name="updateOpenMessageContent"></a>
<br><br>[$updateOpenMessageContent](../constructors/updateOpenMessageContent.md) = \['chat_id' => [int53](../types/int53.md), 'message_id' => [int53](../types/int53.md), \];<a name="updateOpenMessageContent"></a>
***
<br><br>[$updateOption](../constructors/updateOption.md) = \['name' => [string](../types/string.md), 'value' => [OptionValue](../types/OptionValue.md), \];<a name="updateOption"></a>
@ -1298,7 +1298,7 @@ description: List of constructors
<br><br>[$updateUser](../constructors/updateUser.md) = \['user' => [user](../constructors/user.md), \];<a name="updateUser"></a>
***
<br><br>[$updateUserChatAction](../constructors/updateUserChatAction.md) = \['chat_id' => [int53](../constructors/int53.md), 'user_id' => [int](../types/int.md), 'action' => [ChatAction](../types/ChatAction.md), \];<a name="updateUserChatAction"></a>
<br><br>[$updateUserChatAction](../constructors/updateUserChatAction.md) = \['chat_id' => [int53](../types/int53.md), 'user_id' => [int](../types/int.md), 'action' => [ChatAction](../types/ChatAction.md), \];<a name="updateUserChatAction"></a>
***
<br><br>[$updateUserFull](../constructors/updateUserFull.md) = \['user_id' => [int](../types/int.md), 'user_full' => [userFull](../constructors/userFull.md), \];<a name="updateUserFull"></a>

View File

@ -14,7 +14,7 @@ Represents an animation cached on the telegram server
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|animation|[animation](../types/animation.md) | Yes|The animation|
|animation|[animation](../constructors/animation.md) | Yes|The animation|
|title|[string](../types/string.md) | Yes|Animation title|

View File

@ -18,7 +18,7 @@ Represents link to an article or web page
|hide\_url|[Bool](../types/Bool.md) | Yes|True, if url must be not shown|
|title|[string](../types/string.md) | Yes|Title of the result|
|description|[string](../types/string.md) | Yes|Short description of the result|
|thumb|[photoSize](../types/photoSize.md) | Yes|Result thumb, nullable|
|thumb|[photoSize](../constructors/photoSize.md) | Yes|Result thumb, nullable|

View File

@ -14,7 +14,7 @@ Represents an audio cached on the telegram server
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|audio|[audio](../types/audio.md) | Yes|The audio|
|audio|[audio](../constructors/audio.md) | Yes|The audio|

View File

@ -14,8 +14,8 @@ Represents user contact
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|contact|[contact](../types/contact.md) | Yes|User contact|
|thumb|[photoSize](../types/photoSize.md) | Yes|Result thumb, nullable|
|contact|[contact](../constructors/contact.md) | Yes|User contact|
|thumb|[photoSize](../constructors/photoSize.md) | Yes|Result thumb, nullable|

View File

@ -14,7 +14,7 @@ Represents a document cached on the telegram server
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|document|[document](../types/document.md) | Yes|The document|
|document|[document](../constructors/document.md) | Yes|The document|
|title|[string](../types/string.md) | Yes|Document title|
|description|[string](../types/string.md) | Yes|Document description|

View File

@ -14,7 +14,7 @@ Represents information about a game
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|game|[game](../types/game.md) | Yes|The result|
|game|[game](../constructors/game.md) | Yes|The result|

View File

@ -14,9 +14,9 @@ Represents a point on the map
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|location|[location](../types/location.md) | Yes|The result|
|location|[location](../constructors/location.md) | Yes|The result|
|title|[string](../types/string.md) | Yes|Title of the result|
|thumb|[photoSize](../types/photoSize.md) | Yes|Result thumb, nullable|
|thumb|[photoSize](../constructors/photoSize.md) | Yes|Result thumb, nullable|

View File

@ -14,7 +14,7 @@ Represents a photo cached on the telegram server
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|photo|[photo](../types/photo.md) | Yes|The photo|
|photo|[photo](../constructors/photo.md) | Yes|The photo|
|title|[string](../types/string.md) | Yes|Title of the result, if known|
|description|[string](../types/string.md) | Yes|Short description of the result, if known|

View File

@ -14,7 +14,7 @@ Represents a sticker cached on the telegram server
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|sticker|[sticker](../types/sticker.md) | Yes|The sticker|
|sticker|[sticker](../constructors/sticker.md) | Yes|The sticker|

View File

@ -14,8 +14,8 @@ Represents information about a venue
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|venue|[venue](../types/venue.md) | Yes|The result|
|thumb|[photoSize](../types/photoSize.md) | Yes|Result thumb, nullable|
|venue|[venue](../constructors/venue.md) | Yes|The result|
|thumb|[photoSize](../constructors/photoSize.md) | Yes|Result thumb, nullable|

View File

@ -14,7 +14,7 @@ Represents a video cached on the telegram server
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|video|[video](../types/video.md) | Yes|The video|
|video|[video](../constructors/video.md) | Yes|The video|
|title|[string](../types/string.md) | Yes|Title of the video|
|description|[string](../types/string.md) | Yes|Description of the video|

View File

@ -14,7 +14,7 @@ Represents a voice cached on the telegram server
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|voice|[voice](../types/voice.md) | Yes|The voice|
|voice|[voice](../constructors/voice.md) | Yes|The voice|
|title|[string](../types/string.md) | Yes|Title of the voice file|

View File

@ -15,7 +15,7 @@ Represents results of the inline query. Use sendInlineQueryResultMessage to send
|----------|---------------|----------|-------------|
|inline\_query\_id|[long](../types/long.md) | Yes|Unique identifier of the inline query|
|next\_offset|[string](../types/string.md) | Yes|Offset for the next request. If it is empty, there is no more results|
|results|Array of [InlineQueryResult](../constructors/InlineQueryResult.md) | Yes|Results of the query|
|results|Array of [InlineQueryResult](../types/InlineQueryResult.md) | Yes|Results of the query|
|switch\_pm\_text|[string](../types/string.md) | Yes|If non-empty, this text should be shown on the button, which opens private chat with the bot and sends bot start message with parameter switch_pm_parameter|
|switch\_pm\_parameter|[string](../types/string.md) | Yes|Parameter for the bot start message|

View File

@ -14,7 +14,7 @@ Represents user contact
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|contact|[contact](../types/contact.md) | Yes|User contact|
|contact|[contact](../constructors/contact.md) | Yes|User contact|
|thumb\_url|[string](../types/string.md) | Yes|Url of the result thumb, if exists|
|thumb\_width|[int](../types/int.md) | Yes|Thumb width, if known|
|thumb\_height|[int](../types/int.md) | Yes|Thumb height, if known|

View File

@ -14,7 +14,7 @@ Represents a point on the map
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|location|[location](../types/location.md) | Yes|Result|
|location|[location](../constructors/location.md) | Yes|Result|
|title|[string](../types/string.md) | Yes|Title of the result|
|thumb\_url|[string](../types/string.md) | Yes|Url of the result thumb, if exists|
|thumb\_width|[int](../types/int.md) | Yes|Thumb width, if known|

View File

@ -14,7 +14,7 @@ Represents information about a venue
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|venue|[venue](../types/venue.md) | Yes|Result|
|venue|[venue](../constructors/venue.md) | Yes|Result|
|thumb\_url|[string](../types/string.md) | Yes|Url of the result thumb, if exists|
|thumb\_width|[int](../types/int.md) | Yes|Thumb width, if known|
|thumb\_height|[int](../types/int.md) | Yes|Thumb height, if known|

View File

@ -13,7 +13,7 @@ User contact message
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|contact|[contact](../types/contact.md) | Yes|Contact to send|
|contact|[contact](../constructors/contact.md) | Yes|Contact to send|

View File

@ -13,7 +13,7 @@ Message with an invoice, can be used only by bots and in private chats only
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|invoice|[invoice](../types/invoice.md) | Yes|The invoice|
|invoice|[invoice](../constructors/invoice.md) | Yes|The invoice|
|title|[string](../types/string.md) | Yes|Product title, 1-32 characters|
|description|[string](../types/string.md) | Yes|Product description, 0-255 characters|
|photo\_url|[string](../types/string.md) | Yes|Goods photo URL, optional|

View File

@ -13,7 +13,7 @@ Message with location
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|location|[location](../types/location.md) | Yes|Location to send|
|location|[location](../constructors/location.md) | Yes|Location to send|

View File

@ -15,7 +15,7 @@ Photo message
|----------|---------------|----------|-------------|
|photo|[InputFile](../types/InputFile.md) | Yes|Photo to send|
|thumb|[InputThumb](../types/InputThumb.md) | Yes|Photo thumb to send, is sent to the other party in secret chats only|
|added\_sticker\_file\_ids|Array of [int](../constructors/int.md) | Yes|File identifiers of stickers added onto the photo|
|added\_sticker\_file\_ids|Array of [int](../types/int.md) | Yes|File identifiers of stickers added onto the photo|
|width|[int](../types/int.md) | Yes|Photo width|
|height|[int](../types/int.md) | Yes|Photo height|
|caption|[string](../types/string.md) | Yes|Photo caption, 0-200 characters|

View File

@ -13,7 +13,7 @@ Message with information about venue
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|venue|[venue](../types/venue.md) | Yes|Venue to send|
|venue|[venue](../constructors/venue.md) | Yes|Venue to send|

View File

@ -15,7 +15,7 @@ Video message
|----------|---------------|----------|-------------|
|video|[InputFile](../types/InputFile.md) | Yes|Video to send|
|thumb|[InputThumb](../types/InputThumb.md) | Yes|Video thumb, if available|
|added\_sticker\_file\_ids|Array of [int](../constructors/int.md) | Yes|File identifiers of stickers added onto the video|
|added\_sticker\_file\_ids|Array of [int](../types/int.md) | Yes|File identifiers of stickers added onto the video|
|duration|[int](../types/int.md) | Yes|Duration of the video in seconds|
|width|[int](../types/int.md) | Yes|Video width|
|height|[int](../types/int.md) | Yes|Video height|

View File

@ -15,7 +15,7 @@ Description of a sticker which should be added to a sticker set
|----------|---------------|----------|-------------|
|png\_sticker|[InputFile](../types/InputFile.md) | Yes|Png image with the sticker, must be up to 512 kilobytes in size and fit in 512x512 square|
|emojis|[string](../types/string.md) | Yes|Emojis corresponding to the sticker|
|mask\_position|[maskPosition](../types/maskPosition.md) | Yes|Position where the mask should be placed, nullable|
|mask\_position|[maskPosition](../constructors/maskPosition.md) | Yes|Position where the mask should be placed, nullable|

View File

@ -13,7 +13,7 @@ Animation message
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|animation|[animation](../types/animation.md) | Yes|Message content|
|animation|[animation](../constructors/animation.md) | Yes|Message content|
|caption|[string](../types/string.md) | Yes|Animation caption|

View File

@ -13,7 +13,7 @@ Audio message
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|audio|[audio](../types/audio.md) | Yes|Message content|
|audio|[audio](../constructors/audio.md) | Yes|Message content|
|caption|[string](../types/string.md) | Yes|Audio caption|

View File

@ -13,7 +13,7 @@ Chat members added
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|member\_user\_ids|Array of [int](../constructors/int.md) | Yes|User identifiers of new chat members|
|member\_user\_ids|Array of [int](../types/int.md) | Yes|User identifiers of new chat members|

View File

@ -13,7 +13,7 @@ Chat photo changed
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|photo|[photo](../types/photo.md) | Yes|New chat photo|
|photo|[photo](../constructors/photo.md) | Yes|New chat photo|

View File

@ -13,7 +13,7 @@ User contact message
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|contact|[contact](../types/contact.md) | Yes|Message content|
|contact|[contact](../constructors/contact.md) | Yes|Message content|

View File

@ -13,7 +13,7 @@ Document message
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|document|[document](../types/document.md) | Yes|Message content|
|document|[document](../constructors/document.md) | Yes|Message content|
|caption|[string](../types/string.md) | Yes|Document caption|

View File

@ -13,7 +13,7 @@ Message with a game
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|game|[game](../types/game.md) | Yes|The game|
|game|[game](../constructors/game.md) | Yes|The game|

View File

@ -14,7 +14,7 @@ New group chat created
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|title|[string](../types/string.md) | Yes|Title of created group chat|
|member\_user\_ids|Array of [int](../constructors/int.md) | Yes|User identifiers of members of created group chat|
|member\_user\_ids|Array of [int](../types/int.md) | Yes|User identifiers of members of created group chat|

View File

@ -15,7 +15,7 @@ Message with an invoice from a bot
|----------|---------------|----------|-------------|
|title|[string](../types/string.md) | Yes|Goods title|
|description|[string](../types/string.md) | Yes|Goods description|
|photo|[photo](../types/photo.md) | Yes|Goods photo, nullable|
|photo|[photo](../constructors/photo.md) | Yes|Goods photo, nullable|
|currency|[string](../types/string.md) | Yes|Currency for goods price|
|total\_amount|[int53](../types/int53.md) | Yes|Goods total price in minimal quantity of the currency|
|start\_parameter|[string](../types/string.md) | Yes|Unique invoice bot start_parameter. To share an invoice use a URL https: t.me/{bot_username}?start={start_parameter}|

View File

@ -13,7 +13,7 @@ Message with location
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|location|[location](../types/location.md) | Yes|Message content|
|location|[location](../constructors/location.md) | Yes|Message content|

View File

@ -17,7 +17,7 @@ Bots only. Payment completed
|total\_amount|[int53](../types/int53.md) | Yes|Goods total price in minimal quantity of the currency|
|invoice\_payload|[bytes](../types/bytes.md) | Yes|Invoice payload|
|shipping\_option\_id|[string](../types/string.md) | Yes|Identifier of a choosed by user shipping option, may be empty if not applicable|
|order\_info|[orderInfo](../types/orderInfo.md) | Yes|Information about the order, nullable|
|order\_info|[orderInfo](../constructors/orderInfo.md) | Yes|Information about the order, nullable|
|telegram\_payment\_charge\_id|[string](../types/string.md) | Yes|Telegram payment identifier|
|provider\_payment\_charge\_id|[string](../types/string.md) | Yes|Provider payment identifier|

View File

@ -13,7 +13,7 @@ Photo message
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|photo|[photo](../types/photo.md) | Yes|Message content|
|photo|[photo](../constructors/photo.md) | Yes|Message content|
|caption|[string](../types/string.md) | Yes|Photo caption|

View File

@ -13,7 +13,7 @@ Sticker message
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|sticker|[sticker](../types/sticker.md) | Yes|Message content|
|sticker|[sticker](../constructors/sticker.md) | Yes|Message content|

View File

@ -15,7 +15,7 @@ Text message
|----------|---------------|----------|-------------|
|text|[string](../types/string.md) | Yes|Text of the message|
|entities|Array of [textEntity](../constructors/textEntity.md) | Yes|Entities contained in the text|
|web\_page|[webPage](../types/webPage.md) | Yes|Preview of a web page mentioned in the text, nullable|
|web\_page|[webPage](../constructors/webPage.md) | Yes|Preview of a web page mentioned in the text, nullable|

View File

@ -13,7 +13,7 @@ Message with information about venue
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|venue|[venue](../types/venue.md) | Yes|Message content|
|venue|[venue](../constructors/venue.md) | Yes|Message content|

View File

@ -13,7 +13,7 @@ Video message
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|video|[video](../types/video.md) | Yes|Message content|
|video|[video](../constructors/video.md) | Yes|Message content|
|caption|[string](../types/string.md) | Yes|Video caption|

View File

@ -13,7 +13,7 @@ Video note message
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|video\_note|[videoNote](../types/videoNote.md) | Yes|Message content|
|video\_note|[videoNote](../constructors/videoNote.md) | Yes|Message content|
|is\_viewed|[Bool](../types/Bool.md) | Yes|True, if the video note message was viewed|

View File

@ -13,7 +13,7 @@ Voice message
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|voice|[voice](../types/voice.md) | Yes|Message content|
|voice|[voice](../constructors/voice.md) | Yes|Message content|
|caption|[string](../types/string.md) | Yes|Voice caption|
|is\_listened|[Bool](../types/Bool.md) | Yes|True, if the voice message was listened to|

View File

@ -14,7 +14,7 @@ Full list of available network statistics entries
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|since\_date|[int](../types/int.md) | Yes|Date since which statistics are collected, unix time|
|entries|Array of [NetworkStatisticsEntry](../constructors/NetworkStatisticsEntry.md) | Yes|Network statistics entries|
|entries|Array of [NetworkStatisticsEntry](../types/NetworkStatisticsEntry.md) | Yes|Network statistics entries|

View File

@ -16,7 +16,7 @@ Order information
|name|[string](../types/string.md) | Yes|User name|
|phone\_number|[string](../types/string.md) | Yes|User's phone number|
|email|[string](../types/string.md) | Yes|User email|
|shipping\_address|[shippingAddress](../types/shippingAddress.md) | Yes|User shipping address, nullable|
|shipping\_address|[shippingAddress](../constructors/shippingAddress.md) | Yes|User shipping address, nullable|

View File

@ -13,7 +13,7 @@ An animation
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|animation|[animation](../types/animation.md) | Yes|The animation, nullable|
|animation|[animation](../constructors/animation.md) | Yes|The animation, nullable|
|caption|[RichText](../types/RichText.md) | Yes|Animation caption|
|need\_autoplay|[Bool](../types/Bool.md) | Yes|True, if the animation should be autoplayed|

View File

@ -13,7 +13,7 @@ An audio
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|audio|[audio](../types/audio.md) | Yes|The audio, nullable|
|audio|[audio](../constructors/audio.md) | Yes|The audio, nullable|
|caption|[RichText](../types/RichText.md) | Yes|Audio caption|

View File

@ -14,7 +14,7 @@ A link to a chat
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|title|[string](../types/string.md) | Yes|Chat title|
|photo|[chatPhoto](../types/chatPhoto.md) | Yes|Chat photo, nullable|
|photo|[chatPhoto](../constructors/chatPhoto.md) | Yes|Chat photo, nullable|
|username|[string](../types/string.md) | Yes|Chat username by which all other information about the chat should be resolved|

View File

@ -13,7 +13,7 @@ A collage
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|page\_blocks|Array of [PageBlock](../constructors/PageBlock.md) | Yes|Collage item contents|
|page\_blocks|Array of [PageBlock](../types/PageBlock.md) | Yes|Collage item contents|
|caption|[RichText](../types/RichText.md) | Yes|Block caption|

View File

@ -15,7 +15,7 @@ Embedded web page
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|Web page URL, if available|
|html|[string](../types/string.md) | Yes|HTML-markup of the embedded page|
|poster\_photo|[photo](../types/photo.md) | Yes|Poster photo if available, nullable|
|poster\_photo|[photo](../constructors/photo.md) | Yes|Poster photo if available, nullable|
|width|[int](../types/int.md) | Yes|Block width|
|height|[int](../types/int.md) | Yes|Block height|
|caption|[RichText](../types/RichText.md) | Yes|Block caption|

View File

@ -15,9 +15,9 @@ Embedded post
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|Web page URL|
|author|[string](../types/string.md) | Yes|Post author|
|author\_photo|[photo](../types/photo.md) | Yes|Post author photo|
|author\_photo|[photo](../constructors/photo.md) | Yes|Post author photo|
|date|[int](../types/int.md) | Yes|Post date, unix time. 0 if unknown|
|page\_blocks|Array of [PageBlock](../constructors/PageBlock.md) | Yes|Post content|
|page\_blocks|Array of [PageBlock](../types/PageBlock.md) | Yes|Post content|
|caption|[RichText](../types/RichText.md) | Yes|Post caption|

View File

@ -13,7 +13,7 @@ List of texts
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|items|Array of [RichText](../constructors/RichText.md) | Yes|Texts|
|items|Array of [RichText](../types/RichText.md) | Yes|Texts|
|is\_ordered|[Bool](../types/Bool.md) | Yes|True, if items should be marked with numbers|

View File

@ -13,7 +13,7 @@ A photo
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|photo|[photo](../types/photo.md) | Yes|The photo, nullable|
|photo|[photo](../constructors/photo.md) | Yes|The photo, nullable|
|caption|[RichText](../types/RichText.md) | Yes|Photo caption|

View File

@ -13,7 +13,7 @@ A slideshow
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|page\_blocks|Array of [PageBlock](../constructors/PageBlock.md) | Yes|Slideshow item contents|
|page\_blocks|Array of [PageBlock](../types/PageBlock.md) | Yes|Slideshow item contents|
|caption|[RichText](../types/RichText.md) | Yes|Block caption|

View File

@ -13,7 +13,7 @@ A video
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|video|[video](../types/video.md) | Yes|The video, nullable|
|video|[video](../constructors/video.md) | Yes|The video, nullable|
|caption|[RichText](../types/RichText.md) | Yes|Video caption|
|need\_autoplay|[Bool](../types/Bool.md) | Yes|True, if the video should be autoplayed|
|is\_looped|[Bool](../types/Bool.md) | Yes|True, if the video is looped|

View File

@ -13,11 +13,11 @@ Information about invoice payment form
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|invoice|[invoice](../types/invoice.md) | Yes|Full information about the invoice|
|invoice|[invoice](../constructors/invoice.md) | Yes|Full information about the invoice|
|url|[string](../types/string.md) | Yes|Payment form URL|
|payments\_provider|[paymentsProviderStripe](../types/paymentsProviderStripe.md) | Yes|Information about payment provider if available, to support it natively without opening the URL, nullable|
|saved\_order\_info|[orderInfo](../types/orderInfo.md) | Yes|Saved server-side order information, nullable|
|saved\_credentials|[savedCredentials](../types/savedCredentials.md) | Yes|Information about saved card credentials, nullable|
|payments\_provider|[paymentsProviderStripe](../constructors/paymentsProviderStripe.md) | Yes|Information about payment provider if available, to support it natively without opening the URL, nullable|
|saved\_order\_info|[orderInfo](../constructors/orderInfo.md) | Yes|Saved server-side order information, nullable|
|saved\_credentials|[savedCredentials](../constructors/savedCredentials.md) | Yes|Information about saved card credentials, nullable|
|can\_save\_credentials|[Bool](../types/Bool.md) | Yes|True, if the user can choose to save credentials|
|need\_password|[Bool](../types/Bool.md) | Yes|True, if the user will be able to save credentials if he set up a password|

View File

@ -15,9 +15,9 @@ Contains information about successful payment
|----------|---------------|----------|-------------|
|date|[int](../types/int.md) | Yes|Payment date, unix time|
|payments\_provider\_user\_id|[int](../types/int.md) | Yes|User identifier of payments provider bot|
|invoice|[invoice](../types/invoice.md) | Yes|Information about the invoice|
|order\_info|[orderInfo](../types/orderInfo.md) | Yes|Order information, nullable|
|shipping\_option|[shippingOption](../types/shippingOption.md) | Yes|Chosen shipping option, nullable|
|invoice|[invoice](../constructors/invoice.md) | Yes|Information about the invoice|
|order\_info|[orderInfo](../constructors/orderInfo.md) | Yes|Order information, nullable|
|shipping\_option|[shippingOption](../constructors/shippingOption.md) | Yes|Chosen shipping option, nullable|
|credentials\_title|[string](../types/string.md) | Yes|Title of the saved credentials|

View File

@ -14,7 +14,7 @@ Photo description
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|type|[string](../types/string.md) | Yes|Thumbnail type (see https: core.telegram.org/constructor/photoSize)|
|photo|[file](../types/file.md) | Yes|Information about photo file|
|photo|[file](../constructors/file.md) | Yes|Information about photo file|
|width|[int](../types/int.md) | Yes|Photo width|
|height|[int](../types/int.md) | Yes|Photo height|

View File

@ -13,7 +13,7 @@ Rule to allow specified users
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|user\_ids|Array of [int](../constructors/int.md) | Yes|User identifiers|
|user\_ids|Array of [int](../types/int.md) | Yes|User identifiers|

View File

@ -13,7 +13,7 @@ Rule to disallow all specified users
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|user\_ids|Array of [int](../constructors/int.md) | Yes|User identifiers|
|user\_ids|Array of [int](../types/int.md) | Yes|User identifiers|

View File

@ -13,7 +13,7 @@ List of privacy rules. Rules are matched in the specified order. First matched r
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|rules|Array of [PrivacyRule](../constructors/PrivacyRule.md) | Yes|List of rules|
|rules|Array of [PrivacyRule](../types/PrivacyRule.md) | Yes|List of rules|

View File

@ -14,8 +14,8 @@ Describes user profile photo
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[long](../types/long.md) | Yes|Photo identifier, 0 for empty photo. Can be used to find photo in list of userProfilePhotos|
|small|[file](../types/file.md) | Yes|Small (160x160) user profile photo|
|big|[file](../types/file.md) | Yes|Big (640x640) user profile photo|
|small|[file](../constructors/file.md) | Yes|Small (160x160) user profile photo|
|big|[file](../constructors/file.md) | Yes|Big (640x640) user profile photo|

View File

@ -13,7 +13,7 @@ Concatenation of rich texts
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|texts|Array of [RichText](../constructors/RichText.md) | Yes|The texts|
|texts|Array of [RichText](../types/RichText.md) | Yes|The texts|

View File

@ -18,9 +18,9 @@ Describes sticker
|height|[int](../types/int.md) | Yes|Sticker height as defined by sender|
|emoji|[string](../types/string.md) | Yes|Emoji corresponding to the sticker|
|is\_mask|[Bool](../types/Bool.md) | Yes|True, if the sticker is a mask|
|mask\_position|[maskPosition](../types/maskPosition.md) | Yes|Position where the mask should be placed, nullable|
|thumb|[photoSize](../types/photoSize.md) | Yes|Sticker thumb in webp or jpeg format, nullable|
|sticker|[file](../types/file.md) | Yes|File with sticker|
|mask\_position|[maskPosition](../constructors/maskPosition.md) | Yes|Position where the mask should be placed, nullable|
|thumb|[photoSize](../constructors/photoSize.md) | Yes|Sticker thumb in webp or jpeg format, nullable|
|sticker|[file](../constructors/file.md) | Yes|File with sticker|

View File

@ -13,7 +13,7 @@ Represents list of all emojis corresponding to a sticker in a sticker set. The l
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|emojis|Array of [string](../constructors/string.md) | Yes|List of emojis|
|emojis|Array of [string](../types/string.md) | Yes|List of emojis|

View File

@ -13,7 +13,7 @@ Tests only. A simple object containing just a vector of numbers
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|value|Array of [int](../constructors/int.md) | Yes|The vector of numbers|
|value|Array of [int](../types/int.md) | Yes|The vector of numbers|

View File

@ -13,7 +13,7 @@ Tests only. A simple object containing just a vector of strings
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|value|Array of [string](../constructors/string.md) | Yes|The vector of strings|
|value|Array of [string](../types/string.md) | Yes|The vector of strings|

View File

@ -13,7 +13,7 @@ Information about a call was updated
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|call|[call](../types/call.md) | Yes|New data about a call|
|call|[call](../constructors/call.md) | Yes|New data about a call|

View File

@ -13,7 +13,7 @@ Some data about a channel has been changed. This update is guaranteed to come be
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|channel|[channel](../types/channel.md) | Yes|New data about the channel|
|channel|[channel](../constructors/channel.md) | Yes|New data about the channel|

View File

@ -14,7 +14,7 @@ Some data from channelFull has been changed
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|channel\_id|[int](../types/int.md) | Yes|Channel identifier|
|channel\_full|[channelFull](../types/channelFull.md) | Yes|New full information about the channel|
|channel\_full|[channelFull](../constructors/channelFull.md) | Yes|New full information about the channel|

View File

@ -14,7 +14,7 @@ Chat draft has changed. Be aware that the update may come in the currently open
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|chat\_id|[int53](../types/int53.md) | Yes|Chat identifier|
|draft\_message|[draftMessage](../types/draftMessage.md) | Yes|New chat draft_message, nullable|
|draft\_message|[draftMessage](../constructors/draftMessage.md) | Yes|New chat draft_message, nullable|

View File

@ -14,7 +14,7 @@ Chat photo was changed
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|chat\_id|[int53](../types/int53.md) | Yes|Chat identifier|
|photo|[chatPhoto](../types/chatPhoto.md) | Yes|New chat photo, nullable|
|photo|[chatPhoto](../constructors/chatPhoto.md) | Yes|New chat photo, nullable|

View File

@ -14,7 +14,7 @@ Top message of the chat has changed. If top_message is null then top message in
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|chat\_id|[int53](../types/int53.md) | Yes|Chat identifier|
|top\_message|[message](../types/message.md) | Yes|New top message of the chat, nullable|
|top\_message|[message](../constructors/message.md) | Yes|New top message of the chat, nullable|

View File

@ -14,7 +14,7 @@ Some messages was deleted
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|chat\_id|[int53](../types/int53.md) | Yes|Chat identifier|
|message\_ids|Array of [int53](../constructors/int53.md) | Yes|Identifiers of deleted message|
|message\_ids|Array of [int53](../types/int53.md) | Yes|Identifiers of deleted message|

View File

@ -13,7 +13,7 @@ Information about a file was updated
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|file|[file](../types/file.md) | Yes|New data about a file|
|file|[file](../constructors/file.md) | Yes|New data about a file|

View File

@ -13,7 +13,7 @@ DEPRECATED. Use updateFile instead. File generation is finished
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|file|[file](../types/file.md) | Yes|Generated file|
|file|[file](../constructors/file.md) | Yes|Generated file|

View File

@ -13,7 +13,7 @@ Some data about a group has been changed. This update is guaranteed to come befo
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|group|[group](../types/group.md) | Yes|New data about the group|
|group|[group](../constructors/group.md) | Yes|New data about the group|

View File

@ -14,7 +14,7 @@ Some data from groupFull has been changed
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|group\_id|[int](../types/int.md) | Yes|Group identifier|
|group\_full|[groupFull](../types/groupFull.md) | Yes|New full information about the group|
|group\_full|[groupFull](../constructors/groupFull.md) | Yes|New full information about the group|

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