commonMain.models.StatusRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tools.telegram.webapps.core Show documentation
Show all versions of tools.telegram.webapps.core Show documentation
It is set of projects with micro tools for avoiding of routines coding
The newest version!
package dev.inmo.tools.telegram.webapps.core.models
import dev.inmo.micro_utils.common.MPPFile
import kotlinx.serialization.KSerializer
import kotlinx.serialization.Serializable
@Serializable
object StatusRequest : BaseRequest {
@Serializable
data class Status(
val ok: Boolean,
val freeMemoryInfo: String,
val fileData: String? = null
)
override val resultSerializer: KSerializer
get() = Status.serializer()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy