import { FieldDataUpsertOperationInterface } from './fields.interface'; import { PagedRequestOptionsInterface } from './paging.interface'; export interface ListSalesOderAuxiliaryDataRequestInterface { salesOrderAuxiliaryDataObjectId?: SalesOrderAuxiliaryDataObjectIDInterface; pagingOptions?: PagedRequestOptionsInterface; } export interface SalesOrderAuxiliaryDataObjectIDInterface { orderId?: string; businessId?: string; } export interface UpsertSalesOrderAuxiliaryDataRequestInterface { salesOrderAuxiliaryDataObjectId?: SalesOrderAuxiliaryDataObjectIDInterface; fieldDataUpsertOperations?: FieldDataUpsertOperationInterface[]; }