import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; export interface RequestCustomerCreateOrUpdate { onboard?: boolean; status?: boolean; name: string; code?: string; mobile?: string; email?: string; image?: string; parent?: string; vertical: string; channel: string; segment?: string; employee?: string; collectionAgent?: string; gstNumber?: string; panNumber?: string; panImage1?: string; panImage2?: string; aadharNumber?: string; aadharImage1?: string; aadharImage2?: string; useParentBillingAddress?: boolean; billingAddressLine1?: string; billingAddressLine2?: string; billingAddressCity?: string; billingAddressState?: string; billingAddressCountry?: string; billingAddressPincode?: string; bankName?: string; accountNumber?: string; ifscCode?: string; outstandingLimit?: number; walkInCustomer?: boolean; noRoutePlan?: boolean; sendInvoiceEmail?: boolean; selfOperationCenter?: string; disableQuickbooks?: boolean; onboardOn?: string; businessType?: string; attachments?: RequestAttachmentCreateOrUpdate[]; }