interface City {
    countryId: null | number;
    geometry: Point;
    id: number;
    isEmpty: boolean;
    modificationData: ModificationMetadata;
    name: null | string;
    stateId: null | number;
}

Properties

countryId: null | number

The id of the country where the city is located.

geometry: Point

The GeoJSON Point representation of the city's location.

id: number
isEmpty: boolean

Whether the city is empty or not.

modificationData: ModificationMetadata
name: null | string

The name of the city.

stateId: null | number

The id of the state where the city is located.