/** * Reservation Service API * Reservation service for reserve a car * * OpenAPI spec version: 0.0.1-SNAPSHOT * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { ImageSource } from './imageSource'; import { Rates } from './rates'; export interface AvailableVehicle { attributes?: Array; canBookExactVehicle?: boolean; dreamCar?: boolean; driveType?: string; fuelEconomyUnit?: string; fuelEconomyValue?: string; image?: ImageSource; numberOfDoors?: string; numberOfLargeSuitcases?: string; numberOfPassengers?: string; numberOfSmallSuitcases?: string; numberOfSuitcases?: string; rates?: Rates; sippCode?: string; transmissionAndDriveType?: string; transmissionType?: string; vehicleCategoryName?: string; vehicleCollection?: string; vehicleDescription?: string; }