Interface InvalidFieldError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
InvalidFieldErrorImpl

public interface InvalidFieldError extends ErrorObject

A given field is not supported. This error occurs, for example, if the field variants, which is not supported by Product Import, is sent to the Product Import endpoint.


Example to create an instance using the builder pattern

     InvalidFieldError invalidFieldError = InvalidFieldError.builder()
             .message("{message}")
             .field("{field}")
             .build()