commonMain.net.folivo.trixnity.clientserverapi.model.media.GetUrlPreview.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trixnity-clientserverapi-model Show documentation
Show all versions of trixnity-clientserverapi-model Show documentation
Multiplatform Kotlin SDK for matrix-protocol
package net.folivo.trixnity.clientserverapi.model.media
import io.ktor.resources.*
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import net.folivo.trixnity.core.HttpMethod
import net.folivo.trixnity.core.HttpMethodType.GET
import net.folivo.trixnity.core.MatrixEndpoint
/**
* @see matrix spec
*/
@Serializable
@Resource("/_matrix/client/v1/media/preview_url")
@HttpMethod(GET)
data class GetUrlPreview(
@SerialName("url") val url: String,
@SerialName("ts") val timestamp: Long? = null,
) : MatrixEndpoint {
@Serializable
data class Response(
@SerialName("matrix:image:size") val size: Long? = null,
@SerialName("og:image") val imageUrl: String? = null
)
}