1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-03 00:15:27 +00:00
tgbotapi/TelegramBotAPI-core/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/InlineQueries/InlineQueryResult/abstracts/results/audio/InlineQueryResultAudioCommon.kt

12 lines
626 B
Kotlin
Raw Normal View History

2019-02-07 04:47:08 +00:00
package com.github.insanusmokrassar.TelegramBotAPI.types.InlineQueries.InlineQueryResult.abstracts.results.audio
2019-06-28 10:43:54 +00:00
import com.github.insanusmokrassar.TelegramBotAPI.CommonAbstracts.CaptionedOutput
2019-02-07 12:25:04 +00:00
import com.github.insanusmokrassar.TelegramBotAPI.types.InlineQueries.InlineQueryResult.abstracts.InlineQueryResult
import com.github.insanusmokrassar.TelegramBotAPI.types.InlineQueries.InlineQueryResult.abstracts.WithInputMessageContentInlineQueryResult
2019-02-07 04:47:08 +00:00
2019-02-07 11:50:08 +00:00
const val inlineQueryResultAudioType = "audio"
2019-02-07 04:47:08 +00:00
interface InlineQueryResultAudioCommon : InlineQueryResult,
2019-06-28 10:43:54 +00:00
CaptionedOutput,
2019-02-07 04:47:08 +00:00
WithInputMessageContentInlineQueryResult