Interface GraphQLInvalidItemShippingDetailsError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLInvalidItemShippingDetailsError extends GraphQLErrorObject

Returned when Line Item or Custom Line Item quantities set under ItemShippingDetails do not match the sum of the quantities in their respective shipping details.

When a Cart is frozen, the error can be returned as a failed response to all update actions on Carts and My Carts.

The error is also returned as a failed response to:


Example to create an instance using the builder pattern

     GraphQLInvalidItemShippingDetailsError graphQLInvalidItemShippingDetailsError = GraphQLInvalidItemShippingDetailsError.builder()
             .subject("{subject}")
             .itemId("{itemId}")
             .build()