1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-01 07:25:23 +00:00
tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/update/ChatMessageReactionUpdatedUpdate.kt

12 lines
397 B
Kotlin
Raw Normal View History

2023-12-31 10:16:26 +00:00
package dev.inmo.tgbotapi.types.update
2024-03-16 14:32:18 +00:00
import dev.inmo.tgbotapi.types.UpdateId
2023-12-31 10:16:26 +00:00
import dev.inmo.tgbotapi.types.chat.ChatMessageReactionUpdated
import dev.inmo.tgbotapi.types.update.abstracts.Update
import kotlinx.serialization.Serializable
@Serializable
data class ChatMessageReactionUpdatedUpdate(
2024-03-16 14:32:18 +00:00
override val updateId: UpdateId,
2023-12-31 10:16:26 +00:00
override val data: ChatMessageReactionUpdated
) : Update