/** * VRt.Universal [UV] * * The version of the OpenAPI document: 7.26.3024 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { LocationCompatibilitiesUniversal } from './locationCompatibilities'; import { AttributeUniversal } from './attribute'; import { GeopointUniversal } from './geopoint'; import { LocationTimetableElementUniversal } from './locationTimetableElement'; /** * Location - unique geographical location of the object with accessibility parameters. */ export interface LocationUniversal { [key: string]: any | any; /** * Location key, unique identifier. */ key: string; geopoint: GeopointUniversal; /** * Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations). */ arrival_duration?: string; /** * Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations). */ departure_duration?: string; /** * Location timetable - time windows of availability and capacity restrictions. If the list is empty or not specified, the location works without restrictions. */ timetable?: Array; compatibilities?: LocationCompatibilitiesUniversal | null; /** * Name, information field. */ name?: string; /** * Attributes. Used to add service information. */ attributes?: Array; }