/** * Veeroute.Lastmile * Veeroute Lastmile 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 { LocationLastmile } from './location'; import { LoadWindowLastmile } from './loadWindow'; /** * Unique geographical location of the object with accessibility parameters. */ export interface AdvancedLocationLastmile { /** * Location key, unique ID. */ key: string; location: LocationLastmile; /** * List of requirements for the vehicle that can drive to this location. */ transport_restrictions?: Set; /** * List of time windows for the location. */ load_windows?: Array; /** * Attributes, used to add service information that does not affect planning. */ attributes?: Set; }