Inherits Update.
A new incoming callback query from a business message; for bots only.
Public Fields | |
int64 | id_ |
Unique query identifier. | |
int53 | sender_user_id_ |
Identifier of the user who sent the query. | |
string | connection_id_ |
Unique identifier of the business connection. | |
object_ptr< businessMessage > | message_ |
The message from the business account from which the query originated. | |
int64 | chat_instance_ |
An identifier uniquely corresponding to the chat a message was sent to. | |
object_ptr< CallbackQueryPayload > | payload_ |
Query payload. | |
Public Instance Methods | |
updateNewBusinessCallbackQuery () | |
updateNewBusinessCallbackQuery (int64 id_, int53 sender_user_id_, string const &connection_id_, object_ptr< businessMessage > &&message_, int64 chat_instance_, object_ptr< CallbackQueryPayload > &&payload_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = 336745316 |
Identifier uniquely determining a type of the object. | |
A new incoming callback query from a business message; for bots only.
updateNewBusinessCallbackQuery | ( | int64 | id_, |
int53 | sender_user_id_, | ||
string const & | connection_id_, | ||
object_ptr< businessMessage > && | message_, | ||
int64 | chat_instance_, | ||
object_ptr< CallbackQueryPayload > && | payload_ | ||
) |
A new incoming callback query from a business message; for bots only.
[in] | id_ | Unique query identifier. |
[in] | sender_user_id_ | Identifier of the user who sent the query. |
[in] | connection_id_ | Unique identifier of the business connection. |
[in] | message_ | The message from the business account from which the query originated. |
[in] | chat_instance_ | An identifier uniquely corresponding to the chat a message was sent to. |
[in] | payload_ | Query payload. |
|
finalvirtual |