1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-02 16:05:28 +00:00
tgbotapi/TelegramBotAPI-core/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/InlineQueries/InlineQueryResult/abstracts/InlineQueryResult.kt

13 lines
613 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
2020-09-20 14:16:14 +00:00
import com.github.insanusmokrassar.TelegramBotAPI.types.InlineQueryIdentifier
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
2020-09-20 14:16:14 +00:00
val id: InlineQueryIdentifier
2018-12-26 08:07:24 +00:00
val replyMarkup: InlineKeyboardMarkup?
}