/** * 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'; import { LocationDelivery } from './location'; /** * Warehouse location, from where the delivery starts and where the cargoes are being delivered. */ export interface WarehouseDelivery { /** * Warehouse key, unique ID. */ key: string; location: LocationDelivery; /** * List of time windows for work. If windows are not specified, the location is open 24 hours a day. */ work_windows?: Array; }