UNPKG

wallee

Version:
61 lines (60 loc) 1.38 kB
declare class Customer { /** * The date and time when the object was created. */ 'createdOn'?: Date; /** * The customer's ID in the merchant's system. */ 'customerId'?: string; /** * The customer's email address. */ 'emailAddress'?: string; /** * The customer's family or last name. */ 'familyName'?: string; /** * The customer's given or first name. */ 'givenName'?: string; /** * A unique identifier for the object. */ 'id'?: number; /** * The language that is linked to the object. */ 'language'?: string; /** * The ID of the space this object belongs to. */ 'linkedSpaceId'?: number; /** * Allow to store additional information about the object. */ 'metaData'?: { [key: string]: string; }; /** * The customer's preferred currency. */ 'preferredCurrency'?: string; /** * The version is used for optimistic locking and incremented whenever the object is updated. */ 'version'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { Customer };