@golemio/parkings
Version:
Golemio Parkings Module
15 lines (14 loc) • 350 B
TypeScript
export interface IptoictParkingProhibitions {
source: string;
parking_id: string;
prohibited_access: IProhibitedAccess;
}
interface IProhibitedAccess {
"lpg/cng": boolean | null;
bus: boolean | null;
truck: boolean | null;
motorcycle: boolean | null;
bicycle: boolean | null;
trailer: boolean | null;
}
export {};