Interface NoMatchingProductDiscountFoundError

All Superinterfaces:
ErrorObject

public interface NoMatchingProductDiscountFoundError extends ErrorObject

Returned when a Product Discount could not be found that could be applied to the Price of a Product Variant.

The error is returned as a failed response to the Get Matching ProductDiscount request.


Example to create an instance using the builder pattern

     NoMatchingProductDiscountFoundError noMatchingProductDiscountFoundError = NoMatchingProductDiscountFoundError.builder()
             .message("{message}")
             .build()