@golemio/parkings
Version:
Golemio Parkings Module
19 lines (18 loc) • 705 B
TypeScript
import { PaymentMethodTypes } from "../../../schema-definitions/datasources/PaymentMethodTypes";
import { IParkingsTariffChargeNormalized } from "./IParkingsTariffChargeNormalized";
export interface IOutputParkingTariffsDto {
tariff_id: string;
source: string;
last_updated: string;
payment_mode: string;
payment_additional_description: string | null;
free_of_charge: boolean;
url_link_address: string | null;
charge_band_name: string;
charge_currency: string;
allowed_vehicle_type: string | null;
allowed_fuel_type: string | null;
payment_methods: PaymentMethodTypes[];
charges: IParkingsTariffChargeNormalized[];
reservation_url: string | null;
}