Interface ShippingMethodDoesNotMatchCartError

All Superinterfaces:
ErrorObject

public interface ShippingMethodDoesNotMatchCartError extends ErrorObject

Returned when the Cart contains a ShippingMethod that is not allowed for the Cart. In this case, the ShippingMethodState value is DoesNotMatchCart.

The error is returned as a failed response to the Create Order from Cart or Create Order in Store from Cart requests.


Example to create an instance using the builder pattern

     ShippingMethodDoesNotMatchCartError shippingMethodDoesNotMatchCartError = ShippingMethodDoesNotMatchCartError.builder()
             .message("{message}")
             .build()