/** * ClimatePartner API Calculation Service * A Unified API for all ClimatePartner products * * The version of the OpenAPI document: 1.6.4 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Waypoint } from './waypoint'; /** * Please provide either vehicleType or ACRISS code */ export interface CarRental { /** * rental duration in number of days */ 'rentalDuration': number; /** * type of rented vehicle */ 'vehicleType'?: string; /** * ACRISS code of the rented vehicle */ 'acrissCode'?: string; /** * total driven distance in km */ 'distance'?: number; 'pickupLocation'?: Waypoint; 'dropoffLocation'?: Waypoint; /** * whether the vehicle crosses a national border during the rental */ 'isInternationalTrip'?: boolean; }