com.github.stormbit.vksdk.objects.models.Sticker.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.models
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
data class Sticker(
@SerialName("images") val images: List,
@SerialName("images_with_background") val imagesWithBackground: List,
@SerialName("product_id") val productId: Int,
@SerialName("sticker_id") val stickerId: Int
) {
@Serializable
data class Image(
@SerialName("url") val url: String,
@SerialName("height") val height: Int,
@SerialName("width") val width: Int
)
@Serializable
data class ImagesWithBackground(
@SerialName("url") val url: String,
@SerialName("height") val height: Int,
@SerialName("width") val width: Int
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy