Feature request: Don't use dynamic

Dynamic defeats the purpose and removes any advantages of a statically typed language. There is no compile time error checking, and there is no way to explore the API with autocomplete, you just have to know sg.client.mail.send.post(requestBody), which is kind of crazy.

Also it relies on the DLR, which is much slower than normal compiled/jitted C# code.