Closed
Description
Currently core-http
deserialize empty body response with a default value and not a null (here is an example). The reason we do not deserialize to null
is we always attach a _response
information to our response values and this is not possible with a null
. In order to faithfully deserialize values coming form the server, we need to change the representation of _response
. This should be taken into consideration in this issue: #10887. Because it is a breaking change, it should be planned for core-http v2
.