interface Root {
    backup_codes: null | string[];
    can_add_additional_totp_seed: boolean;
    country_code: string;
    eligible_for_trusted_notifications: boolean;
    email: string;
    has_reachable_email: boolean;
    is_eligible_for_multiple_totp: boolean;
    is_eligible_for_phone_number_confirmed_badge_toggle: boolean;
    is_eligible_for_whatsapp_two_factor: boolean;
    is_phone_confirmed: boolean;
    is_phone_number_confirmed_badge_enabled: boolean;
    is_totp_two_factor_enabled: boolean;
    is_trusted_notifications_enabled: boolean;
    is_two_factor_enabled: boolean;
    is_whatsapp_two_factor_enabled: boolean;
    national_number: string;
    phone_number: string;
    status: string;
    totp_seeds: TotpSeed[];
    trusted_devices: TrustedDevice[];
}

Properties

backup_codes: null | string[]
can_add_additional_totp_seed: boolean
country_code: string
eligible_for_trusted_notifications: boolean
email: string
has_reachable_email: boolean
is_eligible_for_multiple_totp: boolean
is_eligible_for_phone_number_confirmed_badge_toggle: boolean
is_eligible_for_whatsapp_two_factor: boolean
is_phone_confirmed: boolean
is_phone_number_confirmed_badge_enabled: boolean
is_totp_two_factor_enabled: boolean
is_trusted_notifications_enabled: boolean
is_two_factor_enabled: boolean
is_whatsapp_two_factor_enabled: boolean
national_number: string
phone_number: string
status: string
totp_seeds: TotpSeed[]
trusted_devices: TrustedDevice[]