Inherits Object.
Describes parameters of verification that is provided by a bot.
Public Fields | |
int64 | icon_custom_emoji_id_ |
Identifier of the custom emoji that is used as the verification sign. | |
string | organization_name_ |
Name of the organization that provides verification. | |
object_ptr< formattedText > | default_custom_description_ |
Default custom description of verification reason to be used as placeholder in setMessageSenderBotVerification; may be null if none. | |
bool | can_set_custom_description_ |
True, if the bot is allowed to provide custom description for verified entities. | |
Public Instance Methods | |
botVerificationParameters () | |
botVerificationParameters (int64 icon_custom_emoji_id_, string const &organization_name_, object_ptr< formattedText > &&default_custom_description_, bool can_set_custom_description_) | |
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 = -723737249 |
Identifier uniquely determining a type of the object. | |
Describes parameters of verification that is provided by a bot.
botVerificationParameters | ( | int64 | icon_custom_emoji_id_, |
string const & | organization_name_, | ||
object_ptr< formattedText > && | default_custom_description_, | ||
bool | can_set_custom_description_ | ||
) |
Describes parameters of verification that is provided by a bot.
[in] | icon_custom_emoji_id_ | Identifier of the custom emoji that is used as the verification sign. |
[in] | organization_name_ | Name of the organization that provides verification. |
[in] | default_custom_description_ | Default custom description of verification reason to be used as placeholder in setMessageSenderBotVerification; may be null if none. |
[in] | can_set_custom_description_ | True, if the bot is allowed to provide custom description for verified entities. |
|
finalvirtual |