It looks like Restsharp 113 no longer has a MaxTimeout property so the currently library fails when calls. This appears to be due to the following in ApiClient.cs
/// <summary> /// Updates the wrapped RestClient for this <see cref="ApiClient" /> instance. /// </summary> internal void Update() { var options = new RestClientOptions(Configuration.BasePath) { UserAgent = Configuration.UserAgent, MaxTimeout = Configuration.Timeout }; RestClient = new RestClient(options); }
It looks like Restsharp 113 no longer has a MaxTimeout property so the currently library fails when calls. This appears to be due to the following in ApiClient.cs
/// <summary> /// Updates the wrapped RestClient for this <see cref="ApiClient" /> instance. /// </summary> internal void Update() { var options = new RestClientOptions(Configuration.BasePath) { UserAgent = Configuration.UserAgent, MaxTimeout = Configuration.Timeout }; RestClient = new RestClient(options); }