Inherits Object.
Represents short information about a sticker set.
Public Fields | |
int64 | id_ |
Identifier of the sticker set. | |
string | title_ |
Title of the sticker set. | |
string | name_ |
Name of the sticker set. | |
object_ptr< thumbnail > | thumbnail_ |
Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed. | |
array< object_ptr< closedVectorPath > > | thumbnail_outline_ |
Sticker set thumbnail's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner. | |
bool | is_owned_ |
True, if the sticker set is owned by the current user. | |
bool | is_installed_ |
True, if the sticker set has been installed by the current user. | |
bool | is_archived_ |
True, if the sticker set has been archived. A sticker set can't be installed and archived simultaneously. | |
bool | is_official_ |
True, if the sticker set is official. | |
object_ptr< StickerType > | sticker_type_ |
Type of the stickers in the set. | |
bool | needs_repainting_ |
True, if stickers in the sticker set are custom emoji that must be repainted; for custom emoji sticker sets only. | |
bool | is_allowed_as_chat_emoji_status_ |
True, if stickers in the sticker set are custom emoji that can be used as chat emoji status; for custom emoji sticker sets only. | |
bool | is_viewed_ |
True for already viewed trending sticker sets. | |
int32 | size_ |
Total number of stickers in the set. | |
array< object_ptr< sticker > > | covers_ |
Up to the first 5 stickers from the set, depending on the context. If the application needs more stickers the full sticker set needs to be requested. | |
Public Instance Methods | |
stickerSetInfo () | |
stickerSetInfo (int64 id_, string const &title_, string const &name_, object_ptr< thumbnail > &&thumbnail_, array< object_ptr< closedVectorPath >> &&thumbnail_outline_, bool is_owned_, bool is_installed_, bool is_archived_, bool is_official_, object_ptr< StickerType > &&sticker_type_, bool needs_repainting_, bool is_allowed_as_chat_emoji_status_, bool is_viewed_, int32 size_, array< object_ptr< sticker >> &&covers_) | |
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 = 1730888790 |
Identifier uniquely determining a type of the object. | |
stickerSetInfo | ( | ) |
Represents short information about a sticker set.
stickerSetInfo | ( | int64 | id_, |
string const & | title_, | ||
string const & | name_, | ||
object_ptr< thumbnail > && | thumbnail_, | ||
array< object_ptr< closedVectorPath >> && | thumbnail_outline_, | ||
bool | is_owned_, | ||
bool | is_installed_, | ||
bool | is_archived_, | ||
bool | is_official_, | ||
object_ptr< StickerType > && | sticker_type_, | ||
bool | needs_repainting_, | ||
bool | is_allowed_as_chat_emoji_status_, | ||
bool | is_viewed_, | ||
int32 | size_, | ||
array< object_ptr< sticker >> && | covers_ | ||
) |
Represents short information about a sticker set.
[in] | id_ | Identifier of the sticker set. |
[in] | title_ | Title of the sticker set. |
[in] | name_ | Name of the sticker set. |
[in] | thumbnail_ | Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed. |
[in] | thumbnail_outline_ | Sticker set thumbnail's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner. |
[in] | is_owned_ | True, if the sticker set is owned by the current user. |
[in] | is_installed_ | True, if the sticker set has been installed by the current user. |
[in] | is_archived_ | True, if the sticker set has been archived. A sticker set can't be installed and archived simultaneously. |
[in] | is_official_ | True, if the sticker set is official. |
[in] | sticker_type_ | Type of the stickers in the set. |
[in] | needs_repainting_ | True, if stickers in the sticker set are custom emoji that must be repainted; for custom emoji sticker sets only. |
[in] | is_allowed_as_chat_emoji_status_ | True, if stickers in the sticker set are custom emoji that can be used as chat emoji status; for custom emoji sticker sets only. |
[in] | is_viewed_ | True for already viewed trending sticker sets. |
[in] | size_ | Total number of stickers in the set. |
[in] | covers_ | Up to the first 5 stickers from the set, depending on the context. If the application needs more stickers the full sticker set needs to be requested. |
|
finalvirtual |