use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct PolicyResponse {
#[serde(rename = "block_on_fail")]
pub block_on_fail: bool,
#[serde(rename = "block_unscanned")]
pub block_unscanned: bool,
#[serde(rename = "created_at")]
pub created_at: String,
#[serde(rename = "id")]
pub id: uuid::Uuid,
#[serde(rename = "is_enabled")]
pub is_enabled: bool,
#[serde(rename = "max_artifact_age_days", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub max_artifact_age_days: Option<Option<i32>>,
#[serde(rename = "max_severity")]
pub max_severity: String,
#[serde(rename = "min_staging_hours", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub min_staging_hours: Option<Option<i32>>,
#[serde(rename = "name")]
pub name: String,
#[serde(rename = "repository_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub repository_id: Option<Option<uuid::Uuid>>,
#[serde(rename = "require_signature")]
pub require_signature: bool,
#[serde(rename = "updated_at")]
pub updated_at: String,
}
impl PolicyResponse {
pub fn new(block_on_fail: bool, block_unscanned: bool, created_at: String, id: uuid::Uuid, is_enabled: bool, max_severity: String, name: String, require_signature: bool, updated_at: String) -> PolicyResponse {
PolicyResponse {
block_on_fail,
block_unscanned,
created_at,
id,
is_enabled,
max_artifact_age_days: None,
max_severity,
min_staging_hours: None,
name,
repository_id: None,
require_signature,
updated_at,
}
}
}