Interface EditPreviewFailedError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
EditPreviewFailedErrorImpl

public interface EditPreviewFailedError extends ErrorObject

Returned when a preview to find an appropriate Shipping Method for an OrderEdit could not be generated.

The error is returned as a failed response to the Get Shipping Methods for an OrderEdit request.


Example to create an instance using the builder pattern

     EditPreviewFailedError editPreviewFailedError = EditPreviewFailedError.builder()
             .message("{message}")
             .result(resultBuilder -> resultBuilder)
             .build()