mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-10-31 21:43:48 +00:00
Update Sticker.kt
This commit is contained in:
parent
3c4f8787a6
commit
5992fdd456
@ -27,7 +27,8 @@ data class StickerSurrogate(
|
|||||||
val premium_animation: File? = null,
|
val premium_animation: File? = null,
|
||||||
val mask_position: MaskPosition? = null,
|
val mask_position: MaskPosition? = null,
|
||||||
val custom_emoji_id: CustomEmojiId? = null,
|
val custom_emoji_id: CustomEmojiId? = null,
|
||||||
val file_size: Long? = null
|
val file_size: Long? = null,
|
||||||
|
val needs_repainting: Boolean = false
|
||||||
)
|
)
|
||||||
|
|
||||||
// TODO:: Serializer
|
// TODO:: Serializer
|
||||||
@ -132,7 +133,8 @@ object StickerSerializer : KSerializer<Sticker> {
|
|||||||
surrogate.thumb,
|
surrogate.thumb,
|
||||||
surrogate.emoji,
|
surrogate.emoji,
|
||||||
surrogate.set_name,
|
surrogate.set_name,
|
||||||
surrogate.file_size
|
surrogate.file_size,
|
||||||
|
surrogate.needs_repainting
|
||||||
)
|
)
|
||||||
surrogate.is_video == true -> CustomEmojiVideoSticker(
|
surrogate.is_video == true -> CustomEmojiVideoSticker(
|
||||||
surrogate.file_id,
|
surrogate.file_id,
|
||||||
@ -143,7 +145,8 @@ object StickerSerializer : KSerializer<Sticker> {
|
|||||||
surrogate.thumb,
|
surrogate.thumb,
|
||||||
surrogate.emoji,
|
surrogate.emoji,
|
||||||
surrogate.set_name,
|
surrogate.set_name,
|
||||||
surrogate.file_size
|
surrogate.file_size,
|
||||||
|
surrogate.needs_repainting
|
||||||
)
|
)
|
||||||
else -> CustomEmojiSimpleSticker(
|
else -> CustomEmojiSimpleSticker(
|
||||||
surrogate.file_id,
|
surrogate.file_id,
|
||||||
@ -154,7 +157,8 @@ object StickerSerializer : KSerializer<Sticker> {
|
|||||||
surrogate.thumb,
|
surrogate.thumb,
|
||||||
surrogate.emoji,
|
surrogate.emoji,
|
||||||
surrogate.set_name,
|
surrogate.set_name,
|
||||||
surrogate.file_size
|
surrogate.file_size,
|
||||||
|
surrogate.needs_repainting
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
is StickerType.Unknown -> UnknownSticker(
|
is StickerType.Unknown -> UnknownSticker(
|
||||||
|
Loading…
Reference in New Issue
Block a user