RetrieveIdentityResponse
data class RetrieveIdentityResponse(val identity: ByteArray, val shouldRenewKey: Boolean, var authenticatedSessionId: String)
RetrieveIdentityResponse holds a retrieved identity
Constructors
RetrieveIdentityResponse | constructor(identity: ByteArray, shouldRenewKey: Boolean, authenticatedSessionId: String) |
Properties
Name | Summary |
---|---|
authenticatedSessionId | var authenticatedSessionId: String An authenticated sessionId, that you can use to perform further SSKS TMR operations without challenge |
identity | val identity: ByteArray The retrieved identity. It can be used with sdk.importIdentity() |
shouldRenewKey | val shouldRenewKey: Boolean If the boolean ShouldRenewKey is set to true , the account MUST renew its private key using sdk.renewKeys() |