/** * 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. */ export interface ReservationEmailCancellationRequest { /** * Customer first name */ FirstName?: string; /** * Customer last name */ LastName?: string; /** * 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; /** * Device value submitted by mobile clients for tracking. Not required. */ deviceToken?: 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; firstName?: string; lastName?: string; /** * Mandatory client suplied locale under which the operation should be conducted. */ locale: 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; /** * System Id value submitted by the clients */ systemId?: string; /** * Total size submitted by the client */ totalSize?: number; }