Package it.tdlight.jni
Class TdApi.Sticker
java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.Sticker
- Enclosing class:
- TdApi
public static class TdApi.Sticker extends TdApi.Object
Describes a sticker.
-
Field Summary
Fields Modifier and Type Field Description static int
CONSTRUCTOR
String
emoji
Emoji corresponding to the sticker.int
height
Sticker height; as defined by the sender.boolean
isAnimated
True, if the sticker is an animated sticker in TGS format.boolean
isMask
True, if the sticker is a mask.TdApi.MaskPosition
maskPosition
Position where the mask should be placed; may be null.TdApi.ClosedVectorPath[]
outline
Sticker's outline represented as a list of closed vector paths; may be empty.long
setId
The identifier of the sticker set to which the sticker belongs; 0 if none.TdApi.File
sticker
File containing the sticker.TdApi.Thumbnail
thumbnail
Sticker thumbnail in WEBP or JPEG format; may be null.int
width
Sticker width; as defined by the sender. -
Constructor Summary
Constructors Constructor Description Sticker()
Describes a sticker.Sticker(long setId, int width, int height, String emoji, boolean isAnimated, boolean isMask, TdApi.MaskPosition maskPosition, TdApi.ClosedVectorPath[] outline, TdApi.Thumbnail thumbnail, TdApi.File sticker)
Describes a sticker.Sticker(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
-
setId
public long setIdThe identifier of the sticker set to which the sticker belongs; 0 if none. -
width
public int widthSticker width; as defined by the sender. -
height
public int heightSticker height; as defined by the sender. -
emoji
Emoji corresponding to the sticker. -
isAnimated
public boolean isAnimatedTrue, if the sticker is an animated sticker in TGS format. -
isMask
public boolean isMaskTrue, if the sticker is a mask. -
maskPosition
Position where the mask should be placed; may be null. -
outline
Sticker's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner. -
thumbnail
Sticker thumbnail in WEBP or JPEG format; may be null. -
sticker
File containing the sticker. -
CONSTRUCTOR
public static final int CONSTRUCTOR- See Also:
- Constant Field Values
-
-
Constructor Details
-
Sticker
public Sticker()Describes a sticker. -
Sticker
public Sticker(long setId, int width, int height, String emoji, boolean isAnimated, boolean isMask, TdApi.MaskPosition maskPosition, TdApi.ClosedVectorPath[] outline, TdApi.Thumbnail thumbnail, TdApi.File sticker)Describes a sticker.- Parameters:
setId
- long The identifier of the sticker set to which the sticker belongs; 0 if none.width
- int Sticker width; as defined by the sender.height
- int Sticker height; as defined by the sender.emoji
- String Emoji corresponding to the sticker.isAnimated
- boolean True, if the sticker is an animated sticker in TGS format.isMask
- boolean True, if the sticker is a mask.maskPosition
- MaskPosition Position where the mask should be placed; may be null.outline
- ClosedVectorPath[] Sticker's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner.thumbnail
- Thumbnail Sticker thumbnail in WEBP or JPEG format; may be null.sticker
- File File containing the sticker.
-
Sticker
- 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()
-