import { RequestLocationCreateOrUpdate } from './requestLocationCreateOrUpdate'; export interface RequestVendorCreateOrUpdate { status?: boolean; name: string; code?: string; operationCenters?: string[]; services?: string[]; mobile?: string; email?: string; addressLine1?: string; addressLine2?: string; city?: string; state?: string; country?: string; pincode?: string; location?: RequestLocationCreateOrUpdate; bankName?: string; accountNumber?: string; ifscCode?: string; panNumber?: string; gstNumber?: string; aadharNumber?: string; paymentSLA?: number; selfCustomer: string; disableQuickbooks?: boolean; }