com.github.stormbit.vksdk.objects.attachments.Video.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vk-bot-sdk-kotlin Show documentation
Show all versions of vk-bot-sdk-kotlin Show documentation
The Kotlin library for working with VK api
The newest version!
package com.github.stormbit.vksdk.objects.attachments
import com.github.stormbit.vksdk.vkapi.methods.Attachment
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
data class Video(
@SerialName("access_key") override val accessKey: String,
@SerialName("can_add") val canAdd: Int,
@SerialName("comments") val comments: Int,
@SerialName("date") val date: Int,
@SerialName("description") val description: String,
@SerialName("duration") val duration: Int,
@SerialName("first_frame") val firstFrame: List,
@SerialName("height") val height: Int,
@SerialName("id") override val id: Int,
@SerialName("image") val image: List,
@SerialName("is_favorite") val isFavorite: Boolean,
@SerialName("owner_id") override val ownerId: Int,
@SerialName("title") val title: String,
@SerialName("track_code") val trackCode: String,
@SerialName("type") val type: String,
@SerialName("views") val views: Int,
@SerialName("width") val width: Int) : Attachment {
override val typeAttachment: AttachmentType get() = AttachmentType.VIDEO
@Serializable
data class FirstFrame(
@SerialName("height") val height: Int,
@SerialName("url") val url: String,
@SerialName("width") val width: Int
)
@Serializable
data class Image(
@SerialName("height") val height: Int,
@SerialName("url") val url: String,
@SerialName("width") val width: Int,
@SerialName("with_padding") val withPadding: Int? = null
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy