Maybe stupid question but: full json: ``` { foo...
# klaxon
y
Maybe stupid question but: full json:
Copy code
{
   foo: { ... }
   bar: { ... }
}
reduced json:
Copy code
{
   bar: { ... }
}
and the model for it :
Copy code
class MyEntity {
   @Json(name = "foo", ignored = true)
   val myFoo : ...,

   @Json(name = "bar")
   val myBar : ...
}