Perhaps this is related to changes in the library but this line of code ```csharp IRestResponse response = client.Execute(request); ``` no longer compiles with latest version of RestSharp. I recommend just changing to ```csharp var response = client.Execute(request); ``` and will submit a PR
Perhaps this is related to changes in the library but this line of code
no longer compiles with latest version of RestSharp.
I recommend just changing to
and will submit a PR