import { RequestLocationCreateOrUpdate } from './requestLocationCreateOrUpdate'; import { RequestOrderItemCreateOrUpdate } from './requestOrderItemCreateOrUpdate'; export interface RequestOrderCreateOrUpdate { status?: string; date: string; startTime?: string; endTime?: string; code?: string; operationCenter: string; customer: 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; deliveryAddressLocation?: RequestLocationCreateOrUpdate; items: RequestOrderItemCreateOrUpdate[]; comments?: string; cod?: boolean; poNumber?: string; employee?: string; delivery?: string; parentOrder?: string; import?: string; sourceCreatedBy?: string; }