Interface PhoneAuthenticationMethod

interface PhoneAuthenticationMethod {
    confirmed: boolean;
    created_at: string;
    id: string;
    last_auth_at?: string;
    name?: string;
    phone_number: string;
    preferred_authentication_method: "sms" | "voice";
    type: "phone";
    usage: ("primary" | "secondary")[];
}

Hierarchy

  • AuthenticationMethodWithMetadata
    • PhoneAuthenticationMethod

Properties

confirmed: boolean
created_at: string
id: string
last_auth_at?: string
name?: string
phone_number: string
preferred_authentication_method: "sms" | "voice"
type: "phone"
usage: ("primary" | "secondary")[]