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.

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


Example to create an instance using the builder pattern

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