Inherits Object.
Contains information about an effect added to a message.
Public Fields | |
int64 | id_ |
Unique identifier of the effect. | |
object_ptr< sticker > | static_icon_ |
Static icon for the effect in WEBP format; may be null if none. | |
string | emoji_ |
Emoji corresponding to the effect that can be used if static icon isn't available. | |
bool | is_premium_ |
True, if Telegram Premium subscription is required to use the effect. | |
object_ptr< MessageEffectType > | type_ |
Type of the effect. | |
Public Instance Methods | |
messageEffect () | |
messageEffect (int64 id_, object_ptr< sticker > &&static_icon_, string const &emoji_, bool is_premium_, object_ptr< MessageEffectType > &&type_) | |
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 = -1758836433 |
Identifier uniquely determining a type of the object. | |
messageEffect | ( | ) |
Contains information about an effect added to a message.
messageEffect | ( | int64 | id_, |
object_ptr< sticker > && | static_icon_, | ||
string const & | emoji_, | ||
bool | is_premium_, | ||
object_ptr< MessageEffectType > && | type_ | ||
) |
Contains information about an effect added to a message.
[in] | id_ | Unique identifier of the effect. |
[in] | static_icon_ | Static icon for the effect in WEBP format; may be null if none. |
[in] | emoji_ | Emoji corresponding to the effect that can be used if static icon isn't available. |
[in] | is_premium_ | True, if Telegram Premium subscription is required to use the effect. |
[in] | type_ | Type of the effect. |
|
finalvirtual |