SurrogateStickerSet

@Serializable
data class SurrogateStickerSet(    val name: StickerSetName,     val title: String,     val sticker_type: StickerType,     val is_animated: Boolean? = false,     val is_video: Boolean? = false,     val stickers: List<@Serializable(with = StickerSerializer::class) Sticker> = emptyList(),     val thumb: PhotoSize? = null)

Constructors

Link copied to clipboard
constructor(    name: StickerSetName,     title: String,     sticker_type: StickerType,     is_animated: Boolean? = false,     is_video: Boolean? = false,     stickers: List<@Serializable(with = StickerSerializer::class) Sticker> = emptyList(),     thumb: PhotoSize? = null)

Properties

Link copied to clipboard
val is_animated: Boolean? = false
Link copied to clipboard
val is_video: Boolean? = false
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val stickers: List<@Serializable(with = StickerSerializer::class) Sticker>
Link copied to clipboard
val thumb: PhotoSize? = null
Link copied to clipboard