/**
 * 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 { TimeWindowStudio } from './timeWindow';
import { AttributeStudio } from './attribute';
import { TransportTariffStudio } 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 TransportShiftStudio {
    [key: string]: any | any;
    /**
     * Shift key, unique identifier.
     */
    key: string;
    availability_time: TimeWindowStudio | null;
    /**
     * 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?: TransportTariffStudio;
    /**
     * Name, information field.
     */
    name?: string;
    /**
     * Attributes. Used to add service information.
     */
    attributes?: Array<AttributeStudio>;
}
