/** * Quote Service API * Quote service for calculate the total quotes * * 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 { Image } from './image'; import { Rates } from './rates'; export interface AvailableVehicle { attributes?: Array; canBookExactVehicle?: boolean; dreamCar?: boolean; driveType?: string; fuelEconomyUnit?: string; fuelEconomyValue?: string; image?: Image; numberOfDoors?: string; numberOfLargeSuitcases?: string; numberOfPassengers?: string; numberOfSmallSuitcases?: string; numberOfSuitcases?: string; rateRestricted?: boolean; rates?: Rates; sippCode?: string; transmissionAndDriveType?: string; transmissionType?: string; vehicleCategoryName?: string; vehicleCollection?: string; vehicleDescription?: string; vehicleFilterType?: string; }