/* * Tribufu API * * REST API to access Tribufu services. * * The version of the OpenAPI document: 1.1.0 * Contact: contact@tribufu.com * Generated by: https://github.com/openapitools/openapi-generator.git */ using Polly; using RestSharp; namespace Tribufu.Client { /// /// Configuration class to set the polly retry policies to be applied to the requests. /// public static class RetryConfiguration { /// /// Retry policy /// public static Policy RetryPolicy { get; set; } /// /// Async retry policy /// public static AsyncPolicy AsyncRetryPolicy { get; set; } } }