I have written a C# API that receives a payload from the DocuSign Connect (Webhook). I have no issue in receiving events when a document is changes (event for signatures, deleted, void, completed, etc...). The issue is that when I do received the JSON payload, I have no idea what model class I need to deserialize (using Newton Soft JSON utilities) into. Without the model, I cannot extract any properties (without a model) from the deserialized string and a C# and a compilation error occurs.
Is there a proper model I can deserialize the JSON string to?