Interface GraphQLEditPreviewFailedError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLEditPreviewFailedError extends GraphQLErrorObject

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

     GraphQLEditPreviewFailedError graphQLEditPreviewFailedError = GraphQLEditPreviewFailedError.builder()
             .result(resultBuilder -> resultBuilder)
             .build()