Using the Contentful .NET SDK, I want to retrieve the raw JSON representation of an entry rather than serializing that JSON to an object. Is it possible?
I looked at GetEntry() and GetEntries() in https://github.com/contentful/contentful.net/blob/master/Contentful.Core/ContentfulClient.cs. Passing JObject or string as the generic doesn't seem to work. I would prefer to avoid hacking the SDK or invoking the RESTful endpoint without the SDK.
Update 1 10.July.2020: or does Contentful provide a default class to represent entries, where that class might expose the raw JSON?