| /* | |
| * | |
| * | |
| * 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 HttpConfigPatch { | |
| pub connect_timeout: Option<Option<u64>>, | |
| pub max_retries: Option<Option<u32>>, | |
| pub read_timeout: Option<Option<u64>>, | |
| } | |
| impl HttpConfigPatch { | |
| pub fn new() -> HttpConfigPatch { | |
| HttpConfigPatch { | |
| connect_timeout: None, | |
| max_retries: None, | |
| read_timeout: None, | |
| } | |
| } | |
| } | |