@golemio/parkings
Version:
Golemio Parkings Module
30 lines (29 loc) • 873 B
TypeScript
import { IParkingTariffPeriod } from "../../../models/interfaces/IParkingTariff";
export interface IIptOictParkingProperties {
source: string;
source_id: string;
name: string | null;
covered: boolean | null;
security: boolean | null;
valid_from: string | null;
valid_to: string | null;
filter: string | null;
opening_hours: IIptOictOpeningHours[] | null;
contact: IIptOictParkingContact | null;
parking_policy: string | null;
parking_type: string | null;
capacity: number | null;
}
interface IIptOictParkingContact {
email: string | null;
phone: string | null;
web_url: string | null;
}
interface IIptOictOpeningHours {
valid_from: string | null;
valid_to: string | null;
maximum_duration: number | null;
disc_parking: boolean | null;
periods_of_time: IParkingTariffPeriod[];
}
export {};