1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-26 03:28:10 +00:00
tgbotapi/TelegramBotAPI-core/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/games/Game.kt

15 lines
551 B
Kotlin
Raw Normal View History

2018-12-26 08:07:24 +00:00
package com.github.insanusmokrassar.TelegramBotAPI.types.games
import com.github.insanusmokrassar.TelegramBotAPI.CommonAbstracts.*
2019-08-18 06:59:11 +00:00
import com.github.insanusmokrassar.TelegramBotAPI.types.files.AnimationFile
import com.github.insanusmokrassar.TelegramBotAPI.types.files.Photo
2018-12-26 08:07:24 +00:00
data class Game(
2019-08-17 16:48:18 +00:00
override val title: String,
2018-12-26 08:07:24 +00:00
val description: String,
val photo: Photo,
2019-08-17 16:48:18 +00:00
override val caption: String? = null,
override val captionEntities: List<TextPart> = emptyList(),
2018-12-26 08:07:24 +00:00
val animation: AnimationFile? = null
2019-12-02 08:44:23 +00:00
) : Titled, CaptionedInput