-
Notifications
You must be signed in to change notification settings - Fork 40
Variáveis
A API do Telegram suporta uma gama de tipos e estruturas de dados que são passados na chamada de seus métodos, porém apenas dois tipos de dados são suportados pelo interpretador de comandos BASH. São eles: integer e string. Para filtrar os dados e garantir que tipos incompatíveis não sejam enviados aos métodos, foram criadas expressões regulares para validação dos mesmos. O valor é verificado com base no tipo suportado pelo parâmetro ao qual foi passado, caso seja incompatível a função trata o erro de sintaxe e finaliza o script/thread.
O ShellBot possui variáveis com nomes reservados, nas quais são armazenados os valores extraídos dos objetos json sempre que o método ShellBot.getUpdates é chamado. A nomenclatura de cada variável é composta pelo prefixo do objeto a qual pertence, seguido pelo nome do campo. Utiliza-se o caractere _ (underscore) na composição, expressando de forma sucinta a estrutura dos dados.
| Estrutura |
|---|
| objeto_campo |
Considere a variável message_text que contém um tipo de dado string com o corpo da mensagem enviada por um usuário ou bot.
| Variável |
|---|
| message_text |
| Objeto | Campo |
|---|---|
| message | text |
Nota: A nomenclatura é única e contém um tipo de dado a ser retornado. Caso tente acessar o seu valor sem a mesma ter sido inicializada, nenhum valor será retornado.
O valor de uma variável pode ser acessado utilizando apenas o seu identificador (nome).
echo $message_text
Se for especificado o número máximo de atualizações a serem retornadas na chamada do método ShellBot.getUpdates através do parâmetro -l, --limit <valor> e se limit for maior que 1, o valor da variável deverá ser acessado por indexação utilizando a expansão de variável.
ShellBot.getUpdates --limit 3
echo ${message_text[0]} # mensagem 1
echo ${message_text[1]} # mensagem 2
echo ${message_text[2]} # mensagem 3
Use o método ShellBot.ListUpdates para obter os índices do array.
Nota: Por padrão somente as variáveis que possuem objetos atualizados são instanciadas.
| Objeto | Tipo | Descrição |
|---|---|---|
| update_id | Integer | O identificador exclusivo da atualização. Os identificadores de atualização começam de um certo número positivo e aumentam sequencialmente. Esta identificação torna-se especialmente útil se você estiver usando o Webhooks, pois permite ignorar as atualizações repetidas ou restaurar a sequência de atualização correta, caso elas saem de ordem. |
| message | Message | Opcional. Nova mensagem recebida de qualquer tipo - texto, foto, etiqueta, etc. |
| edited_message | Message | Opcional. Nova versão de uma mensagem conhecida pelo bot e editada |
| channel_post | Message | Opcional. Novo canal de entrada de qualquer tipo - texto, foto, etiqueta, etc. |
| edited_channel_post | Message | Opcional. Nova versão de uma publicação de canal conhecida pelo bot e editada |
| inline_query | InlineQuery | Opcional. Nova consulta inline recebida. |
| chosen_inline_result | ChosenInlineResult | Opcional. O resultado de uma consulta inline que foi escolhida por um usuário e enviada ao parceiro de bate-papo. |
| callback_query | CallbackQuery | Opcional. Nova consulta de chamada de retorno. |
Todos os tipos utilizados nas respostas da API Bot são representados como objetos JSON.
Os campos opcionais podem não ser devolvidos quando irrelevantes.
Este objeto representa um usuário ou bot de Telegram.
| Campo | Tipo | Descrição |
|---|---|---|
| id | Integer | Identificador exclusivo para este usuário ou bot |
| is_bot | Boolean | True, se esse usuário é um bot |
| first_name | String | Nome do usuário ou do bot |
| last_name | String | Opcional. Sobrenome do usuário ou do bot |
| username | String | Opcional. Nome de usuário ou bot |
| language_code | String | Opcional. Tag de idioma IETF do idioma do usuário |
Este objeto representa um bate-papo.
| Campo | Tipo | Descrição |
|---|---|---|
| id | Integer | Identificador exclusivo para este bate-papo. Este número pode ser superior a 32 bits e algumas linguagens de programação podem ter dificuldade / defeitos silenciosos na interpretação. Mas é menor do que 52 bits, então um tipo de flutuador inteiro ou de precisão dupla de 64 bits assinado é seguro para armazenar esse identificador. |
| type | String | Tipo de bate-papo, pode ser "private", "group", "supergroup" ou "channel" |
| title | String | Opcional. Título para supergrupos, canais e grupos. |
| username | String | Opcional. Nome de usuário para bate-papo privado, supergrupos e canais, se disponível |
| first_name | String | Opcional. Primeiro nome da outra parte em um bate-papo privado |
| last_name | String | Opcional. Segundo nome da outra parte em um bate-papo privado |
| all_members_are_administrators | Boolean | Opcional. True se um grupo tiver 'Todos os membros são administradores' habilitado. |
| photo | ChatPhoto | Opcional. Foto de bate-papo. Retorna apenas no ShellBot.getChat. |
| description | String | Opcional. Descrição para supergrupos, chats e canais. Retorna apenas no ShellBot.getChat |
| invite_link | String | Opcional. Link de convidado de bate-papo para supergrupos e canais. Retorna apenas no ShellBot.getChat |
| pinned_message | Message | Opcional. Mensagem fixa para supergrupos. Retorna apenas no ShellBot.getChat |
Este objeto representa um mensagem.
| Campo | Tipo | Descrição |
|---|---|---|
| message_id | Integer | Identificador de mensagem exclusivo dentro deste bate-papo |
| from | User | Opcional. Remetente, vazio para mensagens enviadas para canais |
| date | Integer | Data em que a mensagem foi enviada no tempo do Unix |
| chat | Chat | Messagem a qual bate-papo pertence |
| forward_from | User | Opcional. Para mensagens encaminhadas o remetente da mensagem original |
| forward_from_chat | Chat | Opcional. Para as mensagens encaminhadas a partir de canais, informações sobre o canal original |
| forward_from_message_id | Integer | Opcional. Para mensagens encaminhadas a partir de canais, identificador da mensagem original |
| forward_signature | String | Opcional. Para mensagens encaminhadas a partir de canais, assinatura do autor de postagem se presente |
| forward_date | Integer | Opcional. Para as mensagens encaminhadas, data em que a mensagem original foi enviada no tempo do Unix |
| reply_to_message | Message | Opcional. Para respostas, a mensagem original. Observe que o objeto Mensagem neste campo não conterá mais campos reply_to_message mesmo se ele próprio for uma resposta. |
| edit_date | Integer | Opcional. Data em que a última mensagem foi editada no tempo do Unix. |
| author_signature | String | Opcional. Assinatura do autor do post para mensagens nos canais. |
| text | String | Opcional. Para mensagens de texto, o texto UTF-8 da mensagem, de 0 a 4096 caracteres. |
| entities | Array de MessageEntity | Opcional. Para mensagens de texto, entidades especiais como nomes de usuário, URLs, comandos de bot e etc que aparecem no texto. |
| audio | Audio | Opcional. Mensagem é um arquivo de áudio, informações sobre o arquivo. |
| document | Document | Opcional. A mensagem é um arquivo geral, informações sobre o arquivo. |
| game | Game | Opcional. A mensagem é um jogo. |
| photo | Array de PhotoSize | Optional. Message is a photo, available sizes of the photo. |
| sticker | Sticker | Opcional. A mensagem é um adesivo, informações sobre o adesivo. |
| video | Video | Opcional. Mensagem é um vídeo, informações sobre o vídeo. |
| voice | Voice | Opcional. Mensagem é uma mensagem de voz, informações sobre o arquivo. |
| video_note | VideoNote | Opcional. A mensagem é uma nota de vídeo, informações sobre a mensagem de vídeo. |
| new_chat_members | Array de User | Opcional. Novos membros que foram adicionados ao grupo ou ao supergrupo e informações sobre eles (o próprio bot pode ser um desses membros) |
| caption | String | Opcional. Legenda do documento, foto ou vídeo, 0 a 200 caracteres. |
| contact | Contact | Opcional. A mensagem é um contato compartilhado. |
| location | Location | Opcional. Mensagem é uma localização compartilhada. |
| venue | Venue | Opcional. A mensagem é um local. |
| new_chat_member | User | Opcional. Um novo membro foi adicionado ao grupo, informações sobre eles (este membro pode ser o próprio bot). |
| left_chat_member | User | Opcional. Um membro foi removido do grupo, informações sobre eles (este membro pode ser o próprio bot). |
| new_chat_title | String | Opcional. Um título de bate-papo foi alterado para esse valor. |
| new_chat_photo | Array de PhotoSize | Opcional. Uma foto de bate-papo foi alterada para esse valor. |
| delete_chat_photo | True | Opcional. Mensagem de serviço: a foto do bate-papo foi excluída. |
| group_chat_created | True | Opcional. Mensagem de serviço: o grupo foi criado. |
| supergroup_chat_created | True | Opcional. Mensagem de serviço: o supergrupo foi criado. Este campo não pode ser recebido em uma mensagem que vem através de atualizações, porque o bot não pode ser um membro de um supergrupo quando ele é criado. Só pode ser encontrado em reply_to_message se alguém responder a uma primeira mensagem em um supergrupo criado diretamente. |
| channel_chat_created | True | Opcional. Mensagem de serviço: o canal foi criado. Este campo não pode ser recebido em uma mensagem que vem por meio de atualizações, porque o bot não pode ser um membro de um canal quando ele é criado. Só pode ser encontrado em reply_to_message se alguém responder a uma primeira mensagem em um canal. |
| migrate_to_chat_id | Integer | Opcional. O grupo foi migrado para um supergrupo com o identificador especificado. Este número pode ser superior a 32 bits e algumas linguagens de programação podem ter dificuldade / defeitos silenciosos na interpretação. Mas é menor do que 52 bits, então um tipo de flutuador inteiro ou de precisão dupla de 64 bits assinado é seguro para armazenar esse identificador. |
| migrate_from_chat_id | Integer | Opcional. O supergrupo foi migrado de um grupo com o identificador especificado. Este número pode ser superior a 32 bits e algumas linguagens de programação podem ter dificuldade / defeitos silenciosos na interpretação. Mas é menor do que 52 bits, então um tipo de flutuador inteiro ou de precisão dupla de 64 bits assinado é seguro para armazenar esse identificador. |
| pinned_message | Message | Opcional. A mensagem especificada foi fixada. Observe que o objeto Mensagem neste campo não conterá mais campos reply_to_message, mesmo que ele seja uma resposta. |
Este objeto representa uma entidade especial em uma mensagem de texto. Por exemplo, hashtags, nomes de usuários, URLs e etc.
| Campo | Tipo | Descrição |
|---|---|---|
| type | String | Tipo da entidade. Pode ser mencionado hashtag, bot_command, url, email, bold (bold text), italic (italic text), code (monowidth string), pre (monowidth block), text_link (for clickable text URLs), text_mention (for users without usernames). |
| offset | Integer | Offset em unidades de código UTF-16 para o início da entidade. |
| length | Integer | Comprimento da entidade em unidades de código UTF-16. |
| url | String | Opcional. Somente para "texto_link", url que será aberto após o usuário tocar no texto. |
| user | User | Opcional. Apenas para "text_mention". O usuário mencionado. |
Este objeto representa um tamanho de uma foto ou uma miniatura de file/Sticker.
| Campo | Tipo | Descrição |
|---|---|---|
| file_id | String | Identificador único para o arquivo. |
| width | Integer | Largura da foto. |
| height | Integer | Altura da foto. |
| file_size | Integer | Opcional. Tamanho do arquivo. |
Este objeto representa um arquivo de áudio a ser tratado como música pelos clientes Telegram.
| Campo | Tipo | Descrição |
|---|---|---|
| file_id | String | Identificador único para o arquivo. |
| duration | Integer | Duração do áudio em segundos conforme definido pelo remetente. |
| performer | String | Opcional. Performer do áudio conforme definido pelo remetente ou por tags de áudio. |
| title | String | Opcional. Título do áudio conforme definido pelo remetente ou por tags de áudio. |
| mime_type | String | Opcional. Tipo MIME do arquivo conforme definido pelo remetente. |
| file_size | Integer | Opcional. Tamanho do arquivo. |
Este objeto representa um arquivo geral (em oposição a fotos, mensagens de voz e arquivos de áudio).
| Campo | Tipo | Descrição |
|---|---|---|
| file_id | String | Identificador único para o arquivo. |
| thumb | PhotoSize | Opcional. Miniatura do documento conforme definido pelo remetente. |
| file_name | String | Opcional. Nome do arquivo original conforme definido pelo remetente. |
| mime_type | String | Opcional. Tipo MIME do arquivo conforme definido pelo remetente. |
| file_size | Integer | Opcional. Tamanho do arquivo. |
Este objeto representa um arquivo de vídeo.
| Campo | Tipo | Descrição |
|---|---|---|
| file_id | String | Identificador único para o arquivo. |
| width | Integer | Largura da video. |
| height | Integer | Altura da video. |
| duration | Integer | Duração do vídeo em segundos conforme definido pelo remetente. |
| thumb | PhotoSize | Opcional. Miniatura do vídeo |
| mime_type | String | Opcional. Tipo MIME do arquivo conforme definido pelo remetente. |
| file_size | Integer | Opcional. Tamanho do arquivo. |
Este objeto representa uma nota de voz.
| Campo | Tipo | Descrição |
|---|---|---|
| file_id | String | Identificador único para o arquivo. |
| duration | Integer | Duração do audio em segundos conforme definido pelo remetente. |
| mime_type | String | Opcional. Tipo MIME do arquivo conforme definido pelo remetente. |
| file_size | Integer | Opcional. Tamanho do arquivo. |
Este objeto representa uma mensagem de vídeo (disponível nos aplicativos Telegram como v.4.0).
| Campo | Tipo | Descrição |
|---|---|---|
| file_id | String | Identificador único para o arquivo. |
| length | Integer | Largura e altura do vídeo, conforme definido pelo remetente. |
| duration | Integer | Duração do video em segundos conforme definido pelo remetente. |
| thumb | PhotoSize | Opcional. Miniatura do vídeo |
| file_size | Integer | Opcional. Tamanho do arquivo. |
Este objeto representa um contato de telefone.
| Campo | Tipo | Descrição |
|---|---|---|
| phone_number | String | Número de telefone do contato. |
| first_name | String | Primeiro nome do contato. |
| last_name | String | Opcional. Segundo nome do contato. |
| user_id | Integer | Opcional. Identificador de usuário do contato no Telegram. |
Este objeto representa um ponto no mapa.
| Campo | Tipo | Descrição |
|---|---|---|
| longitude | Float | Longitude conforme definido pelo remetente. |
| latitude | Float | Latitude conforme definida pelo remetente. |
Este objeto representa um local.
| Campo | Tipo | Descrição |
|---|---|---|
| location | Location | Localização do local. |
| title | String | Nome do local. |
| address | String | Endereço do local. |
| foursquare_id | String | Opcional. Identificador do quadrante do local. |
Este objeto representa as imagens de perfil de um usuário.
| Campo | Tipo | Descrição |
|---|---|---|
| total_count | Integer | Número total de imagens de perfil que o usuário alvo possui. |
| photos | Array de Array de PhotoSize | Imagens de perfil solicitadas (em até 4 tamanhos cada). |
update_id
message_message_id
message_from_id
message_from_first_name
message_from_last_name
message_username
message_language_code
message_date
message_chat_id
message_chat_type
message_chat_title
message_chat_username
message_chat_first_name
message_chat_last_name
message_chat_all_members_are_administrators
message_chat_photo
message_chat_description
message_chat_invite_link
message_forward_from_id
message_forward_from_first_name
message_forward_from_last_name
message_forward_from_username
message_forward_from_language_code
message_forward_from_chat_id
message_forward_from_chat_type
message_forward_from_chat_title
message_forward_from_chat_username
message_forward_from_chat_first_name
message_forward_from_chat_last_name
message_forward_from_chat_all_members_are_administrators
message_forward_from_chat_photo
message_forward_from_chat_description
message_forward_from_chat_invite_link
message_forward_from_message_id
message_forward_date
message_edit_date
message_text
message_entities_type
message_entities_offset
message_entities_integer
message_entities_length
message_entities_urls
message_entities_user_id
message_entities_user_first_name
message_entities_user_last_name
message_entities_user_username
message_entities_user_language
message_audio_file_id
message_audio_duration
message_audio_performer
message_audio_title
message_audio_mime_type
message_audio_file_size
message_document_file_id
message_document_thumb_file_id
message_document_thumb_width
message_document_thumb_height
message_document_thumb_file_size
message_document_file_name
message_document_mime_type
message_document_file_size
message_game_title
message_game_description
message_game_photo_file_id
message_game_photo_width
message_game_photo_height
message_game_photo_file_size
message_game_text
message_game_text_entities_type
message_game_text_entities_offset
message_game_text_entities_length
message_game_text_entities_url
message_game_text_entities_user_id
message_game_text_entities_user_first_name
message_game_text_entities_user_last_name
message_game_text_entities_user_username
message_game_text_entities_user_language_code
message_game_animation_file_id
message_game_animation_thumb_file_id
message_game_animation_thumb_width
message_game_animation_thumb_height
message_game_animation_thumb_file_size
message_photo_file_id
message_photo_width
message_photo_height
message_photo_file_size
message_sticker_file_id
message_sticker_width
message_sticker_height
message_sticker_thumb_file_id
message_sticker_thumb_width
message_sticker_thumb_height
message_sticker_thumb_file_size
message_sticker_emoji
message_sticker_file_size
message_video_file_id
message_video_width
message_video_height
message_video_duration
message_video_thumb_file_id
message_video_thumb_width
message_video_thumb_height
message_video_thumb_file_size
message_video_mime_type
message_video_file_size
message_voice_file_id
message_voice_duration
message_voice_mime_type
message_voice_file_size
message_video_note_file_id
message_video_note_length
message_video_note_duration
message_video_note_thumb_file_id
message_video_note_thumb_width
message_video_note_thumb_height
message_video_note_thumb_file_size
message_video_note_file_size
message_new_chat_members_id
message_new_chat_members_first_name
message_new_chat_members_last_name
message_new_chat_members_username
message_new_chat_members_language_code
message_caption
message_contact_phone_number
message_contact_first_name
message_contact_last_name
message_contact_user_id
message_location_longitude
message_location_latitude
message_venue_location
message_venue_title
message_venue_address
message_venue_foursquare_id
message_new_chat_member_id
message_new_chat_member_first_name
message_new_chat_member_last_name
message_new_chat_member_username
message_new_chat_member_language_code
message_left_chat_member_id
message_left_chat_member_first_name
message_left_chat_member_last_name
message_left_chat_member_username
message_left_chat_member_language_code
message_new_chat_title
message_new_chat_photo_file_id
message_new_chat_photo_width
message_new_chat_photo_height
message_new_chat_photo_file_size
message_delete_chat_photo
message_group_chat_created
message_supergroup_chat_created
message_channel_chat_created
message_migrate_to_chat_id
message_migrate_from_chat_id
message_reply_to_message_message_id
message_reply_to_message_from_id
message_reply_to_message_from_first_name
message_reply_to_message_from_last_name
message_reply_to_message_username
message_reply_to_message_language_code
message_reply_to_message_date
message_reply_to_message_chat_id
message_reply_to_message_chat_type
message_reply_to_message_chat_title
message_reply_to_message_chat_username
message_reply_to_message_chat_first_name
message_reply_to_message_chat_last_name
message_reply_to_message_chat_all_members_are_administrators
message_reply_to_message_chat_photo
message_reply_to_message_chat_description
message_reply_to_message_chat_invite_link
message_reply_to_message_forward_from_id
message_reply_to_message_forward_from_first_name
message_reply_to_message_forward_from_last_name
message_reply_to_message_forward_from_username
message_reply_to_message_forward_from_language_code
message_reply_to_message_forward_from_chat_id
message_reply_to_message_forward_from_chat_type
message_reply_to_message_forward_from_chat_title
message_reply_to_message_forward_from_chat_username
message_reply_to_message_forward_from_chat_first_name
message_reply_to_message_forward_from_chat_last_name
message_reply_to_message_forward_from_chat_all_members_are_administrators
message_reply_to_message_forward_from_chat_photo
message_reply_to_message_forward_from_chat_description
message_reply_to_message_forward_from_chat_invite_link
message_reply_to_message_forward_from_message_id
message_reply_to_message_forward_date
message_reply_to_message_edit_date
message_reply_to_message_text
message_reply_to_message_entities_type
message_reply_to_message_entities_offset
message_reply_to_message_entities_integer
message_reply_to_message_entities_length
message_reply_to_message_entities_urls
message_reply_to_message_entities_user_id
message_reply_to_message_entities_user_first_name
message_reply_to_message_entities_user_last_name
message_reply_to_message_entities_user_username
message_reply_to_message_entities_user_language
message_reply_to_message_audio_file_id
message_reply_to_message_audio_duration
message_reply_to_message_audio_performer
message_reply_to_message_audio_title
message_reply_to_message_audio_mime_type
message_reply_to_message_audio_file_size
message_reply_to_message_document_file_id
message_reply_to_message_document_thumb_file_id
message_reply_to_message_document_thumb_width
message_reply_to_message_document_thumb_height
message_reply_to_message_document_thumb_file_size
message_reply_to_message_document_file_name
message_reply_to_message_document_mime_type
message_reply_to_message_document_file_size
message_reply_to_message_game_title
message_reply_to_message_game_description
message_reply_to_message_game_photo_file_id
message_reply_to_message_game_photo_width
message_reply_to_message_game_photo_height
message_reply_to_message_game_photo_file_size
message_reply_to_message_game_text
message_reply_to_message_game_text_entities_type
message_reply_to_message_game_text_entities_offset
message_reply_to_message_game_text_entities_length
message_reply_to_message_game_text_entities_url
message_reply_to_message_game_text_entities_user_id
message_reply_to_message_game_text_entities_user_first_name
message_reply_to_message_game_text_entities_user_last_name
message_reply_to_message_game_text_entities_user_username
message_reply_to_message_game_text_entities_user_language_code
message_reply_to_message_game_animation_file_id
message_reply_to_message_game_animation_thumb_file_id
message_reply_to_message_game_animation_thumb_width
message_reply_to_message_game_animation_thumb_height
message_reply_to_message_game_animation_thumb_file_size
message_reply_to_message_photo_file_id
message_reply_to_message_photo_width
message_reply_to_message_photo_height
message_reply_to_message_photo_file_size
message_reply_to_message_sticker_file_id
message_reply_to_message_sticker_width
message_reply_to_message_sticker_height
message_reply_to_message_sticker_thumb_file_id
message_reply_to_message_sticker_thumb_width
message_reply_to_message_sticker_thumb_height
message_reply_to_message_sticker_thumb_file_size
message_reply_to_message_sticker_emoji
message_reply_to_message_sticker_file_size
message_reply_to_message_video_file_id
message_reply_to_message_video_width
message_reply_to_message_video_height
message_reply_to_message_video_duration
message_reply_to_message_video_thumb_file_id
message_reply_to_message_video_thumb_width
message_reply_to_message_video_thumb_height
message_reply_to_message_video_thumb_file_size
message_reply_to_message_video_mime_type
message_reply_to_message_video_file_size
message_reply_to_message_voice_file_id
message_reply_to_message_voice_duration
message_reply_to_message_voice_mime_type
message_reply_to_message_voice_file_size
message_reply_to_message_video_note_file_id
message_reply_to_message_video_note_length
message_reply_to_message_video_note_duration
message_reply_to_message_video_note_thumb_file_id
message_reply_to_message_video_note_thumb_width
message_reply_to_message_video_note_thumb_height
message_reply_to_message_video_note_thumb_file_size
message_reply_to_message_video_note_file_size
message_reply_to_message_new_chat_members_id
message_reply_to_message_new_chat_members_first_name
message_reply_to_message_new_chat_members_last_name
message_reply_to_message_new_chat_members_username
message_reply_to_message_new_chat_members_language_code
message_reply_to_message_caption
message_reply_to_message_contact_phone_number
message_reply_to_message_contact_first_name
message_reply_to_message_contact_last_name
message_reply_to_message_contact_user_id
message_reply_to_message_location_longitude
message_reply_to_message_location_latitude
message_reply_to_message_venue_location
message_reply_to_message_venue_title
message_reply_to_message_venue_address
message_reply_to_message_venue_foursquare_id
message_reply_to_message_new_chat_member_id
message_reply_to_message_new_chat_member_first_name
message_reply_to_message_new_chat_member_last_name
message_reply_to_message_new_chat_member_username
message_reply_to_message_new_chat_member_language_code
message_reply_to_message_left_chat_member_id
message_reply_to_message_left_chat_member_first_name
message_reply_to_message_left_chat_member_last_name
message_reply_to_message_left_chat_member_username
message_reply_to_message_left_chat_member_language_code
message_reply_to_message_new_chat_title
message_reply_to_message_new_chat_photo_file_id
message_reply_to_message_new_chat_photo_width
message_reply_to_message_new_chat_photo_height
message_reply_to_message_new_chat_photo_file_size
message_reply_to_message_delete_chat_photo
message_reply_to_message_group_chat_created
message_reply_to_message_supergroup_chat_created
message_reply_to_message_channel_chat_created
message_reply_to_message_migrate_to_chat_id
message_reply_to_message_migrate_from_chat_id
message_pinned_message_message_id
message_pinned_message_from_id
message_pinned_message_from_first_name
message_pinned_message_from_last_name
message_pinned_message_username
message_pinned_message_language_code
message_pinned_message_date
message_pinned_message_chat_id
message_pinned_message_chat_type
message_pinned_message_chat_title
message_pinned_message_chat_username
message_pinned_message_chat_first_name
message_pinned_message_chat_last_name
message_pinned_message_chat_all_members_are_administrators
message_pinned_message_chat_photo
message_pinned_message_chat_description
message_pinned_message_chat_invite_link
message_pinned_message_forward_from_id
message_pinned_message_forward_from_first_name
message_pinned_message_forward_from_last_name
message_pinned_message_forward_from_username
message_pinned_message_forward_from_language_code
message_pinned_message_forward_from_chat_id
message_pinned_message_forward_from_chat_type
message_pinned_message_forward_from_chat_title
message_pinned_message_forward_from_chat_username
message_pinned_message_forward_from_chat_first_name
message_pinned_message_forward_from_chat_last_name
message_pinned_message_forward_from_chat_all_members_are_administrators
message_pinned_message_forward_from_chat_photo
message_pinned_message_forward_from_chat_description
message_pinned_message_forward_from_chat_invite_link
message_pinned_message_forward_from_message_id
message_pinned_message_forward_date
message_pinned_message_edit_date
message_pinned_message_text
message_pinned_message_entities_type
message_pinned_message_entities_offset
message_pinned_message_entities_integer
message_pinned_message_entities_length
message_pinned_message_entities_urls
message_pinned_message_entities_user_id
message_pinned_message_entities_user_first_name
message_pinned_message_entities_user_last_name
message_pinned_message_entities_user_username
message_pinned_message_entities_user_language
message_pinned_message_audio_file_id
message_pinned_message_audio_duration
message_pinned_message_audio_performer
message_pinned_message_audio_title
message_pinned_message_audio_mime_type
message_pinned_message_audio_file_size
message_pinned_message_document_file_id
message_pinned_message_document_thumb_file_id
message_pinned_message_document_thumb_width
message_pinned_message_document_thumb_height
message_pinned_message_document_thumb_file_size
message_pinned_message_document_file_name
message_pinned_message_document_mime_type
message_pinned_message_document_file_size
message_pinned_message_game_title
message_pinned_message_game_description
message_pinned_message_game_photo_file_id
message_pinned_message_game_photo_width
message_pinned_message_game_photo_height
message_pinned_message_game_photo_file_size
message_pinned_message_game_text
message_pinned_message_game_text_entities_type
message_pinned_message_game_text_entities_offset
message_pinned_message_game_text_entities_length
message_pinned_message_game_text_entities_url
message_pinned_message_game_text_entities_user_id
message_pinned_message_game_text_entities_user_first_name
message_pinned_message_game_text_entities_user_last_name
message_pinned_message_game_text_entities_user_username
message_pinned_message_game_text_entities_user_language_code
message_pinned_message_game_animation_file_id
message_pinned_message_game_animation_thumb_file_id
message_pinned_message_game_animation_thumb_width
message_pinned_message_game_animation_thumb_height
message_pinned_message_game_animation_thumb_file_size
message_pinned_message_photo_file_id
message_pinned_message_photo_width
message_pinned_message_photo_height
message_pinned_message_photo_file_size
message_pinned_message_sticker_file_id
message_pinned_message_sticker_width
message_pinned_message_sticker_height
message_pinned_message_sticker_thumb_file_id
message_pinned_message_sticker_thumb_width
message_pinned_message_sticker_thumb_height
message_pinned_message_sticker_thumb_file_size
message_pinned_message_sticker_emoji
message_pinned_message_sticker_file_size
message_pinned_message_video_file_id
message_pinned_message_video_width
message_pinned_message_video_height
message_pinned_message_video_duration
message_pinned_message_video_thumb_file_id
message_pinned_message_video_thumb_width
message_pinned_message_video_thumb_height
message_pinned_message_video_thumb_file_size
message_pinned_message_video_mime_type
message_pinned_message_video_file_size
message_pinned_message_voice_file_id
message_pinned_message_voice_duration
message_pinned_message_voice_mime_type
message_pinned_message_voice_file_size
message_pinned_message_video_note_file_id
message_pinned_message_video_note_length
message_pinned_message_video_note_duration
message_pinned_message_video_note_thumb_file_id
message_pinned_message_video_note_thumb_width
message_pinned_message_video_note_thumb_height
message_pinned_message_video_note_thumb_file_size
message_pinned_message_video_note_file_size
message_pinned_message_new_chat_members_id
message_pinned_message_new_chat_members_first_name
message_pinned_message_new_chat_members_last_name
message_pinned_message_new_chat_members_username
message_pinned_message_new_chat_members_language_code
message_pinned_message_caption
message_pinned_message_contact_phone_number
message_pinned_message_contact_first_name
message_pinned_message_contact_last_name
message_pinned_message_contact_user_id
message_pinned_message_location_longitude
message_pinned_message_location_latitude
message_pinned_message_venue_location
message_pinned_message_venue_title
message_pinned_message_venue_address
message_pinned_message_venue_foursquare_id
message_pinned_message_new_chat_member_id
message_pinned_message_new_chat_member_first_name
message_pinned_message_new_chat_member_last_name
message_pinned_message_new_chat_member_username
message_pinned_message_new_chat_member_language_code
message_pinned_message_left_chat_member_id
message_pinned_message_left_chat_member_first_name
message_pinned_message_left_chat_member_last_name
message_pinned_message_left_chat_member_username
message_pinned_message_left_chat_member_language_code
message_pinned_message_new_chat_title
message_pinned_message_new_chat_photo_file_id
message_pinned_message_new_chat_photo_width
message_pinned_message_new_chat_photo_height
message_pinned_message_new_chat_photo_file_size
message_pinned_message_delete_chat_photo
message_pinned_message_group_chat_created
message_pinned_message_supergroup_chat_created
message_pinned_message_channel_chat_created
message_pinned_message_migrate_to_chat_id
message_pinned_message_migrate_from_chat_id
edited_message_message_id
edited_message_from_id
edited_message_from_first_name
edited_message_from_last_name
edited_message_username
edited_message_language_code
edited_message_date
edited_message_chat_id
edited_message_chat_type
edited_message_chat_title
edited_message_chat_username
edited_message_chat_first_name
edited_message_chat_last_name
edited_message_chat_all_members_are_administrators
edited_message_chat_photo
edited_message_chat_description
edited_message_chat_invite_link
edited_message_forward_from_id
edited_message_forward_from_first_name
edited_message_forward_from_last_name
edited_message_forward_from_username
edited_message_forward_from_language_code
edited_message_forward_from_chat_id
edited_message_forward_from_chat_type
edited_message_forward_from_chat_title
edited_message_forward_from_chat_username
edited_message_forward_from_chat_first_name
edited_message_forward_from_chat_last_name
edited_message_forward_from_chat_all_members_are_administrators
edited_message_forward_from_chat_photo
edited_message_forward_from_chat_description
edited_message_forward_from_chat_invite_link
edited_message_forward_from_message_id
edited_message_forward_date
edited_message_edit_date
edited_message_text
edited_message_entities_type
edited_message_entities_offset
edited_message_entities_integer
edited_message_entities_length
edited_message_entities_urls
edited_message_entities_user_id
edited_message_entities_user_first_name
edited_message_entities_user_last_name
edited_message_entities_user_username
edited_message_entities_user_language
edited_message_audio_file_id
edited_message_audio_duration
edited_message_audio_performer
edited_message_audio_title
edited_message_audio_mime_type
edited_message_audio_file_size
edited_message_document_file_id
edited_message_document_thumb_file_id
edited_message_document_thumb_width
edited_message_document_thumb_height
edited_message_document_thumb_file_size
edited_message_document_file_name
edited_message_document_mime_type
edited_message_document_file_size
edited_message_game_title
edited_message_game_description
edited_message_game_photo_file_id
edited_message_game_photo_width
edited_message_game_photo_height
edited_message_game_photo_file_size
edited_message_game_text
edited_message_game_text_entities_type
edited_message_game_text_entities_offset
edited_message_game_text_entities_length
edited_message_game_text_entities_url
edited_message_game_text_entities_user_id
edited_message_game_text_entities_user_first_name
edited_message_game_text_entities_user_last_name
edited_message_game_text_entities_user_username
edited_message_game_text_entities_user_language_code
edited_message_game_animation_file_id
edited_message_game_animation_thumb_file_id
edited_message_game_animation_thumb_width
edited_message_game_animation_thumb_height
edited_message_game_animation_thumb_file_size
edited_message_photo_file_id
edited_message_photo_width
edited_message_photo_height
edited_message_photo_file_size
edited_message_sticker_file_id
edited_message_sticker_width
edited_message_sticker_height
edited_message_sticker_thumb_file_id
edited_message_sticker_thumb_width
edited_message_sticker_thumb_height
edited_message_sticker_thumb_file_size
edited_message_sticker_emoji
edited_message_sticker_file_size
edited_message_video_file_id
edited_message_video_width
edited_message_video_height
edited_message_video_duration
edited_message_video_thumb_file_id
edited_message_video_thumb_width
edited_message_video_thumb_height
edited_message_video_thumb_file_size
edited_message_video_mime_type
edited_message_video_file_size
edited_message_voice_file_id
edited_message_voice_duration
edited_message_voice_mime_type
edited_message_voice_file_size
edited_message_video_note_file_id
edited_message_video_note_length
edited_message_video_note_duration
edited_message_video_note_thumb_file_id
edited_message_video_note_thumb_width
edited_message_video_note_thumb_height
edited_message_video_note_thumb_file_size
edited_message_video_note_file_size
edited_message_new_chat_members_id
edited_message_new_chat_members_first_name
edited_message_new_chat_members_last_name
edited_message_new_chat_members_username
edited_message_new_chat_members_language_code
edited_message_caption
edited_message_contact_phone_number
edited_message_contact_first_name
edited_message_contact_last_name
edited_message_contact_user_id
edited_message_location_longitude
edited_message_location_latitude
edited_message_venue_location
edited_message_venue_title
edited_message_venue_address
edited_message_venue_foursquare_id
edited_message_new_chat_member_id
edited_message_new_chat_member_first_name
edited_message_new_chat_member_last_name
edited_message_new_chat_member_username
edited_message_new_chat_member_language_code
edited_message_left_chat_member_id
edited_message_left_chat_member_first_name
edited_message_left_chat_member_last_name
edited_message_left_chat_member_username
edited_message_left_chat_member_language_code
edited_message_new_chat_title
edited_message_new_chat_photo_file_id
edited_message_new_chat_photo_width
edited_message_new_chat_photo_height
edited_message_new_chat_photo_file_size
edited_message_delete_chat_photo
edited_message_group_chat_created
edited_message_supergroup_chat_created
edited_message_channel_chat_created
edited_message_migrate_to_chat_id
edited_message_migrate_from_chat_id
edited_message_reply_to_message_message_id
edited_message_reply_to_message_from_id
edited_message_reply_to_message_from_first_name
edited_message_reply_to_message_from_last_name
edited_message_reply_to_message_username
edited_message_reply_to_message_language_code
edited_message_reply_to_message_date
edited_message_reply_to_message_chat_id
edited_message_reply_to_message_chat_type
edited_message_reply_to_message_chat_title
edited_message_reply_to_message_chat_username
edited_message_reply_to_message_chat_first_name
edited_message_reply_to_message_chat_last_name
edited_message_reply_to_message_chat_all_members_are_administrators
edited_message_reply_to_message_chat_photo
edited_message_reply_to_message_chat_description
edited_message_reply_to_message_chat_invite_link
edited_message_reply_to_message_forward_from_id
edited_message_reply_to_message_forward_from_first_name
edited_message_reply_to_message_forward_from_last_name
edited_message_reply_to_message_forward_from_username
edited_message_reply_to_message_forward_from_language_code
edited_message_reply_to_message_forward_from_chat_id
edited_message_reply_to_message_forward_from_chat_type
edited_message_reply_to_message_forward_from_chat_title
edited_message_reply_to_message_forward_from_chat_username
edited_message_reply_to_message_forward_from_chat_first_name
edited_message_reply_to_message_forward_from_chat_last_name
edited_message_reply_to_message_forward_from_chat_all_members_are_administrators
edited_message_reply_to_message_forward_from_chat_photo
edited_message_reply_to_message_forward_from_chat_description
edited_message_reply_to_message_forward_from_chat_invite_link
edited_message_reply_to_message_forward_from_message_id
edited_message_reply_to_message_forward_date
edited_message_reply_to_message_edit_date
edited_message_reply_to_message_text
edited_message_reply_to_message_entities_type
edited_message_reply_to_message_entities_offset
edited_message_reply_to_message_entities_integer
edited_message_reply_to_message_entities_length
edited_message_reply_to_message_entities_urls
edited_message_reply_to_message_entities_user_id
edited_message_reply_to_message_entities_user_first_name
edited_message_reply_to_message_entities_user_last_name
edited_message_reply_to_message_entities_user_username
edited_message_reply_to_message_entities_user_language
edited_message_reply_to_message_audio_file_id
edited_message_reply_to_message_audio_duration
edited_message_reply_to_message_audio_performer
edited_message_reply_to_message_audio_title
edited_message_reply_to_message_audio_mime_type
edited_message_reply_to_message_audio_file_size
edited_message_reply_to_message_document_file_id
edited_message_reply_to_message_document_thumb_file_id
edited_message_reply_to_message_document_thumb_width
edited_message_reply_to_message_document_thumb_height
edited_message_reply_to_message_document_thumb_file_size
edited_message_reply_to_message_document_file_name
edited_message_reply_to_message_document_mime_type
edited_message_reply_to_message_document_file_size
edited_message_reply_to_message_game_title
edited_message_reply_to_message_game_description
edited_message_reply_to_message_game_photo_file_id
edited_message_reply_to_message_game_photo_width
edited_message_reply_to_message_game_photo_height
edited_message_reply_to_message_game_photo_file_size
edited_message_reply_to_message_game_text
edited_message_reply_to_message_game_text_entities_type
edited_message_reply_to_message_game_text_entities_offset
edited_message_reply_to_message_game_text_entities_length
edited_message_reply_to_message_game_text_entities_url
edited_message_reply_to_message_game_text_entities_user_id
edited_message_reply_to_message_game_text_entities_user_first_name
edited_message_reply_to_message_game_text_entities_user_last_name
edited_message_reply_to_message_game_text_entities_user_username
edited_message_reply_to_message_game_text_entities_user_language_code
edited_message_reply_to_message_game_animation_file_id
edited_message_reply_to_message_game_animation_thumb_file_id
edited_message_reply_to_message_game_animation_thumb_width
edited_message_reply_to_message_game_animation_thumb_height
edited_message_reply_to_message_game_animation_thumb_file_size
edited_message_reply_to_message_photo_file_id
edited_message_reply_to_message_photo_width
edited_message_reply_to_message_photo_height
edited_message_reply_to_message_photo_file_size
edited_message_reply_to_message_sticker_file_id
edited_message_reply_to_message_sticker_width
edited_message_reply_to_message_sticker_height
edited_message_reply_to_message_sticker_thumb_file_id
edited_message_reply_to_message_sticker_thumb_width
edited_message_reply_to_message_sticker_thumb_height
edited_message_reply_to_message_sticker_thumb_file_size
edited_message_reply_to_message_sticker_emoji
edited_message_reply_to_message_sticker_file_size
edited_message_reply_to_message_video_file_id
edited_message_reply_to_message_video_width
edited_message_reply_to_message_video_height
edited_message_reply_to_message_video_duration
edited_message_reply_to_message_video_thumb_file_id
edited_message_reply_to_message_video_thumb_width
edited_message_reply_to_message_video_thumb_height
edited_message_reply_to_message_video_thumb_file_size
edited_message_reply_to_message_video_mime_type
edited_message_reply_to_message_video_file_size
edited_message_reply_to_message_voice_file_id
edited_message_reply_to_message_voice_duration
edited_message_reply_to_message_voice_mime_type
edited_message_reply_to_message_voice_file_size
edited_message_reply_to_message_video_note_file_id
edited_message_reply_to_message_video_note_length
edited_message_reply_to_message_video_note_duration
edited_message_reply_to_message_video_note_thumb_file_id
edited_message_reply_to_message_video_note_thumb_width
edited_message_reply_to_message_video_note_thumb_height
edited_message_reply_to_message_video_note_thumb_file_size
edited_message_reply_to_message_video_note_file_size
edited_message_reply_to_message_new_chat_members_id
edited_message_reply_to_message_new_chat_members_first_name
edited_message_reply_to_message_new_chat_members_last_name
edited_message_reply_to_message_new_chat_members_username
edited_message_reply_to_message_new_chat_members_language_code
edited_message_reply_to_message_caption
edited_message_reply_to_message_contact_phone_number
edited_message_reply_to_message_contact_first_name
edited_message_reply_to_message_contact_last_name
edited_message_reply_to_message_contact_user_id
edited_message_reply_to_message_location_longitude
edited_message_reply_to_message_location_latitude
edited_message_reply_to_message_venue_location
edited_message_reply_to_message_venue_title
edited_message_reply_to_message_venue_address
edited_message_reply_to_message_venue_foursquare_id
edited_message_reply_to_message_new_chat_member_id
edited_message_reply_to_message_new_chat_member_first_name
edited_message_reply_to_message_new_chat_member_last_name
edited_message_reply_to_message_new_chat_member_username
edited_message_reply_to_message_new_chat_member_language_code
edited_message_reply_to_message_left_chat_member_id
edited_message_reply_to_message_left_chat_member_first_name
edited_message_reply_to_message_left_chat_member_last_name
edited_message_reply_to_message_left_chat_member_username
edited_message_reply_to_message_left_chat_member_language_code
edited_message_reply_to_message_new_chat_title
edited_message_reply_to_message_new_chat_photo_file_id
edited_message_reply_to_message_new_chat_photo_width
edited_message_reply_to_message_new_chat_photo_height
edited_message_reply_to_message_new_chat_photo_file_size
edited_message_reply_to_message_delete_chat_photo
edited_message_reply_to_message_group_chat_created
edited_message_reply_to_message_supergroup_chat_created
edited_message_reply_to_message_channel_chat_created
edited_message_reply_to_message_migrate_to_chat_id
edited_message_reply_to_message_migrate_from_chat_id
edited_message_pinned_message_message_id
edited_message_pinned_message_from_id
edited_message_pinned_message_from_first_name
edited_message_pinned_message_from_last_name
edited_message_pinned_message_username
edited_message_pinned_message_language_code
edited_message_pinned_message_date
edited_message_pinned_message_chat_id
edited_message_pinned_message_chat_type
edited_message_pinned_message_chat_title
edited_message_pinned_message_chat_username
edited_message_pinned_message_chat_first_name
edited_message_pinned_message_chat_last_name
edited_message_pinned_message_chat_all_members_are_administrators
edited_message_pinned_message_chat_photo
edited_message_pinned_message_chat_description
edited_message_pinned_message_chat_invite_link
edited_message_pinned_message_forward_from_id
edited_message_pinned_message_forward_from_first_name
edited_message_pinned_message_forward_from_last_name
edited_message_pinned_message_forward_from_username
edited_message_pinned_message_forward_from_language_code
edited_message_pinned_message_forward_from_chat_id
edited_message_pinned_message_forward_from_chat_type
edited_message_pinned_message_forward_from_chat_title
edited_message_pinned_message_forward_from_chat_username
edited_message_pinned_message_forward_from_chat_first_name
edited_message_pinned_message_forward_from_chat_last_name
edited_message_pinned_message_forward_from_chat_all_members_are_administrators
edited_message_pinned_message_forward_from_chat_photo
edited_message_pinned_message_forward_from_chat_description
edited_message_pinned_message_forward_from_chat_invite_link
edited_message_pinned_message_forward_from_message_id
edited_message_pinned_message_forward_date
edited_message_pinned_message_edit_date
edited_message_pinned_message_text
edited_message_pinned_message_entities_type
edited_message_pinned_message_entities_offset
edited_message_pinned_message_entities_integer
edited_message_pinned_message_entities_length
edited_message_pinned_message_entities_urls
edited_message_pinned_message_entities_user_id
edited_message_pinned_message_entities_user_first_name
edited_message_pinned_message_entities_user_last_name
edited_message_pinned_message_entities_user_username
edited_message_pinned_message_entities_user_language
edited_message_pinned_message_audio_file_id
edited_message_pinned_message_audio_duration
edited_message_pinned_message_audio_performer
edited_message_pinned_message_audio_title
edited_message_pinned_message_audio_mime_type
edited_message_pinned_message_audio_file_size
edited_message_pinned_message_document_file_id
edited_message_pinned_message_document_thumb_file_id
edited_message_pinned_message_document_thumb_width
edited_message_pinned_message_document_thumb_height
edited_message_pinned_message_document_thumb_file_size
edited_message_pinned_message_document_file_name
edited_message_pinned_message_document_mime_type
edited_message_pinned_message_document_file_size
edited_message_pinned_message_game_title
edited_message_pinned_message_game_description
edited_message_pinned_message_game_photo_file_id
edited_message_pinned_message_game_photo_width
edited_message_pinned_message_game_photo_height
edited_message_pinned_message_game_photo_file_size
edited_message_pinned_message_game_text
edited_message_pinned_message_game_text_entities_type
edited_message_pinned_message_game_text_entities_offset
edited_message_pinned_message_game_text_entities_length
edited_message_pinned_message_game_text_entities_url
edited_message_pinned_message_game_text_entities_user_id
edited_message_pinned_message_game_text_entities_user_first_name
edited_message_pinned_message_game_text_entities_user_last_name
edited_message_pinned_message_game_text_entities_user_username
edited_message_pinned_message_game_text_entities_user_language_code
edited_message_pinned_message_game_animation_file_id
edited_message_pinned_message_game_animation_thumb_file_id
edited_message_pinned_message_game_animation_thumb_width
edited_message_pinned_message_game_animation_thumb_height
edited_message_pinned_message_game_animation_thumb_file_size
edited_message_pinned_message_photo_file_id
edited_message_pinned_message_photo_width
edited_message_pinned_message_photo_height
edited_message_pinned_message_photo_file_size
edited_message_pinned_message_sticker_file_id
edited_message_pinned_message_sticker_width
edited_message_pinned_message_sticker_height
edited_message_pinned_message_sticker_thumb_file_id
edited_message_pinned_message_sticker_thumb_width
edited_message_pinned_message_sticker_thumb_height
edited_message_pinned_message_sticker_thumb_file_size
edited_message_pinned_message_sticker_emoji
edited_message_pinned_message_sticker_file_size
edited_message_pinned_message_video_file_id
edited_message_pinned_message_video_width
edited_message_pinned_message_video_height
edited_message_pinned_message_video_duration
edited_message_pinned_message_video_thumb_file_id
edited_message_pinned_message_video_thumb_width
edited_message_pinned_message_video_thumb_height
edited_message_pinned_message_video_thumb_file_size
edited_message_pinned_message_video_mime_type
edited_message_pinned_message_video_file_size
edited_message_pinned_message_voice_file_id
edited_message_pinned_message_voice_duration
edited_message_pinned_message_voice_mime_type
edited_message_pinned_message_voice_file_size
edited_message_pinned_message_video_note_file_id
edited_message_pinned_message_video_note_length
edited_message_pinned_message_video_note_duration
edited_message_pinned_message_video_note_thumb_file_id
edited_message_pinned_message_video_note_thumb_width
edited_message_pinned_message_video_note_thumb_height
edited_message_pinned_message_video_note_thumb_file_size
edited_message_pinned_message_video_note_file_size
edited_message_pinned_message_new_chat_members_id
edited_message_pinned_message_new_chat_members_first_name
edited_message_pinned_message_new_chat_members_last_name
edited_message_pinned_message_new_chat_members_username
edited_message_pinned_message_new_chat_members_language_code
edited_message_pinned_message_caption
edited_message_pinned_message_contact_phone_number
edited_message_pinned_message_contact_first_name
edited_message_pinned_message_contact_last_name
edited_message_pinned_message_contact_user_id
edited_message_pinned_message_location_longitude
edited_message_pinned_message_location_latitude
edited_message_pinned_message_venue_location
edited_message_pinned_message_venue_title
edited_message_pinned_message_venue_address
edited_message_pinned_message_venue_foursquare_id
edited_message_pinned_message_new_chat_member_id
edited_message_pinned_message_new_chat_member_first_name
edited_message_pinned_message_new_chat_member_last_name
edited_message_pinned_message_new_chat_member_username
edited_message_pinned_message_new_chat_member_language_code
edited_message_pinned_message_left_chat_member_id
edited_message_pinned_message_left_chat_member_first_name
edited_message_pinned_message_left_chat_member_last_name
edited_message_pinned_message_left_chat_member_username
edited_message_pinned_message_left_chat_member_language_code
edited_message_pinned_message_new_chat_title
edited_message_pinned_message_new_chat_photo_file_id
edited_message_pinned_message_new_chat_photo_width
edited_message_pinned_message_new_chat_photo_height
edited_message_pinned_message_new_chat_photo_file_size
edited_message_pinned_message_delete_chat_photo
edited_message_pinned_message_group_chat_created
edited_message_pinned_message_supergroup_chat_created
edited_message_pinned_message_channel_chat_created
edited_message_pinned_message_migrate_to_chat_id
edited_message_pinned_message_migrate_from_chat_id
channel_post_message_id
channel_post_from_id
channel_post_from_first_name
channel_post_from_last_name
channel_post_username
channel_post_language_code
channel_post_date
channel_post_chat_id
channel_post_chat_type
channel_post_chat_title
channel_post_chat_username
channel_post_chat_first_name
channel_post_chat_last_name
channel_post_chat_all_members_are_administrators
channel_post_chat_photo
channel_post_chat_description
channel_post_chat_invite_link
channel_post_forward_from_id
channel_post_forward_from_first_name
channel_post_forward_from_last_name
channel_post_forward_from_username
channel_post_forward_from_language_code
channel_post_forward_from_chat_id
channel_post_forward_from_chat_type
channel_post_forward_from_chat_title
channel_post_forward_from_chat_username
channel_post_forward_from_chat_first_name
channel_post_forward_from_chat_last_name
channel_post_forward_from_chat_all_members_are_administrators
channel_post_forward_from_chat_photo
channel_post_forward_from_chat_description
channel_post_forward_from_chat_invite_link
channel_post_forward_from_message_id
channel_post_forward_date
channel_post_edit_date
channel_post_text
channel_post_entities_type
channel_post_entities_offset
channel_post_entities_integer
channel_post_entities_length
channel_post_entities_urls
channel_post_entities_user_id
channel_post_entities_user_first_name
channel_post_entities_user_last_name
channel_post_entities_user_username
channel_post_entities_user_language
channel_post_audio_file_id
channel_post_audio_duration
channel_post_audio_performer
channel_post_audio_title
channel_post_audio_mime_type
channel_post_audio_file_size
channel_post_document_file_id
channel_post_document_thumb_file_id
channel_post_document_thumb_width
channel_post_document_thumb_height
channel_post_document_thumb_file_size
channel_post_document_file_name
channel_post_document_mime_type
channel_post_document_file_size
channel_post_game_title
channel_post_game_description
channel_post_game_photo_file_id
channel_post_game_photo_width
channel_post_game_photo_height
channel_post_game_photo_file_size
channel_post_game_text
channel_post_game_text_entities_type
channel_post_game_text_entities_offset
channel_post_game_text_entities_length
channel_post_game_text_entities_url
channel_post_game_text_entities_user_id
channel_post_game_text_entities_user_first_name
channel_post_game_text_entities_user_last_name
channel_post_game_text_entities_user_username
channel_post_game_text_entities_user_language_code
channel_post_game_animation_file_id
channel_post_game_animation_thumb_file_id
channel_post_game_animation_thumb_width
channel_post_game_animation_thumb_height
channel_post_game_animation_thumb_file_size
channel_post_photo_file_id
channel_post_photo_width
channel_post_photo_height
channel_post_photo_file_size
channel_post_sticker_file_id
channel_post_sticker_width
channel_post_sticker_height
channel_post_sticker_thumb_file_id
channel_post_sticker_thumb_width
channel_post_sticker_thumb_height
channel_post_sticker_thumb_file_size
channel_post_sticker_emoji
channel_post_sticker_file_size
channel_post_video_file_id
channel_post_video_width
channel_post_video_height
channel_post_video_duration
channel_post_video_thumb_file_id
channel_post_video_thumb_width
channel_post_video_thumb_height
channel_post_video_thumb_file_size
channel_post_video_mime_type
channel_post_video_file_size
channel_post_voice_file_id
channel_post_voice_duration
channel_post_voice_mime_type
channel_post_voice_file_size
channel_post_video_note_file_id
channel_post_video_note_length
channel_post_video_note_duration
channel_post_video_note_thumb_file_id
channel_post_video_note_thumb_width
channel_post_video_note_thumb_height
channel_post_video_note_thumb_file_size
channel_post_video_note_file_size
channel_post_new_chat_members_id
channel_post_new_chat_members_first_name
channel_post_new_chat_members_last_name
channel_post_new_chat_members_username
channel_post_new_chat_members_language_code
channel_post_caption
channel_post_contact_phone_number
channel_post_contact_first_name
channel_post_contact_last_name
channel_post_contact_user_id
channel_post_location_longitude
channel_post_location_latitude
channel_post_venue_location
channel_post_venue_title
channel_post_venue_address
channel_post_venue_foursquare_id
channel_post_new_chat_member_id
channel_post_new_chat_member_first_name
channel_post_new_chat_member_last_name
channel_post_new_chat_member_username
channel_post_new_chat_member_language_code
channel_post_left_chat_member_id
channel_post_left_chat_member_first_name
channel_post_left_chat_member_last_name
channel_post_left_chat_member_username
channel_post_left_chat_member_language_code
channel_post_new_chat_title
channel_post_new_chat_photo_file_id
channel_post_new_chat_photo_width
channel_post_new_chat_photo_height
channel_post_new_chat_photo_file_size
channel_post_delete_chat_photo
channel_post_group_chat_created
channel_post_supergroup_chat_created
channel_post_channel_chat_created
channel_post_migrate_to_chat_id
channel_post_migrate_from_chat_id
channel_post_reply_to_message_message_id
channel_post_reply_to_message_from_id
channel_post_reply_to_message_from_first_name
channel_post_reply_to_message_from_last_name
channel_post_reply_to_message_username
channel_post_reply_to_message_language_code
channel_post_reply_to_message_date
channel_post_reply_to_message_chat_id
channel_post_reply_to_message_chat_type
channel_post_reply_to_message_chat_title
channel_post_reply_to_message_chat_username
channel_post_reply_to_message_chat_first_name
channel_post_reply_to_message_chat_last_name
channel_post_reply_to_message_chat_all_members_are_administrators
channel_post_reply_to_message_chat_photo
channel_post_reply_to_message_chat_description
channel_post_reply_to_message_chat_invite_link
channel_post_reply_to_message_forward_from_id
channel_post_reply_to_message_forward_from_first_name
channel_post_reply_to_message_forward_from_last_name
channel_post_reply_to_message_forward_from_username
channel_post_reply_to_message_forward_from_language_code
channel_post_reply_to_message_forward_from_chat_id
channel_post_reply_to_message_forward_from_chat_type
channel_post_reply_to_message_forward_from_chat_title
channel_post_reply_to_message_forward_from_chat_username
channel_post_reply_to_message_forward_from_chat_first_name
channel_post_reply_to_message_forward_from_chat_last_name
channel_post_reply_to_message_forward_from_chat_all_members_are_administrators
channel_post_reply_to_message_forward_from_chat_photo
channel_post_reply_to_message_forward_from_chat_description
channel_post_reply_to_message_forward_from_chat_invite_link
channel_post_reply_to_message_forward_from_message_id
channel_post_reply_to_message_forward_date
channel_post_reply_to_message_edit_date
channel_post_reply_to_message_text
channel_post_reply_to_message_entities_type
channel_post_reply_to_message_entities_offset
channel_post_reply_to_message_entities_integer
channel_post_reply_to_message_entities_length
channel_post_reply_to_message_entities_urls
channel_post_reply_to_message_entities_user_id
channel_post_reply_to_message_entities_user_first_name
channel_post_reply_to_message_entities_user_last_name
channel_post_reply_to_message_entities_user_username
channel_post_reply_to_message_entities_user_language
channel_post_reply_to_message_audio_file_id
channel_post_reply_to_message_audio_duration
channel_post_reply_to_message_audio_performer
channel_post_reply_to_message_audio_title
channel_post_reply_to_message_audio_mime_type
channel_post_reply_to_message_audio_file_size
channel_post_reply_to_message_document_file_id
channel_post_reply_to_message_document_thumb_file_id
channel_post_reply_to_message_document_thumb_width
channel_post_reply_to_message_document_thumb_height
channel_post_reply_to_message_document_thumb_file_size
channel_post_reply_to_message_document_file_name
channel_post_reply_to_message_document_mime_type
channel_post_reply_to_message_document_file_size
channel_post_reply_to_message_game_title
channel_post_reply_to_message_game_description
channel_post_reply_to_message_game_photo_file_id
channel_post_reply_to_message_game_photo_width
channel_post_reply_to_message_game_photo_height
channel_post_reply_to_message_game_photo_file_size
channel_post_reply_to_message_game_text
channel_post_reply_to_message_game_text_entities_type
channel_post_reply_to_message_game_text_entities_offset
channel_post_reply_to_message_game_text_entities_length
channel_post_reply_to_message_game_text_entities_url
channel_post_reply_to_message_game_text_entities_user_id
channel_post_reply_to_message_game_text_entities_user_first_name
channel_post_reply_to_message_game_text_entities_user_last_name
channel_post_reply_to_message_game_text_entities_user_username
channel_post_reply_to_message_game_text_entities_user_language_code
channel_post_reply_to_message_game_animation_file_id
channel_post_reply_to_message_game_animation_thumb_file_id
channel_post_reply_to_message_game_animation_thumb_width
channel_post_reply_to_message_game_animation_thumb_height
channel_post_reply_to_message_game_animation_thumb_file_size
channel_post_reply_to_message_photo_file_id
channel_post_reply_to_message_photo_width
channel_post_reply_to_message_photo_height
channel_post_reply_to_message_photo_file_size
channel_post_reply_to_message_sticker_file_id
channel_post_reply_to_message_sticker_width
channel_post_reply_to_message_sticker_height
channel_post_reply_to_message_sticker_thumb_file_id
channel_post_reply_to_message_sticker_thumb_width
channel_post_reply_to_message_sticker_thumb_height
channel_post_reply_to_message_sticker_thumb_file_size
channel_post_reply_to_message_sticker_emoji
channel_post_reply_to_message_sticker_file_size
channel_post_reply_to_message_video_file_id
channel_post_reply_to_message_video_width
channel_post_reply_to_message_video_height
channel_post_reply_to_message_video_duration
channel_post_reply_to_message_video_thumb_file_id
channel_post_reply_to_message_video_thumb_width
channel_post_reply_to_message_video_thumb_height
channel_post_reply_to_message_video_thumb_file_size
channel_post_reply_to_message_video_mime_type
channel_post_reply_to_message_video_file_size
channel_post_reply_to_message_voice_file_id
channel_post_reply_to_message_voice_duration
channel_post_reply_to_message_voice_mime_type
channel_post_reply_to_message_voice_file_size
channel_post_reply_to_message_video_note_file_id
channel_post_reply_to_message_video_note_length
channel_post_reply_to_message_video_note_duration
channel_post_reply_to_message_video_note_thumb_file_id
channel_post_reply_to_message_video_note_thumb_width
channel_post_reply_to_message_video_note_thumb_height
channel_post_reply_to_message_video_note_thumb_file_size
channel_post_reply_to_message_video_note_file_size
channel_post_reply_to_message_new_chat_members_id
channel_post_reply_to_message_new_chat_members_first_name
channel_post_reply_to_message_new_chat_members_last_name
channel_post_reply_to_message_new_chat_members_username
channel_post_reply_to_message_new_chat_members_language_code
channel_post_reply_to_message_caption
channel_post_reply_to_message_contact_phone_number
channel_post_reply_to_message_contact_first_name
channel_post_reply_to_message_contact_last_name
channel_post_reply_to_message_contact_user_id
channel_post_reply_to_message_location_longitude
channel_post_reply_to_message_location_latitude
channel_post_reply_to_message_venue_location
channel_post_reply_to_message_venue_title
channel_post_reply_to_message_venue_address
channel_post_reply_to_message_venue_foursquare_id
channel_post_reply_to_message_new_chat_member_id
channel_post_reply_to_message_new_chat_member_first_name
channel_post_reply_to_message_new_chat_member_last_name
channel_post_reply_to_message_new_chat_member_username
channel_post_reply_to_message_new_chat_member_language_code
channel_post_reply_to_message_left_chat_member_id
channel_post_reply_to_message_left_chat_member_first_name
channel_post_reply_to_message_left_chat_member_last_name
channel_post_reply_to_message_left_chat_member_username
channel_post_reply_to_message_left_chat_member_language_code
channel_post_reply_to_message_new_chat_title
channel_post_reply_to_message_new_chat_photo_file_id
channel_post_reply_to_message_new_chat_photo_width
channel_post_reply_to_message_new_chat_photo_height
channel_post_reply_to_message_new_chat_photo_file_size
channel_post_reply_to_message_delete_chat_photo
channel_post_reply_to_message_group_chat_created
channel_post_reply_to_message_supergroup_chat_created
channel_post_reply_to_message_channel_chat_created
channel_post_reply_to_message_migrate_to_chat_id
channel_post_reply_to_message_migrate_from_chat_id
channel_post_pinned_message_message_id
channel_post_pinned_message_from_id
channel_post_pinned_message_from_first_name
channel_post_pinned_message_from_last_name
channel_post_pinned_message_username
channel_post_pinned_message_language_code
channel_post_pinned_message_date
channel_post_pinned_message_chat_id
channel_post_pinned_message_chat_type
channel_post_pinned_message_chat_title
channel_post_pinned_message_chat_username
channel_post_pinned_message_chat_first_name
channel_post_pinned_message_chat_last_name
channel_post_pinned_message_chat_all_members_are_administrators
channel_post_pinned_message_chat_photo
channel_post_pinned_message_chat_description
channel_post_pinned_message_chat_invite_link
channel_post_pinned_message_forward_from_id
channel_post_pinned_message_forward_from_first_name
channel_post_pinned_message_forward_from_last_name
channel_post_pinned_message_forward_from_username
channel_post_pinned_message_forward_from_language_code
channel_post_pinned_message_forward_from_chat_id
channel_post_pinned_message_forward_from_chat_type
channel_post_pinned_message_forward_from_chat_title
channel_post_pinned_message_forward_from_chat_username
channel_post_pinned_message_forward_from_chat_first_name
channel_post_pinned_message_forward_from_chat_last_name
channel_post_pinned_message_forward_from_chat_all_members_are_administrators
channel_post_pinned_message_forward_from_chat_photo
channel_post_pinned_message_forward_from_chat_description
channel_post_pinned_message_forward_from_chat_invite_link
channel_post_pinned_message_forward_from_message_id
channel_post_pinned_message_forward_date
channel_post_pinned_message_edit_date
channel_post_pinned_message_text
channel_post_pinned_message_entities_type
channel_post_pinned_message_entities_offset
channel_post_pinned_message_entities_integer
channel_post_pinned_message_entities_length
channel_post_pinned_message_entities_urls
channel_post_pinned_message_entities_user_id
channel_post_pinned_message_entities_user_first_name
channel_post_pinned_message_entities_user_last_name
channel_post_pinned_message_entities_user_username
channel_post_pinned_message_entities_user_language
channel_post_pinned_message_audio_file_id
channel_post_pinned_message_audio_duration
channel_post_pinned_message_audio_performer
channel_post_pinned_message_audio_title
channel_post_pinned_message_audio_mime_type
channel_post_pinned_message_audio_file_size
channel_post_pinned_message_document_file_id
channel_post_pinned_message_document_thumb_file_id
channel_post_pinned_message_document_thumb_width
channel_post_pinned_message_document_thumb_height
channel_post_pinned_message_document_thumb_file_size
channel_post_pinned_message_document_file_name
channel_post_pinned_message_document_mime_type
channel_post_pinned_message_document_file_size
channel_post_pinned_message_game_title
channel_post_pinned_message_game_description
channel_post_pinned_message_game_photo_file_id
channel_post_pinned_message_game_photo_width
channel_post_pinned_message_game_photo_height
channel_post_pinned_message_game_photo_file_size
channel_post_pinned_message_game_text
channel_post_pinned_message_game_text_entities_type
channel_post_pinned_message_game_text_entities_offset
channel_post_pinned_message_game_text_entities_length
channel_post_pinned_message_game_text_entities_url
channel_post_pinned_message_game_text_entities_user_id
channel_post_pinned_message_game_text_entities_user_first_name
channel_post_pinned_message_game_text_entities_user_last_name
channel_post_pinned_message_game_text_entities_user_username
channel_post_pinned_message_game_text_entities_user_language_code
channel_post_pinned_message_game_animation_file_id
channel_post_pinned_message_game_animation_thumb_file_id
channel_post_pinned_message_game_animation_thumb_width
channel_post_pinned_message_game_animation_thumb_height
channel_post_pinned_message_game_animation_thumb_file_size
channel_post_pinned_message_photo_file_id
channel_post_pinned_message_photo_width
channel_post_pinned_message_photo_height
channel_post_pinned_message_photo_file_size
channel_post_pinned_message_sticker_file_id
channel_post_pinned_message_sticker_width
channel_post_pinned_message_sticker_height
channel_post_pinned_message_sticker_thumb_file_id
channel_post_pinned_message_sticker_thumb_width
channel_post_pinned_message_sticker_thumb_height
channel_post_pinned_message_sticker_thumb_file_size
channel_post_pinned_message_sticker_emoji
channel_post_pinned_message_sticker_file_size
channel_post_pinned_message_video_file_id
channel_post_pinned_message_video_width
channel_post_pinned_message_video_height
channel_post_pinned_message_video_duration
channel_post_pinned_message_video_thumb_file_id
channel_post_pinned_message_video_thumb_width
channel_post_pinned_message_video_thumb_height
channel_post_pinned_message_video_thumb_file_size
channel_post_pinned_message_video_mime_type
channel_post_pinned_message_video_file_size
channel_post_pinned_message_voice_file_id
channel_post_pinned_message_voice_duration
channel_post_pinned_message_voice_mime_type
channel_post_pinned_message_voice_file_size
channel_post_pinned_message_video_note_file_id
channel_post_pinned_message_video_note_length
channel_post_pinned_message_video_note_duration
channel_post_pinned_message_video_note_thumb_file_id
channel_post_pinned_message_video_note_thumb_width
channel_post_pinned_message_video_note_thumb_height
channel_post_pinned_message_video_note_thumb_file_size
channel_post_pinned_message_video_note_file_size
channel_post_pinned_message_new_chat_members_id
channel_post_pinned_message_new_chat_members_first_name
channel_post_pinned_message_new_chat_members_last_name
channel_post_pinned_message_new_chat_members_username
channel_post_pinned_message_new_chat_members_language_code
channel_post_pinned_message_caption
channel_post_pinned_message_contact_phone_number
channel_post_pinned_message_contact_first_name
channel_post_pinned_message_contact_last_name
channel_post_pinned_message_contact_user_id
channel_post_pinned_message_location_longitude
channel_post_pinned_message_location_latitude
channel_post_pinned_message_venue_location
channel_post_pinned_message_venue_title
channel_post_pinned_message_venue_address
channel_post_pinned_message_venue_foursquare_id
channel_post_pinned_message_new_chat_member_id
channel_post_pinned_message_new_chat_member_first_name
channel_post_pinned_message_new_chat_member_last_name
channel_post_pinned_message_new_chat_member_username
channel_post_pinned_message_new_chat_member_language_code
channel_post_pinned_message_left_chat_member_id
channel_post_pinned_message_left_chat_member_first_name
channel_post_pinned_message_left_chat_member_last_name
channel_post_pinned_message_left_chat_member_username
channel_post_pinned_message_left_chat_member_language_code
channel_post_pinned_message_new_chat_title
channel_post_pinned_message_new_chat_photo_file_id
channel_post_pinned_message_new_chat_photo_width
channel_post_pinned_message_new_chat_photo_height
channel_post_pinned_message_new_chat_photo_file_size
channel_post_pinned_message_delete_chat_photo
channel_post_pinned_message_group_chat_created
channel_post_pinned_message_supergroup_chat_created
channel_post_pinned_message_channel_chat_created
channel_post_pinned_message_migrate_to_chat_id
channel_post_pinned_message_migrate_from_chat_id
edited_channel_post_message_id
edited_channel_post_from_id
edited_channel_post_from_first_name
edited_channel_post_from_last_name
edited_channel_post_username
edited_channel_post_language_code
edited_channel_post_date
edited_channel_post_chat_id
edited_channel_post_chat_type
edited_channel_post_chat_title
edited_channel_post_chat_username
edited_channel_post_chat_first_name
edited_channel_post_chat_last_name
edited_channel_post_chat_all_members_are_administrators
edited_channel_post_chat_photo
edited_channel_post_chat_description
edited_channel_post_chat_invite_link
edited_channel_post_forward_from_id
edited_channel_post_forward_from_first_name
edited_channel_post_forward_from_last_name
edited_channel_post_forward_from_username
edited_channel_post_forward_from_language_code
edited_channel_post_forward_from_chat_id
edited_channel_post_forward_from_chat_type
edited_channel_post_forward_from_chat_title
edited_channel_post_forward_from_chat_username
edited_channel_post_forward_from_chat_first_name
edited_channel_post_forward_from_chat_last_name
edited_channel_post_forward_from_chat_all_members_are_administrators
edited_channel_post_forward_from_chat_photo
edited_channel_post_forward_from_chat_description
edited_channel_post_forward_from_chat_invite_link
edited_channel_post_forward_from_message_id
edited_channel_post_forward_date
edited_channel_post_edit_date
edited_channel_post_text
edited_channel_post_entities_type
edited_channel_post_entities_offset
edited_channel_post_entities_integer
edited_channel_post_entities_length
edited_channel_post_entities_urls
edited_channel_post_entities_user_id
edited_channel_post_entities_user_first_name
edited_channel_post_entities_user_last_name
edited_channel_post_entities_user_username
edited_channel_post_entities_user_language
edited_channel_post_audio_file_id
edited_channel_post_audio_duration
edited_channel_post_audio_performer
edited_channel_post_audio_title
edited_channel_post_audio_mime_type
edited_channel_post_audio_file_size
edited_channel_post_document_file_id
edited_channel_post_document_thumb_file_id
edited_channel_post_document_thumb_width
edited_channel_post_document_thumb_height
edited_channel_post_document_thumb_file_size
edited_channel_post_document_file_name
edited_channel_post_document_mime_type
edited_channel_post_document_file_size
edited_channel_post_game_title
edited_channel_post_game_description
edited_channel_post_game_photo_file_id
edited_channel_post_game_photo_width
edited_channel_post_game_photo_height
edited_channel_post_game_photo_file_size
edited_channel_post_game_text
edited_channel_post_game_text_entities_type
edited_channel_post_game_text_entities_offset
edited_channel_post_game_text_entities_length
edited_channel_post_game_text_entities_url
edited_channel_post_game_text_entities_user_id
edited_channel_post_game_text_entities_user_first_name
edited_channel_post_game_text_entities_user_last_name
edited_channel_post_game_text_entities_user_username
edited_channel_post_game_text_entities_user_language_code
edited_channel_post_game_animation_file_id
edited_channel_post_game_animation_thumb_file_id
edited_channel_post_game_animation_thumb_width
edited_channel_post_game_animation_thumb_height
edited_channel_post_game_animation_thumb_file_size
edited_channel_post_photo_file_id
edited_channel_post_photo_width
edited_channel_post_photo_height
edited_channel_post_photo_file_size
edited_channel_post_sticker_file_id
edited_channel_post_sticker_width
edited_channel_post_sticker_height
edited_channel_post_sticker_thumb_file_id
edited_channel_post_sticker_thumb_width
edited_channel_post_sticker_thumb_height
edited_channel_post_sticker_thumb_file_size
edited_channel_post_sticker_emoji
edited_channel_post_sticker_file_size
edited_channel_post_video_file_id
edited_channel_post_video_width
edited_channel_post_video_height
edited_channel_post_video_duration
edited_channel_post_video_thumb_file_id
edited_channel_post_video_thumb_width
edited_channel_post_video_thumb_height
edited_channel_post_video_thumb_file_size
edited_channel_post_video_mime_type
edited_channel_post_video_file_size
edited_channel_post_voice_file_id
edited_channel_post_voice_duration
edited_channel_post_voice_mime_type
edited_channel_post_voice_file_size
edited_channel_post_video_note_file_id
edited_channel_post_video_note_length
edited_channel_post_video_note_duration
edited_channel_post_video_note_thumb_file_id
edited_channel_post_video_note_thumb_width
edited_channel_post_video_note_thumb_height
edited_channel_post_video_note_thumb_file_size
edited_channel_post_video_note_file_size
edited_channel_post_new_chat_members_id
edited_channel_post_new_chat_members_first_name
edited_channel_post_new_chat_members_last_name
edited_channel_post_new_chat_members_username
edited_channel_post_new_chat_members_language_code
edited_channel_post_caption
edited_channel_post_contact_phone_number
edited_channel_post_contact_first_name
edited_channel_post_contact_last_name
edited_channel_post_contact_user_id
edited_channel_post_location_longitude
edited_channel_post_location_latitude
edited_channel_post_venue_location
edited_channel_post_venue_title
edited_channel_post_venue_address
edited_channel_post_venue_foursquare_id
edited_channel_post_new_chat_member_id
edited_channel_post_new_chat_member_first_name
edited_channel_post_new_chat_member_last_name
edited_channel_post_new_chat_member_username
edited_channel_post_new_chat_member_language_code
edited_channel_post_left_chat_member_id
edited_channel_post_left_chat_member_first_name
edited_channel_post_left_chat_member_last_name
edited_channel_post_left_chat_member_username
edited_channel_post_left_chat_member_language_code
edited_channel_post_new_chat_title
edited_channel_post_new_chat_photo_file_id
edited_channel_post_new_chat_photo_width
edited_channel_post_new_chat_photo_height
edited_channel_post_new_chat_photo_file_size
edited_channel_post_delete_chat_photo
edited_channel_post_group_chat_created
edited_channel_post_supergroup_chat_created
edited_channel_post_channel_chat_created
edited_channel_post_migrate_to_chat_id
edited_channel_post_migrate_from_chat_id
edited_channel_post_reply_to_message_message_id
edited_channel_post_reply_to_message_from_id
edited_channel_post_reply_to_message_from_first_name
edited_channel_post_reply_to_message_from_last_name
edited_channel_post_reply_to_message_username
edited_channel_post_reply_to_message_language_code
edited_channel_post_reply_to_message_date
edited_channel_post_reply_to_message_chat_id
edited_channel_post_reply_to_message_chat_type
edited_channel_post_reply_to_message_chat_title
edited_channel_post_reply_to_message_chat_username
edited_channel_post_reply_to_message_chat_first_name
edited_channel_post_reply_to_message_chat_last_name
edited_channel_post_reply_to_message_chat_all_members_are_administrators
edited_channel_post_reply_to_message_chat_photo
edited_channel_post_reply_to_message_chat_description
edited_channel_post_reply_to_message_chat_invite_link
edited_channel_post_reply_to_message_forward_from_id
edited_channel_post_reply_to_message_forward_from_first_name
edited_channel_post_reply_to_message_forward_from_last_name
edited_channel_post_reply_to_message_forward_from_username
edited_channel_post_reply_to_message_forward_from_language_code
edited_channel_post_reply_to_message_forward_from_chat_id
edited_channel_post_reply_to_message_forward_from_chat_type
edited_channel_post_reply_to_message_forward_from_chat_title
edited_channel_post_reply_to_message_forward_from_chat_username
edited_channel_post_reply_to_message_forward_from_chat_first_name
edited_channel_post_reply_to_message_forward_from_chat_last_name
edited_channel_post_reply_to_message_forward_from_chat_all_members_are_administrators
edited_channel_post_reply_to_message_forward_from_chat_photo
edited_channel_post_reply_to_message_forward_from_chat_description
edited_channel_post_reply_to_message_forward_from_chat_invite_link
edited_channel_post_reply_to_message_forward_from_message_id
edited_channel_post_reply_to_message_forward_date
edited_channel_post_reply_to_message_edit_date
edited_channel_post_reply_to_message_text
edited_channel_post_reply_to_message_entities_type
edited_channel_post_reply_to_message_entities_offset
edited_channel_post_reply_to_message_entities_integer
edited_channel_post_reply_to_message_entities_length
edited_channel_post_reply_to_message_entities_urls
edited_channel_post_reply_to_message_entities_user_id
edited_channel_post_reply_to_message_entities_user_first_name
edited_channel_post_reply_to_message_entities_user_last_name
edited_channel_post_reply_to_message_entities_user_username
edited_channel_post_reply_to_message_entities_user_language
edited_channel_post_reply_to_message_audio_file_id
edited_channel_post_reply_to_message_audio_duration
edited_channel_post_reply_to_message_audio_performer
edited_channel_post_reply_to_message_audio_title
edited_channel_post_reply_to_message_audio_mime_type
edited_channel_post_reply_to_message_audio_file_size
edited_channel_post_reply_to_message_document_file_id
edited_channel_post_reply_to_message_document_thumb_file_id
edited_channel_post_reply_to_message_document_thumb_width
edited_channel_post_reply_to_message_document_thumb_height
edited_channel_post_reply_to_message_document_thumb_file_size
edited_channel_post_reply_to_message_document_file_name
edited_channel_post_reply_to_message_document_mime_type
edited_channel_post_reply_to_message_document_file_size
edited_channel_post_reply_to_message_game_title
edited_channel_post_reply_to_message_game_description
edited_channel_post_reply_to_message_game_photo_file_id
edited_channel_post_reply_to_message_game_photo_width
edited_channel_post_reply_to_message_game_photo_height
edited_channel_post_reply_to_message_game_photo_file_size
edited_channel_post_reply_to_message_game_text
edited_channel_post_reply_to_message_game_text_entities_type
edited_channel_post_reply_to_message_game_text_entities_offset
edited_channel_post_reply_to_message_game_text_entities_length
edited_channel_post_reply_to_message_game_text_entities_url
edited_channel_post_reply_to_message_game_text_entities_user_id
edited_channel_post_reply_to_message_game_text_entities_user_first_name
edited_channel_post_reply_to_message_game_text_entities_user_last_name
edited_channel_post_reply_to_message_game_text_entities_user_username
edited_channel_post_reply_to_message_game_text_entities_user_language_code
edited_channel_post_reply_to_message_game_animation_file_id
edited_channel_post_reply_to_message_game_animation_thumb_file_id
edited_channel_post_reply_to_message_game_animation_thumb_width
edited_channel_post_reply_to_message_game_animation_thumb_height
edited_channel_post_reply_to_message_game_animation_thumb_file_size
edited_channel_post_reply_to_message_photo_file_id
edited_channel_post_reply_to_message_photo_width
edited_channel_post_reply_to_message_photo_height
edited_channel_post_reply_to_message_photo_file_size
edited_channel_post_reply_to_message_sticker_file_id
edited_channel_post_reply_to_message_sticker_width
edited_channel_post_reply_to_message_sticker_height
edited_channel_post_reply_to_message_sticker_thumb_file_id
edited_channel_post_reply_to_message_sticker_thumb_width
edited_channel_post_reply_to_message_sticker_thumb_height
edited_channel_post_reply_to_message_sticker_thumb_file_size
edited_channel_post_reply_to_message_sticker_emoji
edited_channel_post_reply_to_message_sticker_file_size
edited_channel_post_reply_to_message_video_file_id
edited_channel_post_reply_to_message_video_width
edited_channel_post_reply_to_message_video_height
edited_channel_post_reply_to_message_video_duration
edited_channel_post_reply_to_message_video_thumb_file_id
edited_channel_post_reply_to_message_video_thumb_width
edited_channel_post_reply_to_message_video_thumb_height
edited_channel_post_reply_to_message_video_thumb_file_size
edited_channel_post_reply_to_message_video_mime_type
edited_channel_post_reply_to_message_video_file_size
edited_channel_post_reply_to_message_voice_file_id
edited_channel_post_reply_to_message_voice_duration
edited_channel_post_reply_to_message_voice_mime_type
edited_channel_post_reply_to_message_voice_file_size
edited_channel_post_reply_to_message_video_note_file_id
edited_channel_post_reply_to_message_video_note_length
edited_channel_post_reply_to_message_video_note_duration
edited_channel_post_reply_to_message_video_note_thumb_file_id
edited_channel_post_reply_to_message_video_note_thumb_width
edited_channel_post_reply_to_message_video_note_thumb_height
edited_channel_post_reply_to_message_video_note_thumb_file_size
edited_channel_post_reply_to_message_video_note_file_size
edited_channel_post_reply_to_message_new_chat_members_id
edited_channel_post_reply_to_message_new_chat_members_first_name
edited_channel_post_reply_to_message_new_chat_members_last_name
edited_channel_post_reply_to_message_new_chat_members_username
edited_channel_post_reply_to_message_new_chat_members_language_code
edited_channel_post_reply_to_message_caption
edited_channel_post_reply_to_message_contact_phone_number
edited_channel_post_reply_to_message_contact_first_name
edited_channel_post_reply_to_message_contact_last_name
edited_channel_post_reply_to_message_contact_user_id
edited_channel_post_reply_to_message_location_longitude
edited_channel_post_reply_to_message_location_latitude
edited_channel_post_reply_to_message_venue_location
edited_channel_post_reply_to_message_venue_title
edited_channel_post_reply_to_message_venue_address
edited_channel_post_reply_to_message_venue_foursquare_id
edited_channel_post_reply_to_message_new_chat_member_id
edited_channel_post_reply_to_message_new_chat_member_first_name
edited_channel_post_reply_to_message_new_chat_member_last_name
edited_channel_post_reply_to_message_new_chat_member_username
edited_channel_post_reply_to_message_new_chat_member_language_code
edited_channel_post_reply_to_message_left_chat_member_id
edited_channel_post_reply_to_message_left_chat_member_first_name
edited_channel_post_reply_to_message_left_chat_member_last_name
edited_channel_post_reply_to_message_left_chat_member_username
edited_channel_post_reply_to_message_left_chat_member_language_code
edited_channel_post_reply_to_message_new_chat_title
edited_channel_post_reply_to_message_new_chat_photo_file_id
edited_channel_post_reply_to_message_new_chat_photo_width
edited_channel_post_reply_to_message_new_chat_photo_height
edited_channel_post_reply_to_message_new_chat_photo_file_size
edited_channel_post_reply_to_message_delete_chat_photo
edited_channel_post_reply_to_message_group_chat_created
edited_channel_post_reply_to_message_supergroup_chat_created
edited_channel_post_reply_to_message_channel_chat_created
edited_channel_post_reply_to_message_migrate_to_chat_id
edited_channel_post_reply_to_message_migrate_from_chat_id
edited_channel_post_pinned_message_message_id
edited_channel_post_pinned_message_from_id
edited_channel_post_pinned_message_from_first_name
edited_channel_post_pinned_message_from_last_name
edited_channel_post_pinned_message_username
edited_channel_post_pinned_message_language_code
edited_channel_post_pinned_message_date
edited_channel_post_pinned_message_chat_id
edited_channel_post_pinned_message_chat_type
edited_channel_post_pinned_message_chat_title
edited_channel_post_pinned_message_chat_username
edited_channel_post_pinned_message_chat_first_name
edited_channel_post_pinned_message_chat_last_name
edited_channel_post_pinned_message_chat_all_members_are_administrators
edited_channel_post_pinned_message_chat_photo
edited_channel_post_pinned_message_chat_description
edited_channel_post_pinned_message_chat_invite_link
edited_channel_post_pinned_message_forward_from_id
edited_channel_post_pinned_message_forward_from_first_name
edited_channel_post_pinned_message_forward_from_last_name
edited_channel_post_pinned_message_forward_from_username
edited_channel_post_pinned_message_forward_from_language_code
edited_channel_post_pinned_message_forward_from_chat_id
edited_channel_post_pinned_message_forward_from_chat_type
edited_channel_post_pinned_message_forward_from_chat_title
edited_channel_post_pinned_message_forward_from_chat_username
edited_channel_post_pinned_message_forward_from_chat_first_name
edited_channel_post_pinned_message_forward_from_chat_last_name
edited_channel_post_pinned_message_forward_from_chat_all_members_are_administrators
edited_channel_post_pinned_message_forward_from_chat_photo
edited_channel_post_pinned_message_forward_from_chat_description
edited_channel_post_pinned_message_forward_from_chat_invite_link
edited_channel_post_pinned_message_forward_from_message_id
edited_channel_post_pinned_message_forward_date
edited_channel_post_pinned_message_edit_date
edited_channel_post_pinned_message_text
edited_channel_post_pinned_message_entities_type
edited_channel_post_pinned_message_entities_offset
edited_channel_post_pinned_message_entities_integer
edited_channel_post_pinned_message_entities_length
edited_channel_post_pinned_message_entities_urls
edited_channel_post_pinned_message_entities_user_id
edited_channel_post_pinned_message_entities_user_first_name
edited_channel_post_pinned_message_entities_user_last_name
edited_channel_post_pinned_message_entities_user_username
edited_channel_post_pinned_message_entities_user_language
edited_channel_post_pinned_message_audio_file_id
edited_channel_post_pinned_message_audio_duration
edited_channel_post_pinned_message_audio_performer
edited_channel_post_pinned_message_audio_title
edited_channel_post_pinned_message_audio_mime_type
edited_channel_post_pinned_message_audio_file_size
edited_channel_post_pinned_message_document_file_id
edited_channel_post_pinned_message_document_thumb_file_id
edited_channel_post_pinned_message_document_thumb_width
edited_channel_post_pinned_message_document_thumb_height
edited_channel_post_pinned_message_document_thumb_file_size
edited_channel_post_pinned_message_document_file_name
edited_channel_post_pinned_message_document_mime_type
edited_channel_post_pinned_message_document_file_size
edited_channel_post_pinned_message_game_title
edited_channel_post_pinned_message_game_description
edited_channel_post_pinned_message_game_photo_file_id
edited_channel_post_pinned_message_game_photo_width
edited_channel_post_pinned_message_game_photo_height
edited_channel_post_pinned_message_game_photo_file_size
edited_channel_post_pinned_message_game_text
edited_channel_post_pinned_message_game_text_entities_type
edited_channel_post_pinned_message_game_text_entities_offset
edited_channel_post_pinned_message_game_text_entities_length
edited_channel_post_pinned_message_game_text_entities_url
edited_channel_post_pinned_message_game_text_entities_user_id
edited_channel_post_pinned_message_game_text_entities_user_first_name
edited_channel_post_pinned_message_game_text_entities_user_last_name
edited_channel_post_pinned_message_game_text_entities_user_username
edited_channel_post_pinned_message_game_text_entities_user_language_code
edited_channel_post_pinned_message_game_animation_file_id
edited_channel_post_pinned_message_game_animation_thumb_file_id
edited_channel_post_pinned_message_game_animation_thumb_width
edited_channel_post_pinned_message_game_animation_thumb_height
edited_channel_post_pinned_message_game_animation_thumb_file_size
edited_channel_post_pinned_message_photo_file_id
edited_channel_post_pinned_message_photo_width
edited_channel_post_pinned_message_photo_height
edited_channel_post_pinned_message_photo_file_size
edited_channel_post_pinned_message_sticker_file_id
edited_channel_post_pinned_message_sticker_width
edited_channel_post_pinned_message_sticker_height
edited_channel_post_pinned_message_sticker_thumb_file_id
edited_channel_post_pinned_message_sticker_thumb_width
edited_channel_post_pinned_message_sticker_thumb_height
edited_channel_post_pinned_message_sticker_thumb_file_size
edited_channel_post_pinned_message_sticker_emoji
edited_channel_post_pinned_message_sticker_file_size
edited_channel_post_pinned_message_video_file_id
edited_channel_post_pinned_message_video_width
edited_channel_post_pinned_message_video_height
edited_channel_post_pinned_message_video_duration
edited_channel_post_pinned_message_video_thumb_file_id
edited_channel_post_pinned_message_video_thumb_width
edited_channel_post_pinned_message_video_thumb_height
edited_channel_post_pinned_message_video_thumb_file_size
edited_channel_post_pinned_message_video_mime_type
edited_channel_post_pinned_message_video_file_size
edited_channel_post_pinned_message_voice_file_id
edited_channel_post_pinned_message_voice_duration
edited_channel_post_pinned_message_voice_mime_type
edited_channel_post_pinned_message_voice_file_size
edited_channel_post_pinned_message_video_note_file_id
edited_channel_post_pinned_message_video_note_length
edited_channel_post_pinned_message_video_note_duration
edited_channel_post_pinned_message_video_note_thumb_file_id
edited_channel_post_pinned_message_video_note_thumb_width
edited_channel_post_pinned_message_video_note_thumb_height
edited_channel_post_pinned_message_video_note_thumb_file_size
edited_channel_post_pinned_message_video_note_file_size
edited_channel_post_pinned_message_new_chat_members_id
edited_channel_post_pinned_message_new_chat_members_first_name
edited_channel_post_pinned_message_new_chat_members_last_name
edited_channel_post_pinned_message_new_chat_members_username
edited_channel_post_pinned_message_new_chat_members_language_code
edited_channel_post_pinned_message_caption
edited_channel_post_pinned_message_contact_phone_number
edited_channel_post_pinned_message_contact_first_name
edited_channel_post_pinned_message_contact_last_name
edited_channel_post_pinned_message_contact_user_id
edited_channel_post_pinned_message_location_longitude
edited_channel_post_pinned_message_location_latitude
edited_channel_post_pinned_message_venue_location
edited_channel_post_pinned_message_venue_title
edited_channel_post_pinned_message_venue_address
edited_channel_post_pinned_message_venue_foursquare_id
edited_channel_post_pinned_message_new_chat_member_id
edited_channel_post_pinned_message_new_chat_member_first_name
edited_channel_post_pinned_message_new_chat_member_last_name
edited_channel_post_pinned_message_new_chat_member_username
edited_channel_post_pinned_message_new_chat_member_language_code
edited_channel_post_pinned_message_left_chat_member_id
edited_channel_post_pinned_message_left_chat_member_first_name
edited_channel_post_pinned_message_left_chat_member_last_name
edited_channel_post_pinned_message_left_chat_member_username
edited_channel_post_pinned_message_left_chat_member_language_code
edited_channel_post_pinned_message_new_chat_title
edited_channel_post_pinned_message_new_chat_photo_file_id
edited_channel_post_pinned_message_new_chat_photo_width
edited_channel_post_pinned_message_new_chat_photo_height
edited_channel_post_pinned_message_new_chat_photo_file_size
edited_channel_post_pinned_message_delete_chat_photo
edited_channel_post_pinned_message_group_chat_created
edited_channel_post_pinned_message_supergroup_chat_created
edited_channel_post_pinned_message_channel_chat_created
edited_channel_post_pinned_message_migrate_to_chat_id
edited_channel_post_pinned_message_migrate_from_chat_id
inline_query_id
inline_query_from_id
inline_query_from_first_name
inline_query_from_last_name
inline_query_from_username
inline_query_from_language_code
inline_query_location_longitude
inline_query_location_latitude
inline_query_query
inline_query_offset
chosen_inline_result_result_id
chosen_inline_result_from_id
chosen_inline_result_from_first_name
chosen_inline_result_from_last_name
chosen_inline_result_from_username
chosen_inline_result_from_language_code
chosen_inline_result_location_longitude
chosen_inline_result_location_latitude
chosen_inline_result_inline_message_id
chosen_inline_result_query
callback_query_id
callback_query_from_id
callback_query_from_first_name
callback_query_from_last_name
callback_query_from_username
callback_query_from_language_code
callback_query_message_message_id
callback_query_message_from_id
callback_query_message_from_first_name
callback_query_message_from_last_name
callback_query_message_username
callback_query_message_language_code
callback_query_message_date
callback_query_message_chat_id
callback_query_message_chat_type
callback_query_message_chat_title
callback_query_message_chat_username
callback_query_message_chat_first_name
callback_query_message_chat_last_name
callback_query_message_chat_all_members_are_administrators
callback_query_message_chat_photo
callback_query_message_chat_description
callback_query_message_chat_invite_link
callback_query_message_forward_from_id
callback_query_message_forward_from_first_name
callback_query_message_forward_from_last_name
callback_query_message_forward_from_username
callback_query_message_forward_from_language_code
callback_query_message_forward_from_chat_id
callback_query_message_forward_from_chat_type
callback_query_message_forward_from_chat_title
callback_query_message_forward_from_chat_username
callback_query_message_forward_from_chat_first_name
callback_query_message_forward_from_chat_last_name
callback_query_message_forward_from_chat_all_members_are_administrators
callback_query_message_forward_from_chat_photo
callback_query_message_forward_from_chat_description
callback_query_message_forward_from_chat_invite_link
callback_query_message_forward_from_message_id
callback_query_message_forward_date
callback_query_message_edit_date
callback_query_message_text
callback_query_message_entities_type
callback_query_message_entities_offset
callback_query_message_entities_integer
callback_query_message_entities_length
callback_query_message_entities_urls
callback_query_message_entities_user_id
callback_query_message_entities_user_first_name
callback_query_message_entities_user_last_name
callback_query_message_entities_user_username
callback_query_message_entities_user_language
callback_query_message_audio_file_id
callback_query_message_audio_duration
callback_query_message_audio_performer
callback_query_message_audio_title
callback_query_message_audio_mime_type
callback_query_message_audio_file_size
callback_query_message_document_file_id
callback_query_message_document_thumb_file_id
callback_query_message_document_thumb_width
callback_query_message_document_thumb_height
callback_query_message_document_thumb_file_size
callback_query_message_document_file_name
callback_query_message_document_mime_type
callback_query_message_document_file_size
callback_query_message_game_title
callback_query_message_game_description
callback_query_message_game_photo_file_id
callback_query_message_game_photo_width
callback_query_message_game_photo_height
callback_query_message_game_photo_file_size
callback_query_message_game_text
callback_query_message_game_text_entities_type
callback_query_message_game_text_entities_offset
callback_query_message_game_text_entities_length
callback_query_message_game_text_entities_url
callback_query_message_game_text_entities_user_id
callback_query_message_game_text_entities_user_first_name
callback_query_message_game_text_entities_user_last_name
callback_query_message_game_text_entities_user_username
callback_query_message_game_text_entities_user_language_code
callback_query_message_game_animation_file_id
callback_query_message_game_animation_thumb_file_id
callback_query_message_game_animation_thumb_width
callback_query_message_game_animation_thumb_height
callback_query_message_game_animation_thumb_file_size
callback_query_message_photo_file_id
callback_query_message_photo_width
callback_query_message_photo_height
callback_query_message_photo_file_size
callback_query_message_sticker_file_id
callback_query_message_sticker_width
callback_query_message_sticker_height
callback_query_message_sticker_thumb_file_id
callback_query_message_sticker_thumb_width
callback_query_message_sticker_thumb_height
callback_query_message_sticker_thumb_file_size
callback_query_message_sticker_emoji
callback_query_message_sticker_file_size
callback_query_message_video_file_id
callback_query_message_video_width
callback_query_message_video_height
callback_query_message_video_duration
callback_query_message_video_thumb_file_id
callback_query_message_video_thumb_width
callback_query_message_video_thumb_height
callback_query_message_video_thumb_file_size
callback_query_message_video_mime_type
callback_query_message_video_file_size
callback_query_message_voice_file_id
callback_query_message_voice_duration
callback_query_message_voice_mime_type
callback_query_message_voice_file_size
callback_query_message_video_note_file_id
callback_query_message_video_note_length
callback_query_message_video_note_duration
callback_query_message_video_note_thumb_file_id
callback_query_message_video_note_thumb_width
callback_query_message_video_note_thumb_height
callback_query_message_video_note_thumb_file_size
callback_query_message_video_note_file_size
callback_query_message_new_chat_members_id
callback_query_message_new_chat_members_first_name
callback_query_message_new_chat_members_last_name
callback_query_message_new_chat_members_username
callback_query_message_new_chat_members_language_code
callback_query_message_caption
callback_query_message_contact_phone_number
callback_query_message_contact_first_name
callback_query_message_contact_last_name
callback_query_message_contact_user_id
callback_query_message_location_longitude
callback_query_message_location_latitude
callback_query_message_venue_location
callback_query_message_venue_title
callback_query_message_venue_address
callback_query_message_venue_foursquare_id
callback_query_message_new_chat_member_id
callback_query_message_new_chat_member_first_name
callback_query_message_new_chat_member_last_name
callback_query_message_new_chat_member_username
callback_query_message_new_chat_member_language_code
callback_query_message_left_chat_member_id
callback_query_message_left_chat_member_first_name
callback_query_message_left_chat_member_last_name
callback_query_message_left_chat_member_username
callback_query_message_left_chat_member_language_code
callback_query_message_new_chat_title
callback_query_message_new_chat_photo_file_id
callback_query_message_new_chat_photo_width
callback_query_message_new_chat_photo_height
callback_query_message_new_chat_photo_file_size
callback_query_message_delete_chat_photo
callback_query_message_group_chat_created
callback_query_message_supergroup_chat_created
callback_query_message_channel_chat_created
callback_query_message_migrate_to_chat_id
callback_query_message_migrate_from_chat_id
callback_query_inline_message_id
callback_query_chat_instance
callback_query_data
callback_query_game_short_name
- E-mail: [email protected]
- Juliano Santos (SHAMAN)
-
Inicio
-
- Update
- User
- Chat
- Message
- MessageEntity
- PhotoSize
- Audio
- Document
- Video
- Voice
- VideoNote
- Contact
- Location
- Venue
- UserProfilePhotos
- File
- ReplyKeyboardMarkup
- KeyboardButton
- ReplyKeyboardRemove
- InlineKeyboardMarkup
- InlineKeyboardButton
- CallbackQuery
- ForceReply
- ChatPhoto
- ChatMember
- Sticker
- StickerSet
- MaskPosition
- ResponseParameters
- WebhookInfo
- ChatPermissions
-
Funções
- ShellBot.init
- ShellBot.id
- ShellBot.username
- ShellBot.first_name
- ShellBot.token
- ShellBot.ListUpdates
- ShellBot.TotalUpdates
- ShellBot.OffsetEnd
- ShellBot.OffsetNext
- ShellBot.getConfig
- ShellBot.regHandleFunction
- ShellBot.regHandleExec
- ShellBot.watchHandle
- ShellBot.InlineKeyboardButton
- ShellBot.InlineKeyboardMarkup
- ShellBot.ReplyKeyboardMarkup
- ShellBot.KeyboardButton
- ShellBot.ForceReply
- ShellBot.ReplyKeyboardRemove
- ShellBot.inputMedia
- ShellBot.downloadFile
- ShellBot.stickerMaskPosition
- ShellBot.InlineQueryResult
- ShellBot.InputMessageContent
- ShellBot.ChatPermissions
- ShellBot.KeyboardButtonPollType
- ShellBot.setMessageRules
- ShellBot.BotCommand
- ShellBot.manageRules
-
Mètodos
- ShellBot.getWebhookInfo
- ShellBot.deleteWebhook
- ShellBot.setWebhook
- ShellBot.setChatPhoto
- ShellBot.deleteChatPhoto
- ShellBot.setChatTitle
- ShellBot.setChatDescription
- ShellBot.pinChatMessage
- ShellBot.unpinChatMessage
- ShellBot.restrictChatMember
- ShellBot.promoteChatMember
- ShellBot.exportChatInviteLink
- ShellBot.sendVideoNote
- ShellBot.getMe
- ShellBot.answerCallbackQuery
- ShellBot.sendMessage
- ShellBot.forwardMessage
- ShellBot.sendPhoto
- ShellBot.sendAudio
- ShellBot.sendDocument
- ShellBot.sendSticker
- ShellBot.sendVideo
- ShellBot.sendVoice
- ShellBot.sendLocation
- ShellBot.sendVenue
- ShellBot.sendContact
- ShellBot.sendChatAction
- ShellBot.getUserProfilePhotos
- ShellBot.getFile
- ShellBot.kickChatMember
- ShellBot.leaveChat
- ShellBot.unbanChatMember
- ShellBot.getChat
- ShellBot.getChatAdministrators
- ShellBot.getChatMembersCount
- ShellBot.getChatMember
- ShellBot.editMessageText
- ShellBot.editMessageCaption
- ShellBot.editMessageReplyMarkup
- ShellBot.deleteMessage
- ShellBot.getStickerSet
- ShellBot.uploadStickerFile
- ShellBot.createNewStickerSet
- ShellBot.addStickerSet
- ShellBot.setStickerPositionInSet
- ShellBot.deleteStickerFromSet
- ShellBot.editMessageLiveLocation
- ShellBot.stopMessageLiveLocation
- ShellBot.setChatStickerSet
- ShellBot.deleteChatStickerSet
- ShellBot.sendMediaGroup
- ShellBot.editMessageMedia
- ShellBot.sendAnimation
- ShellBot.answerInlineQuery
- ShellBot.setChatPermissions
- ShellBot.setChatAdministratorCustomTitle
- ShellBot.sendPoll
- ShellBot.setMyCommands
- ShellBot.getMyCommands
- ShellBot.sendDice
- ShellBot.getUpdates
