Interface InvalidItemShippingDetailsError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
InvalidItemShippingDetailsErrorImpl

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

     InvalidItemShippingDetailsError invalidItemShippingDetailsError = InvalidItemShippingDetailsError.builder()
             .message("{message}")
             .subject("{subject}")
             .itemId("{itemId}")
             .build()