JsonApiX is an Android, annotation processor library that was made to transform regular Kotlin classes into their JSON API representations, with the ability to serialize or deserialize them to or from strings.
Apache License 2.0
38
stars
9
forks
source link
Add support for ResourceObject meta and Relationships meta #52
Add support for different placements for Meta
Now the libs support having meta inside:
Root
Resource Object
Relationships
I used the same concept in links to achieve this, So I created MetaPlacementStrategy inside @JsonApiXMeta and based on its value the meta is going to be fetched and stored
Unfortunately, till now we don't support meta inside the include block as we don't support it for links either as it's complex to achieve in the current time schedule.
Add support for different placements for Meta Now the libs support having meta inside:
I used the same concept in links to achieve this, So I created
MetaPlacementStrategy
inside@JsonApiXMeta
and based on its value the meta is going to be fetched and storedUnfortunately, till now we don't support meta inside the
include
block as we don't support it forlinks
either as it's complex to achieve in the current time schedule.