Data coming from (or going to) an API is not always organized/standardized. For instance, the json keys could have different naming schemes. Consider the case below:
|
|
So how does this get coded? By using a feature called codingkeys. Simply create an enum inside the object you are decoding to as following:
|
|
This codingkeys enum will allow the codable object to map to the json keys.
Originally published 09/16/2021 https://pittcsc.org/, republished 09/09/2022.