| /* | |
| * | |
| * | |
| * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | |
| * | |
| * The version of the OpenAPI document: | |
| * | |
| * Generated by: https://openapi-generator.tech | |
| */ | |
| use crate::models; | |
| use serde::{Deserialize, Serialize}; | |
| pub struct HttpConfig { | |
| pub connect_timeout: Option<u64>, | |
| pub max_retries: Option<u32>, | |
| pub read_timeout: Option<u64>, | |
| } | |
| impl HttpConfig { | |
| pub fn new() -> HttpConfig { | |
| HttpConfig { | |
| connect_timeout: None, | |
| max_retries: None, | |
| read_timeout: None, | |
| } | |
| } | |
| } | |