I have an implementation of webhooks originating from Trello. The JSON response is put into a queue and I'm writing code that will process this queue. I'm using Manatee.Trello to talk with Trello.
The webhook response from Trello includes an action and a model. I don't care about the model, but need to react to the action and it's associated data. I see that Manatee.Trello has classes for all the Actions, but I don't see how I could deserialize the JSON I have representing the action into the appropriate class.
I'm currently using the Manatee.Json classes to break out the data, but I'd rather have the fully typed classes to deal with.