Hey there, If i have a struct like this ```go type Blog struct { Id json.Number `jsonapi:"primary,blogs"` // json.Number has unmarshal() impl in encoding/json } ``` The value for `id` will not be mapped into the field. So any custom types which has their own `marshal` or `unmarshal` implementation doesn't work!
Hey there,
If i have a struct like this
The value for
idwill not be mapped into the field. So any custom types which has their ownmarshalorunmarshalimplementation doesn't work!