/**
 * This file was generated by st-open-api
 */
import { IWaypoint } from './i-waypoint';
export interface ICarRental {
    acrissCode?: string;
    distance?: number;
    dropoffLocation?: IWaypoint;
    isInternationalTrip?: boolean;
    pickupLocation?: IWaypoint;
    rentalDuration: number;
    vehicleType?: string;
}
