MegolmBackupCreationInfo

data class MegolmBackupCreationInfo(    val algorithm: String,     val authData: MegolmBackupAuthData,     val recoveryKey: IBackupRecoveryKey)

Data retrieved from Olm library. algorithm and authData will be send to the homeserver, and recoveryKey will be displayed to the user

Constructors

Link copied to clipboard
fun MegolmBackupCreationInfo(    algorithm: String,     authData: MegolmBackupAuthData,     recoveryKey: IBackupRecoveryKey)

Properties

Link copied to clipboard
val algorithm: String

The algorithm used for storing backups org.matrix.androidsdk.crypto.MXCRYPTO_ALGORITHM_MEGOLM_BACKUP.

Link copied to clipboard
val authData: MegolmBackupAuthData

Authentication data.

Link copied to clipboard
val recoveryKey: IBackupRecoveryKey

The recovery key.