Я использую Jackson и пытаюсь десериализовать ответ JSON, который выглядит следующим образом:
{
"Warnings": [{
"Message": "Account code '48s9' has been removed as it does not match a recognised account"
},
{
"Message": "Account code '48s9' has been removed as it does not match a recognised account"
}
]
}
правильно ли я говорю, что класс будет выглядеть следующим образом? Можно ли как-нибудь это сделать?
@JsonIgnoreProperties(ignoreUnknown = true)
public class WarningsClass {
private String Message;
public String getMessage() {
return Message;
}
public void setMessage(String message) {
Message = message;
}
}