@veeroute/lss-studio-angular
Version:
OpenAPI client for @veeroute/lss-studio-angular
88 lines (87 loc) • 2.68 kB
TypeScript
/**
* VRt.Studio [ST]
*
* 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 { BasicTimeWindowStudio } from './basicTimeWindow';
import { TableCustomfieldsStudio } from './tableCustomfields';
/**
* Stops fields for table.
*/
export interface TableTripStopFieldsStudio {
[key: string]: any | any;
/**
* Essence type.
*/
essence_type?: TableTripStopFieldsStudioEssenceTypeEnum;
/**
* Essence key, unique identifier, may be `null`.
*/
essence_key?: string | null;
/**
* Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations).
*/
driving_time?: string;
/**
* Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations).
*/
waiting_time?: string;
/**
* Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations).
*/
break_time?: string;
/**
* Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations).
*/
rest_time?: string;
/**
* Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations).
*/
working_time?: string;
/**
* Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations).
*/
arriving_time?: string;
/**
* Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations).
*/
departure_time?: string;
/**
* Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations).
*/
total_time?: string;
/**
* Distance in meters.
*/
distance?: number;
time_window?: BasicTimeWindowStudio | null;
/**
* Essence key, unique identifier, may be `null`.
*/
trip_key?: string | null;
/**
* String table field. For the parent entity, a comma-separated list of values is specified.
*/
order_key?: string | null;
/**
* String table field. For the parent entity, a comma-separated list of values is specified.
*/
demand_type?: string | null;
/**
* Essence key, unique identifier, may be `null`.
*/
location_key?: string | null;
/**
* Name, information field.
*/
location_name?: string;
customfields?: TableCustomfieldsStudio;
}
export declare enum TableTripStopFieldsStudioEssenceTypeEnum {
TRIP_STOP = "TRIP_STOP",
DEMAND = "DEMAND"
}