@golemio/parkings
Version:
Golemio Parkings Module
21 lines (20 loc) • 512 B
TypeScript
export interface IIptOictParkingMachines {
type: string;
features: IIptOictParkingMachinesFeature[];
}
export interface IIptOictParkingMachinesFeature {
type: string;
geometry: {
type: string;
coordinates: number[];
};
properties: IIptOictParkingMachinesProperties;
}
export interface IIptOictParkingMachinesProperties {
source: string;
source_id: string;
parking_id: string;
code: string | null;
machine_type: string;
valid_from: string | null;
}