Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow
ContentFieldsAPIResponse.Data
to hold nested objects
By using a generic `interface{}` instead of a `string` ContentFieldsAPIResponse type can be used to unmarshall ContentFields with nested objects, not just strings. For example, this kind of response would throw an error before: ```json { "data": [ { "name": "some name", "complex-object": { "content": "content" } } ] } ```
- Loading branch information