/** * wallet-api * API * * The version of the OpenAPI document: 2.1.600 * Contact: development@wallet.inc * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; /** * From T, pick a set of properties whose keys are in the union K */ export class PickMSMemberCreationParamsExcludeKeyofMSMemberCreationParamsMemberIdentifier { /** * An optional first name of the member */ 'firstName'?: string; /** * An optional last name of the member */ 'lastName'?: string; 'membershipTierID': string; 'mobileNumber': string; 'email': string; /** * Represents the date of birth of the member. Defaults to 0000-00-00, which represents that the date of birth has not been configured */ 'birthday': string; /** * The number of points that the member has accrued */ 'pointsAccrued': number; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "firstName", "baseName": "firstName", "type": "string" }, { "name": "lastName", "baseName": "lastName", "type": "string" }, { "name": "membershipTierID", "baseName": "membershipTierID", "type": "string" }, { "name": "mobileNumber", "baseName": "mobileNumber", "type": "string" }, { "name": "email", "baseName": "email", "type": "string" }, { "name": "birthday", "baseName": "birthday", "type": "string" }, { "name": "pointsAccrued", "baseName": "pointsAccrued", "type": "number" } ]; static getAttributeTypeMap() { return PickMSMemberCreationParamsExcludeKeyofMSMemberCreationParamsMemberIdentifier.attributeTypeMap; } }