export declare class Customer { 'customerAccountId'?: string; 'customerAccountName'?: string; 'customerTIN'?: string; 'customerPhysicalStreetAddress1'?: string; 'customerPhysicalStreetAddress2'?: string; 'customerPhysicalCity'?: string; 'customerPhysicalZipPostalCode'?: string; 'customerPhysicalCountry'?: string; 'customerBillingAddress1'?: string; 'customerBillingAddress2'?: string; 'customerBillingCity'?: string; 'customerBillingZipPostalCode'?: string; 'customerBillingCountry'?: string; 'customerEmail'?: string; 'customerDomainAddress'?: string; 'customerActiveStatus'?: boolean; 'transactionCreditLimit'?: number; 'customerCreditLimit'?: number; 'customerTermsDueDays'?: number; 'customerEnteredBy'?: string; static readonly discriminator: string | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }