Package-level declarations

Types

Link copied to clipboard
sealed interface DehydratedDeviceData
Link copied to clipboard
@Serializable
data class DeleteDehydratedDevice(val asUserId: UserId? = null) : MatrixEndpoint<Unit, DeleteDehydratedDevice.Response>
Link copied to clipboard
@Serializable
data class DeleteDevice(val deviceId: String, val asUserId: UserId? = null) : MatrixUIAEndpoint<Unit, Unit>
Link copied to clipboard
@Serializable
data class DeleteDevices(val asUserId: UserId? = null) : MatrixUIAEndpoint<DeleteDevices.Request, Unit>
Link copied to clipboard
@Serializable
data class Device(val deviceId: String, val displayName: String? = null, val lastSeenIp: String? = null, val lastSeenTs: Long? = null)
Link copied to clipboard
@Serializable
data class GetDehydratedDevice(val asUserId: UserId? = null) : MatrixEndpoint<Unit, GetDehydratedDevice.Response>
Link copied to clipboard
@Serializable
data class GetDehydratedDeviceEvents(val deviceId: String, val asUserId: UserId? = null) : MatrixEndpoint<GetDehydratedDeviceEvents.Request, GetDehydratedDeviceEvents.Response>
Link copied to clipboard
@Serializable
data class GetDevice(val deviceId: String, val asUserId: UserId? = null) : MatrixEndpoint<Unit, Device>
Link copied to clipboard
@Serializable
data class GetDevices(val asUserId: UserId? = null) : MatrixEndpoint<Unit, GetDevices.Response>
Link copied to clipboard
@Serializable
data class SetDehydratedDevice(val asUserId: UserId? = null) : MatrixEndpoint<SetDehydratedDevice.Request, SetDehydratedDevice.Response>
Link copied to clipboard
@Serializable
data class UpdateDevice(val deviceId: String, val asUserId: UserId? = null) : MatrixEndpoint<UpdateDevice.Request, Unit>