/** * Email Service API * Email Service * * 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 { AvailableOptionsAtTheCounter } from './availableOptionsAtTheCounter'; import { Fee } from './fee'; import { RateDetails } from './rateDetails'; export interface ReservationEmailConfirmationRequest { /** * Customer first name */ FirstName?: string; /** * Customer last name */ LastName?: string; /** * Amount To be paid at counter */ amountToBePaidAtCounter?: string; /** * Arrival Description */ arrivalDesc?: string; /** * Arrival Flight Name */ arrivalFlightName?: string; /** * Arrival Flight Number */ arrivalFlightNumber?: string; /** * Available options at the counter */ availableOptionsAtTheCounter?: AvailableOptionsAtTheCounter; /** * Mandatory Hertz subsidary being one of Hertz, Dollar, Thrifty. Full name spelling. */ brand: string; /** * client id */ clientId?: string; /** * The confirmation number of the cancellation request */ confirmationNumber?: string; /** * Tracking identifier submitted by client for inclusion in logs and return to client. */ correlationId: string; /** * Customer Email Adrress to whom the reservation cancellation email will be send */ custmerEmailAddress: string; /** * Customers Age */ customersAge?: string; /** * Device value submitted by mobile clients for tracking. Not required. */ deviceToken?: string; /** * Discounts Applied to Reservation */ discountApplied?: string; /** * The expected date and time of drop off */ dropoffDateTime?: string; /** * Drop off location. Should be OAG Code (6 digit) */ dropoffLocation?: string; /** * The address location line 1 of the drop off */ dropoffLocationAddressLine1?: string; /** * The address location line 2 of the drop off */ dropoffLocationAddressLine2?: string; /** * The drop off location city */ dropoffLocationCity?: string; /** * The country code of the drop off location */ dropoffLocationCountryCode?: string; /** * The fax number for drop off location */ dropoffLocationFax?: string; /** * The hours for drop off location */ dropoffLocationHours?: string; /** * The phone number for the drop off location */ dropoffLocationPhone?: string; /** * The drop off location state */ dropoffLocationState?: string; /** * The type of drop off location */ dropoffLocationType?: string; /** * The zip code of drop off location */ dropoffLocationZip?: string; /** * Fee Array */ feeArray?: Array; firstName?: string; /** * Included Extras */ includedExtras?: string; lastName?: string; /** * Mandatory client suplied locale under which the operation should be conducted. */ locale: string; /** * Not Included Extras */ notIncludedExtras?: string; /** * Payment Type */ paymentType?: string; /** * The date and time to pick up */ pickupDateTime?: string; /** * Pick up location. Should be OAG Code (6 digit) */ pickupLocation?: string; /** * The address location line 1 of the pick up */ pickupLocationAddressLine1?: string; /** * The address location line 2 of the pick up */ pickupLocationAddressLine2?: string; /** * The pick up location city */ pickupLocationCity?: string; /** * The country code of the pick up location */ pickupLocationCountryCode?: string; /** * The fax number for pick up location */ pickupLocationFax?: string; /** * The hours for pick up location */ pickupLocationHours?: string; /** * The pick up location state */ pickupLocationState?: string; /** * The type of pick up location */ pickupLocationType?: string; /** * The zip code of pick up location */ pickupLocationZip?: string; /** * The phone number for the pick up location */ pickuplocationphone?: string; /** * Rate Details */ rateDetails?: RateDetails; /** * Rate Code */ ratecode?: string; /** * Rental Code */ rentalCode?: string; /** * System Id value submitted by the clients */ systemId?: string; /** * Total rental rate amount */ totalRentalAmount?: string; /** * Total size submitted by the client */ totalSize?: number; /** * Total Taxes */ totalTaxes?: string; /** * Vehicle category */ vechicleCategory?: string; /** * Vehicle Image */ vechicleImage?: string; /** * Vehicle Type */ vechicleType?: string; }