Inherits Object.
Describes an emoji category.
Public Fields | |
string | name_ |
Name of the category. | |
object_ptr< sticker > | icon_ |
Custom emoji sticker, which represents icon of the category. | |
object_ptr< EmojiCategorySource > | source_ |
Source of stickers for the emoji category. | |
bool | is_greeting_ |
True, if the category must be shown first when choosing a sticker for the start page. | |
Public Instance Methods | |
emojiCategory () | |
emojiCategory (string const &name_, object_ptr< sticker > &&icon_, object_ptr< EmojiCategorySource > &&source_, bool is_greeting_) | |
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 = 571335919 |
Identifier uniquely determining a type of the object. | |
emojiCategory | ( | ) |
Describes an emoji category.
emojiCategory | ( | string const & | name_, |
object_ptr< sticker > && | icon_, | ||
object_ptr< EmojiCategorySource > && | source_, | ||
bool | is_greeting_ | ||
) |
Describes an emoji category.
[in] | name_ | Name of the category. |
[in] | icon_ | Custom emoji sticker, which represents icon of the category. |
[in] | source_ | Source of stickers for the emoji category. |
[in] | is_greeting_ | True, if the category must be shown first when choosing a sticker for the start page. |
|
finalvirtual |