I hane an api response that I want to be represented like an enum. The problem is that api response returns integer values. Is it possible moshi handle this case without writing custom adapters on my own?
Example(I want to display rating and type as enums):
{
"id": 0,
"type": 0,
"displayName": "nikos",
"avatar": 0,
"rating": 0,
"language": "en"
}