import { RequestLocationCreateOrUpdate } from './requestLocationCreateOrUpdate'; export interface RequestCustomerOnboard { name: string; vertical: string; channel: string; segment?: string; employee?: string; mobile: string; email?: string; operationCenter: string; deliveryAddressLine1: string; deliveryAddressLine2?: string; deliveryAddressCity: string; deliveryAddressState: string; deliveryAddressCountry: string; deliveryAddressPincode: string; deliveryAddressLocation: RequestLocationCreateOrUpdate; sameAsDeliveryAddress?: boolean; billingAddressLine1?: string; billingAddressLine2?: string; billingAddressCity?: string; billingAddressState?: string; billingAddressCountry?: string; billingAddressPincode?: string; gstNumber?: string; panNumber?: string; panImage1?: string; panImage2?: string; aadharNumber?: string; aadharImage1?: string; aadharImage2?: string; users: { name: string; mobile: string; permissions: string[]; }[]; onboardOn?: string; businessType?: string; }