How to migrate from @SerializedName an @Expose
idoub opened this issue · 2 comments
idoub commented
With the latest update, the annotations @SerializezdName and @expose have been removed from this library and as far as I can tell, the functionality those provided no longer exists. Is there a migration process to move code that used those annotations to the latest version?
rashtao commented
In version 3.0.0 all data binding capabilities have been removed in favor of jackson-dataformat-velocypack.
The functionalities of @SerializezdName and @Expose can be now implemented using @JsonProperty, @JsonInclude and @JsonIgnore.
idoub commented
Thanks