Class CountryInfo.

CountryInfo

interface CountryInfo {
    DisplayName?: null | string;
    Name?: null | string;
    ThreeLetterISORegionName?: null | string;
    TwoLetterISORegionName?: null | string;
}

Properties

DisplayName?: null | string

Gets or sets the display name.

CountryInfo

Name?: null | string

Gets or sets the name.

CountryInfo

ThreeLetterISORegionName?: null | string

Gets or sets the name of the three letter ISO region.

CountryInfo

TwoLetterISORegionName?: null | string

Gets or sets the name of the two letter ISO region.

CountryInfo