/** * Email VAT receipt service API * This service is created to request VAT receipt via email,if VAT receipt is available. * * 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 EmailVatReceiptRequest { /** * Hertz subsidary being one of Hertz, Dollar, Thrifty. Full name spelling.*Mandatory */ brand?: string; /** * Tracking identifier submitted by client for inclusion in logs and return to client. */ correlationId?: string; /** * Email address sent by the client.*Mandatory */ emailAddress?: string; /** * Grid Version sent by the client.*Mandatory */ gridVersion?: string; /** * Invoice number sent by the client. */ invoiceNumber?: string; /** * Client supplied locale under which the operation should be conducted.*Mandatory */ locale?: string; /** * Receipt record identifier sent by the client.*Mandatory */ receiptRecordIdentifier?: string; /** * Rental Agreement Number sent by the client. */ rentalAgreementNumber?: string; }