/** * VRt.Universal [UV] * * The version of the OpenAPI document: 7.26.3024 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { TransportTariffConstraintUniversal } from './transportTariffConstraint'; import { CapacityCostUniversal } from './capacityCost'; /** * The tariff determines the cost of transport operation and restrictions on mileage per shift. */ export interface TransportTariffUniversal { [key: string]: any | any; /** * Price for using the shift, monetary unit. */ cost_per_shift?: number; /** * List of components of the tariff. */ constraints?: Array; transportation_cost?: CapacityCostUniversal | null; }