How to change root of JSON response before cast to typed entity?
Task The remote server returns a response with a body: { done: true, response: { result: { // data } } } In case of an error, a response with 200 status and a body: { done: false, error: { message: “” } } Before JSON is transferred to typed entities, I want to set […]