Interface InvalidJsonInputError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
InvalidJsonInputErrorImpl

public interface InvalidJsonInputError extends ErrorObject

Returned when an invalid JSON input has been sent. Either the JSON is syntactically incorrect or does not conform to the expected shape (for example is missing a required field).

The client application should validate the input according to the constraints described in the error message before sending the request.


Example to create an instance using the builder pattern

     InvalidJsonInputError invalidJsonInputError = InvalidJsonInputError.builder()
             .message("{message}")
             .detailedErrorMessage("{detailedErrorMessage}")
             .build()