import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestInvoiceItemCreateOrUpdate } from './requestInvoiceItemCreateOrUpdate'; export interface RequestInvoiceCreateOrUpdate { date: string; operationCenter: string; code?: string; dcGstNumber?: string; customer: string; customerRemarks?: string; billTo: string; billingAddressLine1: string; billingAddressLine2?: string; billingAddressCity: string; billingAddressState: string; billingAddressCountry: string; billingAddressPincode: string; deliverTo: string; deliveryAddressLine1: string; deliveryAddressLine2?: string; deliveryAddressCity: string; deliveryAddressState: string; deliveryAddressCountry: string; deliveryAddressPincode: string; items: RequestInvoiceItemCreateOrUpdate[]; dueDate?: string; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; delivery?: string; walkInSale?: string; deliveryZohoId?: string; disableQuickBooks?: boolean; }