1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-03 00:15:27 +00:00
tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/InputMedia/InputMedia.kt

11 lines
275 B
Kotlin
Raw Normal View History

2020-10-04 11:06:30 +00:00
package dev.inmo.tgbotapi.types.InputMedia
2018-12-26 08:07:24 +00:00
2020-10-04 11:06:30 +00:00
import dev.inmo.tgbotapi.requests.abstracts.InputFile
2019-02-21 06:09:04 +00:00
import kotlinx.serialization.Serializable
2018-12-26 08:07:24 +00:00
2019-02-21 06:09:04 +00:00
@Serializable(InputMediaSerializer::class)
2018-12-26 08:07:24 +00:00
interface InputMedia {
val type: String
val file: InputFile
2020-08-29 06:08:37 +00:00
val media: String
2018-12-26 08:07:24 +00:00
}