Interface OrderPatchImportRequest

All Superinterfaces:
ImportRequest
All Known Implementing Classes:
OrderPatchImportRequestImpl

public interface OrderPatchImportRequest extends ImportRequest

The request body to import OrderPatches. The data to be imported are represented by OrderPatchImport.


Example to create an instance using the builder pattern

     OrderPatchImportRequest orderPatchImportRequest = OrderPatchImportRequest.builder()
             .plusPatches(patchesBuilder -> patchesBuilder)
             .build()