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

12 lines
381 B
Kotlin
Raw Normal View History

2020-10-04 11:06:30 +00:00
package dev.inmo.tgbotapi.types.CallbackQuery
2018-12-26 08:07:24 +00:00
2020-10-04 11:06:30 +00:00
import dev.inmo.tgbotapi.types.*
2018-12-26 08:07:24 +00:00
data class InlineMessageIdDataCallbackQuery(
override val id: CallbackQueryIdentifier,
2021-10-18 08:45:57 +00:00
override val from: User,
2018-12-26 08:07:24 +00:00
override val chatInstance: String,
override val inlineMessageId: InlineMessageIdentifier,
override val data: String
) : DataCallbackQuery, InlineMessageIdCallbackQuery