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 ListArtifactsQuery {
    /// Server-side artifact grouping.  Supported values: - `maven_component`: Maven/Gradle artifacts are grouped by   groupId, artifactId, and version.  Individual files (jar, pom,   checksums) appear in the `artifact_files` array of each component. - `docker_tag`: Docker/OCI artifacts are grouped by (image, tag),   with `total_size_bytes` summed across the manifest config and   referenced layer blobs.  The grouped rows are returned in the   `docker_tags` array.
    #[serde(rename = "group_by", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub group_by: Option<Option<String>>,
    #[serde(rename = "page", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub page: Option<Option<i32>>,
    #[serde(rename = "path_prefix", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub path_prefix: Option<Option<String>>,
    #[serde(rename = "per_page", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub per_page: Option<Option<i32>>,
    #[serde(rename = "q", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub q: Option<Option<String>>,
}

impl ListArtifactsQuery {
    pub fn new() -> ListArtifactsQuery {
        ListArtifactsQuery {
            group_by: None,
            page: None,
            path_prefix: None,
            per_page: None,
            q: None,
        }
    }
}