/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ import type { Address } from './Address'; import type { BusinessDetail } from './BusinessDetail'; import type { EndCustomerStatus } from './EndCustomerStatus'; import type { IdentityAccountResponse } from './IdentityAccountResponse'; import type { IndividualDetail } from './IndividualDetail'; import type { KYCDocumentResponse } from './KYCDocumentResponse'; /** * * @export * @interface Customer */ export interface Customer { /** * * @type {string} * @memberof Customer */ type: CustomerTypeEnum; /** * Merchant's reference of this end customer, eg Merchant's user's id. Must be unique. * @type {string} * @memberof Customer */ referenceId: string; /** * * @type {IndividualDetail} * @memberof Customer */ individualDetail: IndividualDetail | null; /** * * @type {BusinessDetail} * @memberof Customer */ businessDetail: BusinessDetail | null; /** * * @type {string} * @memberof Customer */ description: string | null; /** * * @type {string} * @memberof Customer */ email: string | null; /** * * @type {string} * @memberof Customer */ mobileNumber: string | null; /** * * @type {string} * @memberof Customer */ phoneNumber: string | null; /** * * @type {Array
} * @memberof Customer */ addresses: Array | null; /** * * @type {Array