/**
 * 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';
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;
}
