UNPKG

@veeroute/lss-studio-angular

Version:

OpenAPI client for @veeroute/lss-studio-angular

46 lines (45 loc) 1.01 kB
/** * 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 { GeopointStudio } from './geopoint'; /** * Geopoint for map. */ export interface WebPerformerGeopointStudio { [key: string]: any | any; geopoint: GeopointStudio; /** * Performer\'s key. */ performer_key: string; /** * Shift key, unique identifier. */ shift_key: string; /** * The point type. */ point_type: WebPerformerGeopointStudioPointTypeEnum; /** * 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; } export declare enum WebPerformerGeopointStudioPointTypeEnum { START = "START", FINISH = "FINISH" }