Interface UserInfoResponse

interface UserInfoResponse {
    account_verified: boolean;
    acct: {
        adm: boolean;
        created_at: number;
        game_name: string;
        state: string;
        tag_line: string;
        type: number;
    };
    affinity: Record<string, string>;
    age: number;
    country: string;
    country_at: number;
    email_verified: boolean;
    federated_identity_details: {
        provider_environment: any;
        provider_name: string;
    }[];
    federated_identity_providers: string[];
    jti: string;
    phone_number_verified: boolean;
    player_locale: Locale.ID;
    player_plocale: any;
    ppid: any;
    pw: {
        cng_at: number;
        must_reset: boolean;
        reset: boolean;
    };
    sub: string;
}

Properties

account_verified: boolean
acct: {
    adm: boolean;
    created_at: number;
    game_name: string;
    state: string;
    tag_line: string;
    type: number;
}
affinity: Record<string, string>
age: number
country: string
country_at: number
email_verified: boolean
federated_identity_details: {
    provider_environment: any;
    provider_name: string;
}[]
federated_identity_providers: string[]
jti: string
phone_number_verified: boolean
player_locale: Locale.ID
player_plocale: any
ppid: any
pw: {
    cng_at: number;
    must_reset: boolean;
    reset: boolean;
}
sub: string