EmailAddressPublicInfo

data class EmailAddressPublicInfo(    val emailAddress: String,     val keyId: String,     val publicKey: String,     val publicKeyDetails: EmailAddressPublicKey) : Parcelable

Representation of public information for an email address in the Sudo Platform Email SDK.

Constructors

Link copied to clipboard
constructor(emailAddress: String, keyId: String, publicKey: String)

(Deprecated) Constructor for creating an instance of EmailAddressPublicInfo.

constructor(emailAddress: String, keyId: String, publicKeyDetails: EmailAddressPublicKey)

Constructor for creating an instance of EmailAddressPublicInfo.

constructor(emailAddress: String, keyId: String, publicKey: String, publicKeyDetails: EmailAddressPublicKey)

Properties

Link copied to clipboard

String The email address in format 'local-part@domain'.

Link copied to clipboard

String Identifier associated with the public key.

Link copied to clipboard

String The raw value of the public key for the email address.

Link copied to clipboard

EmailAddressPublicKey The public key for the email address, including format and algorithm details.

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)