setStickerSetThumb

suspend fun TelegramBot.setStickerSetThumb(userId: UserId, thumbSetName: String, thumb: FileId): Boolean
suspend fun TelegramBot.setStickerSetThumb(userId: UserId, thumbSetName: String, thumb: MultipartFile): Boolean

Deprecated

Renamed in telegram bot api

Replace with

import dev.inmo.tgbotapi.extensions.api.thumbs.setStickerSetThumbnail
setStickerSetThumbnail(userId, thumbSetName, thumb)

suspend fun TelegramBot.setStickerSetThumb(user: CommonUser, thumbSetName: String, thumb: FileId): Boolean
suspend fun TelegramBot.setStickerSetThumb(user: CommonUser, thumbSetName: String, thumb: MultipartFile): Boolean

Deprecated

Renamed in telegram bot api

Replace with

import dev.inmo.tgbotapi.extensions.api.thumbs.setStickerSetThumbnail
setStickerSetThumbnail(user, thumbSetName, thumb)

suspend fun TelegramBot.setStickerSetThumb(userId: UserId, thumbSet: StickerSet, thumb: FileId): Boolean
suspend fun TelegramBot.setStickerSetThumb(userId: UserId, thumbSet: StickerSet, thumb: MultipartFile): Boolean

Deprecated

Renamed in telegram bot api

Replace with

import dev.inmo.tgbotapi.extensions.api.thumbs.setStickerSetThumbnail
setStickerSetThumbnail(userId, thumbSet, thumb)

suspend fun TelegramBot.setStickerSetThumb(user: CommonUser, thumbSet: StickerSet, thumb: FileId): Boolean

Deprecated

Renamed in telegram bot api

Replace with

import dev.inmo.tgbotapi.extensions.api.thumbs.setStickerSetThumbnail
setStickerSetThumbnail(user, thumbSet, thumb)