MonoCloud Management SDK
    Preparing search index...

    User Phone: Represents a phone number associated with the user account.

    UserPhone

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

    Properties

    id: string

    Unique identifier of the user's phone.

    UserPhone

    phone: string

    The phone number.

    UserPhone

    primary: boolean

    Indicates whether this is the primary phone number for the user.

    UserPhone

    source?: string | null

    Source from which the phone number was originally collected.

    UserPhone

    verification_source?: string | null

    Identity provider or service that verified the phone number.

    UserPhone

    verified: boolean

    Indicates whether the phone number has been verified.

    UserPhone