IncomingRoomKeyRequest

data class IncomingRoomKeyRequest(    val userId: String? = null,     val deviceId: String? = null,     val requestId: String? = null,     val requestBody: RoomKeyRequestBody? = null,     val localCreationTimestamp: Long?)

IncomingRoomKeyRequest class defines the incoming room keys request.

Constructors

Link copied to clipboard
fun IncomingRoomKeyRequest(    userId: String? = null,     deviceId: String? = null,     requestId: String? = null,     requestBody: RoomKeyRequestBody? = null,     localCreationTimestamp: Long?)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val deviceId: String? = null

The device id.

Link copied to clipboard
val localCreationTimestamp: Long?
Link copied to clipboard
val requestBody: RoomKeyRequestBody? = null

The request body.

Link copied to clipboard
val requestId: String? = null

The request id.

Link copied to clipboard
val userId: String? = null

The user id.