1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-14 22:05:28 +00:00
tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/InlineQueries/query/InlineQuery.kt

18 lines
468 B
Kotlin
Raw Normal View History

package dev.inmo.tgbotapi.types.InlineQueries.query
2022-05-01 16:13:40 +00:00
import dev.inmo.tgbotapi.abstracts.FromUser
2024-03-16 15:17:36 +00:00
import dev.inmo.tgbotapi.types.InlineQueryId
import dev.inmo.tgbotapi.types.chat.ChatType
2023-03-02 13:33:15 +00:00
import dev.inmo.tgbotapi.types.chat.CommonUser
2021-10-18 08:45:57 +00:00
sealed interface InlineQuery : FromUser {
2024-03-16 15:17:36 +00:00
val id: InlineQueryId
val query: String
val offset: String
val chatType: ChatType?
2023-03-02 13:33:15 +00:00
override val from: CommonUser
override val user: CommonUser
get() = from
}