artifact-keeper-client 1.2.1

Rust client for the Artifact Keeper REST API
Documentation
/*
 * Artifact Keeper API
 *
 * Enterprise artifact registry supporting 45+ package formats.
 *
 * The version of the OpenAPI document: 1.2.1
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct NetworkProfileBody {
    #[serde(rename = "concurrent_transfers_limit", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub concurrent_transfers_limit: Option<Option<i32>>,
    #[serde(rename = "max_bandwidth_bps", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub max_bandwidth_bps: Option<Option<i64>>,
    #[serde(rename = "sync_window_end", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub sync_window_end: Option<Option<String>>,
    #[serde(rename = "sync_window_start", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub sync_window_start: Option<Option<String>>,
    #[serde(rename = "sync_window_timezone", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub sync_window_timezone: Option<Option<String>>,
}

impl NetworkProfileBody {
    pub fn new() -> NetworkProfileBody {
        NetworkProfileBody {
            concurrent_transfers_limit: None,
            max_bandwidth_bps: None,
            sync_window_end: None,
            sync_window_start: None,
            sync_window_timezone: None,
        }
    }
}