/**
 * This file was generated by st-open-api
 */
import { ITypeWaypoint } from './enumeration/i-type-waypoint';
export interface IWaypoint {
    address?: string;
    iata?: string;
    latitude?: number;
    longitude?: number;
    type: ITypeWaypoint;
}
