Interface WithCountry

API.getMatch

interface WithCountry {
    avatar_url: string;
    country: {
        code: string;
        name: string;
    };
    country_code: string;
    default_group: string;
    id: number;
    is_active: boolean;
    is_bot: boolean;
    is_deleted: boolean;
    is_online: boolean;
    is_supporter: boolean;
    last_visit: null | Date;
    pm_friends_only: boolean;
    profile_colour: null | string;
    username: string;
}

Hierarchy (view full)

Properties

avatar_url: string
country: {
    code: string;
    name: string;
}
country_code: string
default_group: string
id: number
is_active: boolean
is_bot: boolean
is_deleted: boolean
is_online: boolean
is_supporter: boolean
last_visit: null | Date
pm_friends_only: boolean
profile_colour: null | string
username: string