/** * Veeroute.Delivery * Veeroute Delivery API * * The version of the OpenAPI document: 3.15.183137 * Contact: support@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { TimeWindowDelivery } from './timeWindow'; /** * Performer\'s shift. * `availability_time` - the shift time window, when the performer can work at the locations and drive between locations. * `working_time` - the working time window, when the performer can work at the locations, should be inside the shift time window. */ export interface ShiftDelivery { availability_time: TimeWindowDelivery; working_time: TimeWindowDelivery; }