wallee
Version:
TypeScript/JavaScript client for wallee
45 lines (44 loc) • 1 kB
TypeScript
declare class AbstractCustomerActive {
/**
* 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;
/**
* The language that is linked to the object.
*/
'language'?: string;
/**
* Allow to store additional information about the object.
*/
'metaData'?: {
[]: string;
};
/**
* The customer's preferred currency.
*/
'preferredCurrency'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { AbstractCustomerActive };