Type alias AuthMFAEnrollPhoneResponse

AuthMFAEnrollPhoneResponse: {
    data: {
        friendly_name?: string;
        id: string;
        phone: string;
        type: "phone";
    };
    error: null;
} | {
    data: null;
    error: AuthError;
}

Generated using TypeDoc