The goal of the package is to get the JSON response and decode it into an expected data type. So the expected data type now just needs to conform to Decodable
, instead of Codable(which includes both Decodable
and Encodable
).
The goal of the package is to get the JSON response and decode it into an expected data type. So the expected data type now just needs to conform to Decodable
, instead of Codable(which includes both Decodable
and Encodable
).