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/InlineQueries/query/BaseInlineQuery.kt

14 lines
408 B
Kotlin
Raw Normal View History

2020-10-04 11:06:30 +00:00
package dev.inmo.tgbotapi.types.InlineQueries.query
2024-03-16 15:17:36 +00:00
import dev.inmo.tgbotapi.types.InlineQueryId
2021-04-26 14:42:26 +00:00
import dev.inmo.tgbotapi.types.chat.ChatType
2023-03-02 14:33:49 +00:00
import dev.inmo.tgbotapi.types.chat.CommonUser
2020-10-04 11:06:30 +00:00
data class BaseInlineQuery(
2024-03-16 15:17:36 +00:00
override val id: InlineQueryId,
2023-03-02 14:33:49 +00:00
override val from: CommonUser,
2020-10-04 11:06:30 +00:00
override val query: String,
2021-04-26 14:42:26 +00:00
override val offset: String,
override val chatType: ChatType?
2020-10-04 11:06:30 +00:00
) : InlineQuery