use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct FormatHandlerResponse {
#[serde(rename = "capabilities", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub capabilities: Option<Option<serde_json::Value>>,
#[serde(rename = "created_at")]
pub created_at: String,
#[serde(rename = "description", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub description: Option<Option<String>>,
#[serde(rename = "display_name")]
pub display_name: String,
#[serde(rename = "extensions")]
pub extensions: Vec<String>,
#[serde(rename = "format_key")]
pub format_key: String,
#[serde(rename = "handler_type")]
pub handler_type: models::FormatHandlerType,
#[serde(rename = "id")]
pub id: uuid::Uuid,
#[serde(rename = "is_enabled")]
pub is_enabled: bool,
#[serde(rename = "plugin_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub plugin_id: Option<Option<uuid::Uuid>>,
#[serde(rename = "priority")]
pub priority: i32,
#[serde(rename = "repository_count", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub repository_count: Option<Option<i64>>,
#[serde(rename = "updated_at")]
pub updated_at: String,
}
impl FormatHandlerResponse {
pub fn new(created_at: String, display_name: String, extensions: Vec<String>, format_key: String, handler_type: models::FormatHandlerType, id: uuid::Uuid, is_enabled: bool, priority: i32, updated_at: String) -> FormatHandlerResponse {
FormatHandlerResponse {
capabilities: None,
created_at,
description: None,
display_name,
extensions,
format_key,
handler_type,
id,
is_enabled,
plugin_id: None,
priority,
repository_count: None,
updated_at,
}
}
}