All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.justai.jaicf.channel.yandexalice.api.storage.Image.kt Maven / Gradle / Ivy

Go to download

JAICF-Kotlin Yandex Alice Channel implementation. Enables JAICF-Kotlin integration with Alice.

The newest version!
package com.justai.jaicf.channel.yandexalice.api.storage

import kotlinx.serialization.Serializable

@Serializable
data class Image(
    val id: String,
    val origUrl: String,
    val size: Long
)

@Serializable
data class UploadedImage(
    val image: Image
)

@Serializable
data class Images(
    val images: List,
    val total: Int
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy