UNPKG

@veeroute/lss-routing-angular

Version:

OpenAPI client for @veeroute/lss-routing-angular

30 lines (29 loc) 963 B
/** * VRt.Routing [RT] * * 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 { GeopointRouting } from './geopoint'; /** * A waypoint with the time of the stop at it. */ export interface RouteWaypointRouting { [key: string]: any | any; geopoint: GeopointRouting; /** * Name of the point. Can be used as an identifier to match the task and the calculation result. */ name?: string | null; /** * Departure date and time in [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format. If specified, replaces the estimated time. If it is set for one point, it must be set for all. */ departure_time?: string | null; /** * Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations). */ duration?: string | null; }