PendingVerificationRequest

data class PendingVerificationRequest(    val ageLocalTs: Long,     val state: EVerificationState,     val isIncoming: Boolean = false,     val otherUserId: String,     val otherDeviceId: String?,     val roomId: String?,     val transactionId: String,     val cancelConclusion: CancelCode? = null,     val isFinished: Boolean = false,     val handledByOtherSession: Boolean = false,     val targetDevices: List<String>? = null,     val qrCodeText: String? = null,     val isSasSupported: Boolean = false,     val weShouldShowScanOption: Boolean = false,     val weShouldDisplayQRCode: Boolean = false)

Stores current pending verification requests.

Constructors

Link copied to clipboard
fun PendingVerificationRequest(    ageLocalTs: Long,     state: EVerificationState,     isIncoming: Boolean = false,     otherUserId: String,     otherDeviceId: String?,     roomId: String?,     transactionId: String,     cancelConclusion: CancelCode? = null,     isFinished: Boolean = false,     handledByOtherSession: Boolean = false,     targetDevices: List<String>? = null,     qrCodeText: String? = null,     isSasSupported: Boolean = false,     weShouldShowScanOption: Boolean = false,     weShouldDisplayQRCode: Boolean = false)

Properties

Link copied to clipboard
val ageLocalTs: Long
Link copied to clipboard
val cancelConclusion: CancelCode? = null
Link copied to clipboard
val handledByOtherSession: Boolean = false
Link copied to clipboard
val isFinished: Boolean = false
Link copied to clipboard
val isIncoming: Boolean = false
Link copied to clipboard
val isSasSupported: Boolean = false
Link copied to clipboard
val otherDeviceId: String?
Link copied to clipboard
val otherUserId: String
Link copied to clipboard
val qrCodeText: String? = null
Link copied to clipboard
val roomId: String?
Link copied to clipboard
val state: EVerificationState
Link copied to clipboard
val targetDevices: List<String>? = null
Link copied to clipboard
val transactionId: String
Link copied to clipboard
val weShouldDisplayQRCode: Boolean = false
Link copied to clipboard
val weShouldShowScanOption: Boolean = false