From e02f74d77d3663104e74436003ad6b56aea400cf Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Tue, 2 Jul 2024 23:18:36 +0600 Subject: [PATCH] start implement PaidMedia --- .../types/payments/stars/PaidMedia.kt | 105 ++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/payments/stars/PaidMedia.kt diff --git a/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/payments/stars/PaidMedia.kt b/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/payments/stars/PaidMedia.kt new file mode 100644 index 0000000000..03c80ce259 --- /dev/null +++ b/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/payments/stars/PaidMedia.kt @@ -0,0 +1,105 @@ +package dev.inmo.tgbotapi.types.payments.stars + +import dev.inmo.tgbotapi.types.* +import dev.inmo.tgbotapi.types.files.PhotoSize +import kotlinx.serialization.EncodeDefault +import kotlinx.serialization.KSerializer +import kotlinx.serialization.SerialName +import kotlinx.serialization.Serializable +import kotlinx.serialization.descriptors.SerialDescriptor +import kotlinx.serialization.encoding.Decoder +import kotlinx.serialization.encoding.Encoder + +sealed interface PaidMedia { + val type: String + + @Serializable + data class Preview( + @SerialName(widthField) + val width: Int? = null, + @SerialName(heightField) + val height: Int? = null, + @SerialName(durationField) + val duration: Int? = null + ) : PaidMedia { + @EncodeDefault + @SerialName(typeField) + override val type: String = Companion.type + + companion object { + val type: String = "preview" + } + } + + @Serializable + data class Photo( + @SerialName(photoField) + val photo: Photo + ) : PaidMedia { + @EncodeDefault + @SerialName(typeField) + override val type: String = Companion.type + + companion object { + val type: String = "photo" + } + } + + @Serializable + data class Video( + @SerialName(videoField) + val video: Video + ) : PaidMedia { + @EncodeDefault + @SerialName(typeField) + override val type: String = Companion.type + + companion object { + val type: String = "video" + } + } + + @Serializable + data class Video( + @SerialName(videoField) + val video: Video + ) : PaidMedia { + @EncodeDefault + @SerialName(typeField) + override val type: String = Companion.type + + companion object { + val type: String = "video" + } + } + + companion object : KSerializer { + @Serializable + private class Surrogate( + @SerialName(typeField) + val type: String, + @SerialName(widthField) + val width: Int? = null, + @SerialName(heightField) + val height: Int? = null, + @SerialName(durationField) + val duration: Int? = null, + @SerialName(photoField) + val photo: Photo? = null, + @SerialName(videoField) + val video: Video? = null + ) + + override val descriptor: SerialDescriptor + get() = TODO("Not yet implemented") + + override fun deserialize(decoder: Decoder): PaidMedia { + TODO("Not yet implemented") + } + + override fun serialize(encoder: Encoder, value: PaidMedia) { + TODO("Not yet implemented") + } + + } +}