1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-07-02 14:20:49 +00:00
tgbotapi/src/main/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/InlineQueries/InlineQueryResult/abstracts/InlineQueryResult.kt

12 lines
520 B
Kotlin
Raw Normal View History

2018-12-26 08:07:24 +00:00
package com.github.insanusmokrassar.TelegramBotAPI.types.InlineQueries.InlineQueryResult.abstracts
2019-02-07 11:32:31 +00:00
import com.github.insanusmokrassar.TelegramBotAPI.types.InlineQueries.InlineQueryResult.serializers.InlineQueryResultSerializer
2018-12-26 08:07:24 +00:00
import com.github.insanusmokrassar.TelegramBotAPI.types.buttons.InlineKeyboardMarkup
2019-02-07 12:25:04 +00:00
import kotlinx.serialization.Serializable
2018-12-26 08:07:24 +00:00
2019-02-07 11:32:31 +00:00
@Serializable(InlineQueryResultSerializer::class)
2018-12-26 08:07:24 +00:00
interface InlineQueryResult {
val type: String
val id: String
val replyMarkup: InlineKeyboardMarkup?
}