Interface DatabaseGetCountriesParams

interface DatabaseGetCountriesParams {
    code?: string;
    count?: number;
    need_all?: number | boolean;
    offset?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

code?: string

Country codes in [vk.com/dev/country_codes|ISO 3166-1 alpha-2] standard.

count?: number

Number of countries to return.

need_all?: number | boolean

'1' - to return a full list of all countries, '0' - to return a list of countries near the current user's country (default).

offset?: number

Offset needed to return a specific subset of countries.

Generated using TypeDoc