@sudoplatform/sudo-email
    Preparing search index...

    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;
        publicKeyDetails: EmailAddressPublicKey;
    }
    Index

    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.

    publicKeyDetails: EmailAddressPublicKey

    Contains the public key associated with the email address, along with additional format and algorithm details.