Inherits Object.
Contains information about an emoji reaction.
Public Fields | |
string | emoji_ |
Text representation of the reaction. | |
string | title_ |
Reaction title. | |
bool | is_active_ |
True, if the reaction can be added to new messages and enabled in chats. | |
object_ptr< sticker > | static_icon_ |
Static icon for the reaction. | |
object_ptr< sticker > | appear_animation_ |
Appear animation for the reaction. | |
object_ptr< sticker > | select_animation_ |
Select animation for the reaction. | |
object_ptr< sticker > | activate_animation_ |
Activate animation for the reaction. | |
object_ptr< sticker > | effect_animation_ |
Effect animation for the reaction. | |
object_ptr< sticker > | around_animation_ |
Around animation for the reaction; may be null. | |
object_ptr< sticker > | center_animation_ |
Center animation for the reaction; may be null. | |
Public Instance Methods | |
emojiReaction () | |
emojiReaction (string const &emoji_, string const &title_, bool is_active_, object_ptr< sticker > &&static_icon_, object_ptr< sticker > &&appear_animation_, object_ptr< sticker > &&select_animation_, object_ptr< sticker > &&activate_animation_, object_ptr< sticker > &&effect_animation_, object_ptr< sticker > &&around_animation_, object_ptr< sticker > &¢er_animation_) | |
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 = 1616063583 |
Identifier uniquely determining a type of the object. | |
emojiReaction | ( | ) |
Contains information about an emoji reaction.
emojiReaction | ( | string const & | emoji_, |
string const & | title_, | ||
bool | is_active_, | ||
object_ptr< sticker > && | static_icon_, | ||
object_ptr< sticker > && | appear_animation_, | ||
object_ptr< sticker > && | select_animation_, | ||
object_ptr< sticker > && | activate_animation_, | ||
object_ptr< sticker > && | effect_animation_, | ||
object_ptr< sticker > && | around_animation_, | ||
object_ptr< sticker > && | center_animation_ | ||
) |
Contains information about an emoji reaction.
[in] | emoji_ | Text representation of the reaction. |
[in] | title_ | Reaction title. |
[in] | is_active_ | True, if the reaction can be added to new messages and enabled in chats. |
[in] | static_icon_ | Static icon for the reaction. |
[in] | appear_animation_ | Appear animation for the reaction. |
[in] | select_animation_ | Select animation for the reaction. |
[in] | activate_animation_ | Activate animation for the reaction. |
[in] | effect_animation_ | Effect animation for the reaction. |
[in] | around_animation_ | Around animation for the reaction; may be null. |
[in] | center_animation_ | Center animation for the reaction; may be null. |
|
finalvirtual |