I am experiencing data loss when receiving the res...
# ktor
d
I am experiencing data loss when receiving the response from an API. I have the following object:
Copy code
GloUserDTO(
    val created_date: String?,
    val id: String?
)
The JSON that comes back looks like this:
Copy code
{
  "created_date": "2018-03-12T23:51:46.959Z",
  "id": "some-uuid-goes-here"
}
Everything serializes except the date field.