@veeroute/lss-studio-angular
Version:
OpenAPI client for @veeroute/lss-studio-angular
44 lines (43 loc) • 1.02 kB
TypeScript
/**
* VRt.Studio [ST]
*
* The version of the OpenAPI document: 7.23.2926
* Contact: servicedesk@veeroute.com
*
* NOTE: This class is auto generated by OpenAPI Generator.
* Do not edit the class manually.
*/
import { GeopointStudio } from './geopoint';
import { DemandTypeStudio } from './demandType';
/**
* Geopoint for map.
*/
export interface WebOrderGeopointStudio {
[key: string]: any | any;
geopoint: GeopointStudio;
/**
* Key of the order with which an action is taken.
*/
order_key: string;
/**
* Key of the demand with which an action is taken.
*/
demand_key: string;
/**
* Key of the event at which an action is taken.
*/
event_key: string;
demand_type: DemandTypeStudio;
/**
* Essence key, unique identifier, may be `null`.
*/
trip_key?: string | null;
/**
* Name, information field.
*/
trip_name?: string;
/**
* Sequence number of the stop in the trip.
*/
stop_number?: number;
}