/** * 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 { TimeWindowUniversal } from './timeWindow'; import { AttributeUniversal } from './attribute'; import { TransportTariffUniversal } from './transportTariff'; /** * Working shift of transport. Specifies the availability of transport for scheduling. The end of the shift resets the cargo remaining in the body after the execution of demands of the `DROP_FROM_BOX` and `PICKUP_TO_BOX` types. */ export interface TransportShiftUniversal { [key: string]: any | any; /** * Shift key, unique identifier. */ key: string; /** * The shift time window in which the transport can move between locations and be used by the performer in work on locations. */ availability_time: TimeWindowUniversal; /** * Start location key. If the key is not set, then the transport path starts on the first order. */ start_location_key?: string | null; /** * Finish location key. If the key is not set, then the transport path ends at the last order. */ finish_location_key?: string | null; tariff?: TransportTariffUniversal; /** * Name, information field. */ name?: string; /** * Attributes. Used to add service information. */ attributes?: Array; }