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 SyncTaskResponse {
    #[serde(rename = "artifact_id")]
    pub artifact_id: uuid::Uuid,
    #[serde(rename = "artifact_size")]
    pub artifact_size: i64,
    /// When the task was enqueued. Lets clients tell a freshly-scheduled task apart from a stale queue entry (used by the replication-schedule check). Serialized as whole-second RFC3339 with a `Z` suffix (e.g. `2026-05-29T12:34:56Z`) so simple ISO8601 parsers can consume it.
    #[serde(rename = "created_at")]
    pub created_at: String,
    #[serde(rename = "id")]
    pub id: uuid::Uuid,
    #[serde(rename = "priority")]
    pub priority: i32,
    /// When the worker began transferring, if it has started. Same format as `created_at`.
    #[serde(rename = "started_at", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub started_at: Option<Option<String>>,
    /// Task status (e.g. \"pending\"). Listing currently returns pending tasks.
    #[serde(rename = "status")]
    pub status: String,
    #[serde(rename = "storage_key")]
    pub storage_key: String,
}

impl SyncTaskResponse {
    pub fn new(artifact_id: uuid::Uuid, artifact_size: i64, created_at: String, id: uuid::Uuid, priority: i32, status: String, storage_key: String) -> SyncTaskResponse {
        SyncTaskResponse {
            artifact_id,
            artifact_size,
            created_at,
            id,
            priority,
            started_at: None,
            status,
            storage_key,
        }
    }
}