Package dev. inmo. tgbotapi. requests. stickers
Types
Add Animated Sticker To Set
Link copied to clipboard
Add Static Sticker To Set
Link copied to clipboard
Create New Animated Sticker Set
Link copied to clipboard
Create New Static Sticker Set
Link copied to clipboard
Delete Sticker From Set
Link copied to clipboard
data class DeleteStickerFromSet(sticker: FileId) : SimpleRequest<Boolean>
Content copied to clipboard
Set Sticker Position In Set
Link copied to clipboard
data class SetStickerPositionInSet(sticker: FileId, position: Int) : SimpleRequest<Boolean>
Content copied to clipboard
Set Sticker Set Thumb
Link copied to clipboard
data class SetStickerSetThumb(userId: UserId, name: StickerSetName, thumb: FileId?) : StickerSetAction
Content copied to clipboard
Upload Sticker File
Link copied to clipboard
data class UploadStickerFile(userId: UserId, sticker: MultipartFile) : MultipartRequest<File>
Content copied to clipboard
Functions
Add Animated Sticker To Set
Link copied to clipboard
fun AddAnimatedStickerToSet(userId: UserId, stickerSetName: String, sticker: InputFile, emojis: String, maskPosition: MaskPosition? = null): Request<Boolean>
Content copied to clipboard
Add Static Sticker To Set
Link copied to clipboard
fun AddStaticStickerToSet(userId: UserId, stickerSetName: String, sticker: InputFile, emojis: String, maskPosition: MaskPosition? = null): Request<Boolean>
Content copied to clipboard
Create New Animated Sticker Set
Link copied to clipboard
fun CreateNewAnimatedStickerSet(userId: UserId, name: String, sticker: InputFile, emojis: String, containsMasks: Boolean? = null, maskPosition: MaskPosition? = null): Request<Boolean>
Content copied to clipboard
Create New Static Sticker Set
Link copied to clipboard
fun CreateNewStaticStickerSet(userId: UserId, name: String, sticker: InputFile, emojis: String, containsMasks: Boolean? = null, maskPosition: MaskPosition? = null): Request<Boolean>
Content copied to clipboard
Create New Sticker Set
Link copied to clipboard
fun CreateNewStickerSet(userId: UserId, name: String, sticker: InputFile, emojis: String, containsMasks: Boolean? = null, maskPosition: MaskPosition? = null): Request<Boolean>
Content copied to clipboard
Set Sticker Set Thumb
Link copied to clipboard
fun SetStickerSetThumb(userId: UserId, stickerSetName: String, thumb: MultipartFile): Request<Boolean>
Content copied to clipboard