Package it.tdlight.jni
Class TdApi.StickerSetInfo
java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.StickerSetInfo
- Enclosing class:
- TdApi
public static class TdApi.StickerSetInfo extends TdApi.Object
Represents short information about a sticker set.
-
Field Summary
Fields Modifier and Type Field Description static int
CONSTRUCTOR
TdApi.Sticker[]
covers
Contains up to the first 5 stickers from the set, depending on the context.long
id
Identifier of the sticker set.boolean
isAnimated
True, is the stickers in the set are animated.boolean
isArchived
True, if the sticker set has been archived.boolean
isInstalled
True, if the sticker set has been installed by the current user.boolean
isMasks
True, if the stickers in the set are masks.boolean
isOfficial
True, if the sticker set is official.boolean
isViewed
True for already viewed trending sticker sets.String
name
Name of the sticker set.int
size
Total number of stickers in the set.TdApi.Thumbnail
thumbnail
Sticker set thumbnail in WEBP or TGS format with width and height 100; may be null.TdApi.ClosedVectorPath[]
thumbnailOutline
Sticker set thumbnail's outline represented as a list of closed vector paths; may be empty.String
title
Title of the sticker set. -
Constructor Summary
Constructors Constructor Description StickerSetInfo()
Represents short information about a sticker set.StickerSetInfo(long id, String title, String name, TdApi.Thumbnail thumbnail, TdApi.ClosedVectorPath[] thumbnailOutline, boolean isInstalled, boolean isArchived, boolean isOfficial, boolean isAnimated, boolean isMasks, boolean isViewed, int size, TdApi.Sticker[] covers)
Represents short information about a sticker set.StickerSetInfo(DataInput input)
-
Method Summary
Modifier and Type Method Description boolean
equals(Object o)
int
getConstructor()
int
hashCode()
void
serialize(DataOutput output)
Methods inherited from class it.tdlight.jni.TdApi.Object
serialize, toString
-
Field Details
-
id
public long idIdentifier of the sticker set. -
title
Title of the sticker set. -
name
Name of the sticker set. -
thumbnail
Sticker set thumbnail in WEBP or TGS format with width and height 100; may be null. -
thumbnailOutline
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. -
isInstalled
public boolean isInstalledTrue, if the sticker set has been installed by the current user. -
isArchived
public boolean isArchivedTrue, if the sticker set has been archived. A sticker set can't be installed and archived simultaneously. -
isOfficial
public boolean isOfficialTrue, if the sticker set is official. -
isAnimated
public boolean isAnimatedTrue, is the stickers in the set are animated. -
isMasks
public boolean isMasksTrue, if the stickers in the set are masks. -
isViewed
public boolean isViewedTrue for already viewed trending sticker sets. -
size
public int sizeTotal number of stickers in the set. -
covers
Contains 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. -
CONSTRUCTOR
public static final int CONSTRUCTOR- See Also:
- Constant Field Values
-
-
Constructor Details
-
StickerSetInfo
public StickerSetInfo()Represents short information about a sticker set. -
StickerSetInfo
public StickerSetInfo(long id, String title, String name, TdApi.Thumbnail thumbnail, TdApi.ClosedVectorPath[] thumbnailOutline, boolean isInstalled, boolean isArchived, boolean isOfficial, boolean isAnimated, boolean isMasks, boolean isViewed, int size, TdApi.Sticker[] covers)Represents short information about a sticker set.- Parameters:
id
- long Identifier of the sticker set.title
- String Title of the sticker set.name
- String Name of the sticker set.thumbnail
- Thumbnail Sticker set thumbnail in WEBP or TGS format with width and height 100; may be null.thumbnailOutline
- ClosedVectorPath[] 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.isInstalled
- boolean True, if the sticker set has been installed by the current user.isArchived
- boolean True, if the sticker set has been archived. A sticker set can't be installed and archived simultaneously.isOfficial
- boolean True, if the sticker set is official.isAnimated
- boolean True, is the stickers in the set are animated.isMasks
- boolean True, if the stickers in the set are masks.isViewed
- boolean True for already viewed trending sticker sets.size
- int Total number of stickers in the set.covers
- Sticker[] Contains 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.
-
StickerSetInfo
- Throws:
IOException
-
-
Method Details
-
getConstructor
public int getConstructor()- Specified by:
getConstructor
in classTdApi.Object
-
serialize
- Specified by:
serialize
in classTdApi.Object
- Throws:
IOException
-
equals
-
hashCode
public int hashCode()
-