Inherits Update.
A user changed the answer to a poll; for bots only.
Public Fields | |
int64 | poll_id_ |
Unique poll identifier. | |
object_ptr< MessageSender > | voter_id_ |
Identifier of the message sender that changed the answer to the poll. | |
array< int32 > | option_ids_ |
0-based identifiers of answer options, chosen by the user. | |
Public Instance Methods | |
updatePollAnswer () | |
updatePollAnswer (int64 poll_id_, object_ptr< MessageSender > &&voter_id_, array< int32 > &&option_ids_) | |
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 = 1104905219 |
Identifier uniquely determining a type of the object. | |
updatePollAnswer | ( | ) |
A user changed the answer to a poll; for bots only.
updatePollAnswer | ( | int64 | poll_id_, |
object_ptr< MessageSender > && | voter_id_, | ||
array< int32 > && | option_ids_ | ||
) |
A user changed the answer to a poll; for bots only.
[in] | poll_id_ | Unique poll identifier. |
[in] | voter_id_ | Identifier of the message sender that changed the answer to the poll. |
[in] | option_ids_ | 0-based identifiers of answer options, chosen by the user. |
|
finalvirtual |