com.github.stormbit.vksdk.objects.models.CropPhoto.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 com.github.stormbit.vksdk.objects.attachments.Document
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
data class CropPhoto(
@SerialName("photo") val photo: Document.Preview.Photo,
@SerialName("crop") val crop: CropRect,
@SerialName("rect") val rect: CropRect
) {
@Serializable
data class CropRect(
@SerialName("x") val x: Double,
@SerialName("y") val y: Double,
@SerialName("x2") val x2: Double,
@SerialName("y2") val y2: Double
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy