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 PeerResponse {
    #[serde(rename = "bandwidth_estimate_bps", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub bandwidth_estimate_bps: Option<Option<i64>>,
    #[serde(rename = "bytes_transferred_total")]
    pub bytes_transferred_total: i64,
    #[serde(rename = "id")]
    pub id: uuid::Uuid,
    #[serde(rename = "last_probed_at", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub last_probed_at: Option<Option<String>>,
    #[serde(rename = "last_transfer_at", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub last_transfer_at: Option<Option<String>>,
    #[serde(rename = "latency_ms", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub latency_ms: Option<Option<i32>>,
    #[serde(rename = "shared_artifacts_count")]
    pub shared_artifacts_count: i32,
    #[serde(rename = "shared_chunks_count")]
    pub shared_chunks_count: i32,
    #[serde(rename = "status")]
    pub status: String,
    #[serde(rename = "target_peer_id")]
    pub target_peer_id: uuid::Uuid,
    #[serde(rename = "transfer_failure_count")]
    pub transfer_failure_count: i32,
    #[serde(rename = "transfer_success_count")]
    pub transfer_success_count: i32,
}

impl PeerResponse {
    pub fn new(bytes_transferred_total: i64, id: uuid::Uuid, shared_artifacts_count: i32, shared_chunks_count: i32, status: String, target_peer_id: uuid::Uuid, transfer_failure_count: i32, transfer_success_count: i32) -> PeerResponse {
        PeerResponse {
            bandwidth_estimate_bps: None,
            bytes_transferred_total,
            id,
            last_probed_at: None,
            last_transfer_at: None,
            latency_ms: None,
            shared_artifacts_count,
            shared_chunks_count,
            status,
            target_peer_id,
            transfer_failure_count,
            transfer_success_count,
        }
    }
}