MonoCloud Management SDK
    Preparing search index...

    User Email: Represents an email address associated with the user account.

    UserEmail

    interface UserEmail {
        email: string;
        id: string;
        primary: boolean;
        source?: string | null;
        verification_source?: string | null;
        verified: boolean;
    }
    Index

    Properties

    email: string

    The email address.

    UserEmail

    id: string

    Unique identifier of the user's email.

    UserEmail

    primary: boolean

    Indicates whether this is the primary email address for the user.

    UserEmail

    source?: string | null

    Source from which the email address was originally collected.

    UserEmail

    verification_source?: string | null

    Identity provider or service that verified the email address.

    UserEmail

    verified: boolean

    Indicates whether the email address has been verified.

    UserEmail