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

13 lines
366 B
Kotlin
Raw Normal View History

2018-12-26 08:07:24 +00:00
package com.github.insanusmokrassar.TelegramBotAPI.types.InlineQueries.abstracts
import com.github.insanusmokrassar.TelegramBotAPI.types.InlineQueryIdentifier
import com.github.insanusmokrassar.TelegramBotAPI.types.User
interface InlineQuery {
val id: InlineQueryIdentifier
val from: User
val query: String
val offset: Long
fun answerQuery()
}