You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@JsonObject
public class ValidationErrorsModel {
@SerializedName("validation_errors")
@JsonField(name = "validation_errors")
public SimpleArrayMap<String, List<String>> validationErrors;
}
and i have another one that extends it:
@JsonObject
public class UserCreateModel extends ValidationErrorsModel
but it appears this error:
Caused by: com.bluelinelabs.logansquare.NoSuchMapperException: Class io.swagger.client.model.ValidationErrorsModel could not be mapped to a JSON object. Perhaps it hasn't been annotated with @JsonObject?
at com.bluelinelabs.logansquare.LoganSquare.mapperFor(LoganSquare.java:304)
at io.swagger.client.model.UserCreateModel$$JsonObjectMapper.<clinit>(UserCreateModel$$JsonObjectMapper.java:15)
any idea how can i solve it?
Thanks
The text was updated successfully, but these errors were encountered:
I haven't been able to reproduce anything like this since you submitted the issue. Would it be possible to create a small demo so I could check out what's going wrong?
Hi,
i have this model:
and i have another one that extends it:
but it appears this error:
any idea how can i solve it?
Thanks
The text was updated successfully, but these errors were encountered: