commonMain.net.folivo.trixnity.clientserverapi.model.devices.Device.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.devices
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
data class Device(
@SerialName("device_id") val deviceId: String,
@SerialName("display_name") val displayName: String? = null,
@SerialName("last_seen_ip") val lastSeenIp: String? = null,
@SerialName("last_seen_ts") val lastSeenTs: Long? = null,
)