/** * Registration Service API * Registration service for registering a user * * 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 GPRMember { /** * Mandatory Hertz subsidary being one of Hertz, Dollar, Thrifty. Full name spelling. */ brand: string; /** * Tracking identifier submitted by client for inclusion in logs and return to client. */ correlationId: string; /** * Credit Card Number */ creditCardNumber?: string; /** * Driver License Number */ drivingLicenseNumber?: string; /** * Mandatory client suplied locale under which the operation should be conducted. */ locale: string; /** * Loyalty Member Id */ memberId: string; /** * User Password */ password: string; /** * System Id value submitted by the clients */ systemId?: string; /** * Total size submitted by the client */ totalSize?: string; /** * User Name */ userName?: string; }