@veeroute/lss-studio-angular
Version:
OpenAPI client for @veeroute/lss-studio-angular
27 lines (26 loc) • 786 B
TypeScript
/**
* VRt.Studio [ST]
*
* The version of the OpenAPI document: 7.18.2755
* Contact: servicedesk@veeroute.com
*
* NOTE: This class is auto generated by OpenAPI Generator.
* Do not edit the class manually.
*/
import { TransportTariffConstraintStudio } from './transportTariffConstraint';
import { CapacityCostStudio } from './capacityCost';
/**
* The tariff determines the cost of transport operation and restrictions on mileage per shift.
*/
export interface TransportTariffStudio {
[key: string]: any | any;
/**
* Price for using the shift, monetary unit.
*/
cost_per_shift?: number;
/**
* List of components of the tariff.
*/
constraints?: Array<TransportTariffConstraintStudio>;
transportation_cost?: CapacityCostStudio | null;
}