1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-01 23:45:25 +00:00
tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/chat/UnknownChatType.kt

11 lines
270 B
Kotlin
Raw Normal View History

2022-04-21 18:16:41 +00:00
package dev.inmo.tgbotapi.types.chat
2022-11-10 09:56:38 +00:00
import dev.inmo.tgbotapi.types.IdChatIdentifier
2022-06-21 10:27:53 +00:00
import kotlinx.serialization.json.JsonObject
2022-04-21 18:16:41 +00:00
data class UnknownChatType(
2022-11-10 09:56:38 +00:00
override val id: IdChatIdentifier,
2022-06-21 10:27:53 +00:00
val raw: String,
val rawJson: JsonObject
2023-10-11 07:07:07 +00:00
) : Chat, PreviewChat