Details of a country.

Export

Country

interface Country {
    countryCode: string;
    name: string;
    services: {
        [key: string]: Service;
    };
}

Properties

countryCode: string

2-letter ISO code of the country.

Memberof

Country

name: string

Name of the country.

Memberof

Country

services: {
    [key: string]: Service;
}

Map of service id to details of the service in this country.

Type declaration

Memberof

Country

Generated using TypeDoc