Represents a country with various attributes such as name, ISO codes, billing and shipping permissions, and display order.

interface ApiCountry {
    AllowsBilling: boolean;
    AllowsShipping: boolean;
    DisplayOrder: number;
    Id: number;
    Name: string;
    NumericIsoCode: number;
    Published: boolean;
    ThreeLetterIsoCode: string;
    TwoLetterIsoCode: string;
}

Properties

AllowsBilling: boolean

Indicates if billing is allowed for this country.

AllowsShipping: boolean

Indicates if shipping is allowed for this country.

DisplayOrder: number

The display order of the country.

Id: number

The unique identifier of the country.

Name: string

The name of the country.

NumericIsoCode: number

The numeric ISO code of the country.

Published: boolean

Indicates if the country is published.

ThreeLetterIsoCode: string

The three-letter ISO code of the country.

TwoLetterIsoCode: string

The two-letter ISO code of the country.