interface State {
    geometry: null | Polygon | MultiPolygon;
    id: number;
    modificationData: ModificationMetadata;
    name: string;
}

Properties

geometry: null | Polygon | MultiPolygon

The GeoJSON Polygon or MultiPolygon representation of the states's location. The default empty state has null geometry.

id: number
modificationData: ModificationMetadata
name: string

The name of the state.