tgbot-cpp
|
This object represents an incoming update. More...
#include <Update.h>
Public Types | |
typedef std::shared_ptr< Update > | Ptr |
Public Attributes | |
int32_t | updateId |
The update‘s unique identifier. Update identifiers start from a certain positive number and increase sequentially. This ID becomes especially handy if you’re using Webhooks, since it allows you to ignore repeated updates or to restore the correct update sequence, should they get out of order. More... | |
Message::Ptr | message |
Optional. New incoming message of any kind — text, photo, sticker, etc. More... | |
Message::Ptr | editedMessage |
Optional. New version of a message that is known to the bot and was edited. More... | |
Message::Ptr | channelPost |
Optional. New incoming channel post of any kind — text, photo, sticker, etc. More... | |
Message::Ptr | editedChannelPost |
Optional. New version of a channel post that is known to the bot and was edited. More... | |
InlineQuery::Ptr | inlineQuery |
Optional. New incoming inline query. More... | |
ChosenInlineResult::Ptr | chosenInlineResult |
Optional. The result of an inline query that was chosen by a user and sent to their chat partner. More... | |
CallbackQuery::Ptr | callbackQuery |
Optional. New incoming callback query. More... | |
ShippingQuery::Ptr | shippingQuery |
Optional. New incoming shipping query. More... | |
PreCheckoutQuery::Ptr | preCheckoutQuery |
Optional. New incoming pre-checkout query. More... | |
typedef std::shared_ptr<Update> TgBot::Update::Ptr |
CallbackQuery::Ptr TgBot::Update::callbackQuery |
Message::Ptr TgBot::Update::channelPost |
ChosenInlineResult::Ptr TgBot::Update::chosenInlineResult |
Message::Ptr TgBot::Update::editedChannelPost |
Message::Ptr TgBot::Update::editedMessage |
InlineQuery::Ptr TgBot::Update::inlineQuery |
Message::Ptr TgBot::Update::message |
PreCheckoutQuery::Ptr TgBot::Update::preCheckoutQuery |
ShippingQuery::Ptr TgBot::Update::shippingQuery |
int32_t TgBot::Update::updateId |
The update‘s unique identifier. Update identifiers start from a certain positive number and increase sequentially. This ID becomes especially handy if you’re using Webhooks, since it allows you to ignore repeated updates or to restore the correct update sequence, should they get out of order.