creating C# classes by parsing jsdoc3 JSON file?
I am consuming an REST API (Contrast Security ) which unfortunately for me, does not provide Swagger documentation. It does provide JSDoc, and I’m able to extract what looks like a JSDoc3 JSON file (accessible only to a logged in user). The provided .NET REST client lacks many methods that exist in the JSDoc, some of which I need. In order to extend the client properly, I would like to extract the method names and paths and other useful information from the JSDoc3 JSON file. The most straightforward way would seem to be to make some C# classes and use Newtonsoft JsonConvert.DeserializeObject to deserialize it and then inspect the deserialized object for the names, paths, etc that I need.