Inherits Object.
Contains information about verification status of a chat or a user.
Public Fields | |
bool | is_verified_ |
True, if the chat or the user is verified by Telegram. | |
bool | is_scam_ |
True, if the chat or the user is marked as scam by Telegram. | |
bool | is_fake_ |
True, if the chat or the user is marked as fake by Telegram. | |
int64 | bot_verification_icon_custom_emoji_id_ |
Identifier of the custom emoji to be shown as verification sign provided by a bot for the user; 0 if none. | |
Public Instance Methods | |
verificationStatus () | |
verificationStatus (bool is_verified_, bool is_scam_, bool is_fake_, int64 bot_verification_icon_custom_emoji_id_) | |
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 = 988193164 |
Identifier uniquely determining a type of the object. | |
Contains information about verification status of a chat or a user.
verificationStatus | ( | bool | is_verified_, |
bool | is_scam_, | ||
bool | is_fake_, | ||
int64 | bot_verification_icon_custom_emoji_id_ | ||
) |
Contains information about verification status of a chat or a user.
[in] | is_verified_ | True, if the chat or the user is verified by Telegram. |
[in] | is_scam_ | True, if the chat or the user is marked as scam by Telegram. |
[in] | is_fake_ | True, if the chat or the user is marked as fake by Telegram. |
[in] | bot_verification_icon_custom_emoji_id_ | Identifier of the custom emoji to be shown as verification sign provided by a bot for the user; 0 if none. |
|
finalvirtual |