import { RequestDispatchInvoiceItemCreateOrUpdate } from './requestDispatchInvoiceItemCreateOrUpdate'; export interface RequestDispatchInvoiceCreateOrUpdate { lmDispatch: string; date: string; operationCenter: string; customer: string; poNumber?: string; dcGstNumber?: string; invoiceNumber?: 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; billingFullAddress: string; deliveryFullAddress: string; items: RequestDispatchInvoiceItemCreateOrUpdate[]; }