@veeroute/lss-studio-angular
Version:
OpenAPI client for @veeroute/lss-studio-angular
45 lines (44 loc) • 983 B
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 { TrackpointStudio } from './trackpoint';
/**
* Track for map.
*/
export interface WebTripTrackStudio {
[key: string]: any | any;
/**
* An array of geographic points with time reference between which a path is built.
*/
geotrack: Array<TrackpointStudio>;
/**
* Trip key, unique identifier.
*/
trip_key: string;
/**
* Name, information field.
*/
trip_name?: string;
/**
* Performer\'s key.
*/
performer_key: string;
/**
* Performer shift\'s key, unique identifier.
*/
performer_shift_key: string;
/**
* Transport\'s key.
*/
transport_key: string;
/**
* Transport shift\'s key, unique identifier.
*/
transport_shift_key: string;
}