``` { "data": { "id": "1", "type": "todos", "attributes": { "title": "Clean the kitchen!" }, "relationships": { "user": { "data": { "type": "users", "id": "2" } }, }, }, "included": [ { "id": 2, "type": "users", "attributes": { "name": "Steve" } } ], } ``` I have a response, in relationships, type of `user.id` is string but in included it is as number. How to deserialize it?
I have a response, in relationships, type of
user.idis string but in included it is as number.How to deserialize it?