@cercalia/sdk
    Preparing search index...

    Interface PostalCodeCity

    Represents a city associated with a postal code.

    interface PostalCodeCity {
        coord: Coordinate;
        country?: string;
        countryCode?: string;
        id: string;
        municipality?: string;
        municipalityCode?: string;
        name: string;
        region?: string;
        regionCode?: string;
        subregion?: string;
        subregionCode?: string;
    }
    Index

    Properties

    coord: Coordinate

    Geographic coordinates of the city.

    country?: string

    Country name.

    countryCode for the corresponding ID.

    countryCode?: string

    Cercalia country identifier.

    id: string

    Cercalia identifier for this city.

    municipality?: string

    Municipality name.

    municipalityCode for the corresponding ID.

    municipalityCode?: string

    Cercalia municipality identifier.

    name: string

    City name.

    region?: string

    Region name.

    regionCode for the corresponding ID.

    regionCode?: string

    Cercalia region identifier.

    subregion?: string

    Sub-region name.

    subregionCode for the corresponding ID.

    subregionCode?: string

    Cercalia sub-region identifier.