- Enclosing class:
- TdApi
Creates a new sticker set. Returns the newly created sticker set.
Returns StickerSet
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Identifier uniquely determining type of the object.Sticker set name.boolean
Pass true if stickers in the sticker set must be repainted; for custom emoji sticker sets only.Source of the sticker set; may be empty if unknown.Format of the stickers in the set.List of stickers to be added to the set; must be non-empty.Type of the stickers in the set.Sticker set title; 1-64 characters.long
Sticker set owner; ignored for regular users. -
Constructor Summary
ConstructorDescriptionCreates a new sticker set.CreateNewStickerSet
(long userId, String title, String name, TdApi.StickerFormat stickerFormat, TdApi.StickerType stickerType, boolean needsRepainting, TdApi.InputSticker[] stickers, String source) Creates a new sticker set.CreateNewStickerSet
(DataInput input) Creates a new sticker set. -
Method Summary
Modifier and TypeMethodDescriptionboolean
int
Returns an identifier uniquely determining type of the object.int
hashCode()
void
serialize
(DataOutput output) Serialize the TDLib classMethods inherited from class it.tdlight.jni.TdApi.Function
toString
Methods inherited from class it.tdlight.jni.TdApi.Object
serialize
-
Field Details
-
userId
public long userIdSticker set owner; ignored for regular users. -
title
Sticker set title; 1-64 characters. -
name
Sticker set name. Can contain only English letters, digits and underscores. Must end with *"_by_<bot username>"* (*<botUsername>* is case insensitive) for bots; 1-64 characters. -
stickerFormat
Format of the stickers in the set. -
stickerType
Type of the stickers in the set. -
needsRepainting
public boolean needsRepaintingPass true if stickers in the sticker set must be repainted; for custom emoji sticker sets only. -
stickers
List of stickers to be added to the set; must be non-empty. All stickers must have the same format. For TGS stickers, uploadStickerFile must be used before the sticker is shown. -
source
Source of the sticker set; may be empty if unknown. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
CreateNewStickerSet
public CreateNewStickerSet()Creates a new sticker set. Returns the newly created sticker set.Returns
StickerSet
-
CreateNewStickerSet
public CreateNewStickerSet(long userId, String title, String name, TdApi.StickerFormat stickerFormat, TdApi.StickerType stickerType, boolean needsRepainting, TdApi.InputSticker[] stickers, String source) Creates a new sticker set. Returns the newly created sticker set.Returns
StickerSet
- Parameters:
userId
- Sticker set owner; ignored for regular users.title
- Sticker set title; 1-64 characters.name
- Sticker set name. Can contain only English letters, digits and underscores. Must end with *"_by_<bot username>"* (*<botUsername>* is case insensitive) for bots; 1-64 characters.stickerFormat
- Format of the stickers in the set.stickerType
- Type of the stickers in the set.needsRepainting
- Pass true if stickers in the sticker set must be repainted; for custom emoji sticker sets only.stickers
- List of stickers to be added to the set; must be non-empty. All stickers must have the same format. For TGS stickers, uploadStickerFile must be used before the sticker is shown.source
- Source of the sticker set; may be empty if unknown.Returns
StickerSet
-
CreateNewStickerSet
Creates a new sticker set. Returns the newly created sticker set.Returns
StickerSet
- Parameters:
input
- Serialized input- Throws:
IOException
- the deserialization failed
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.Object
Returns an identifier uniquely determining type of the object.- Specified by:
getConstructor
in classTdApi.Object
- Returns:
- this.CONSTRUCTOR
-
serialize
Serialize the TDLib class- Specified by:
serialize
in classTdApi.Object
- Parameters:
output
- output data stream- Throws:
IOException
- the serialization failed
-
equals
-
hashCode
public int hashCode()
-