Moshi: How to Deserialize JSON with a mix of fixed and dynamic properties
For a JSON like this consider the properties other than attributes are dynamic: "records": [ { "attributes": { "type": "...", "url": "..." }, "Id": "...", "Name": "...", "...": "..." } ] How can I Desrialize or Unmarshall into a Dataclass…