Interface EmailAddressPublicInfo

The Sudo Platform SDK representation of email address public information. Depicts the email address and public key related to an email address resource.

EmailAddressPublicInfo

interface EmailAddressPublicInfo {
    emailAddress: string;
    keyId: string;
    publicKey: string;
}

Properties

emailAddress: string

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

keyId: string

The identifier associated with the public key.

publicKey: string

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