#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct VirtualDeviceContext {
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
pub id: Option<uuid::Uuid>,
#[serde(rename = "object_type", skip_serializing_if = "Option::is_none")]
pub object_type: Option<String>,
#[serde(rename = "display", skip_serializing_if = "Option::is_none")]
pub display: Option<String>,
#[serde(rename = "url", skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
#[serde(rename = "natural_slug", skip_serializing_if = "Option::is_none")]
pub natural_slug: Option<String>,
#[serde(rename = "name")]
pub name: String,
#[serde(
rename = "identifier",
default,
with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none"
)]
pub identifier: Option<Option<i32>>,
#[serde(rename = "description", skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
#[serde(rename = "device")]
pub device: Box<crate::models::ApprovalWorkflowStageResponseApprovalWorkflowStage>,
#[serde(rename = "status")]
pub status: Box<crate::models::ApprovalWorkflowStageResponseApprovalWorkflowStage>,
#[serde(
rename = "role",
default,
with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none"
)]
pub role: Option<Option<Box<crate::models::ApprovalWorkflowUser>>>,
#[serde(
rename = "primary_ip4",
default,
with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none"
)]
pub primary_ip4: Option<Option<Box<crate::models::PrimaryIpv4>>>,
#[serde(
rename = "primary_ip6",
default,
with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none"
)]
pub primary_ip6: Option<Option<Box<crate::models::PrimaryIpv6>>>,
#[serde(
rename = "tenant",
default,
with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none"
)]
pub tenant: Option<Option<Box<crate::models::ApprovalWorkflowUser>>>,
#[serde(
rename = "created",
default,
with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none"
)]
pub created: Option<Option<String>>,
#[serde(
rename = "last_updated",
default,
with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none"
)]
pub last_updated: Option<Option<String>>,
#[serde(rename = "notes_url", skip_serializing_if = "Option::is_none")]
pub notes_url: Option<String>,
#[serde(rename = "custom_fields", skip_serializing_if = "Option::is_none")]
pub custom_fields: Option<::std::collections::HashMap<String, serde_json::Value>>,
#[serde(rename = "tags", skip_serializing_if = "Option::is_none")]
pub tags: Option<Vec<crate::models::ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
}
impl VirtualDeviceContext {
pub fn new(
name: String,
device: crate::models::ApprovalWorkflowStageResponseApprovalWorkflowStage,
status: crate::models::ApprovalWorkflowStageResponseApprovalWorkflowStage,
) -> VirtualDeviceContext {
VirtualDeviceContext {
id: None,
object_type: None,
display: None,
url: None,
natural_slug: None,
name,
identifier: None,
description: None,
device: Box::new(device),
status: Box::new(status),
role: None,
primary_ip4: None,
primary_ip6: None,
tenant: None,
created: None,
last_updated: None,
notes_url: None,
custom_fields: None,
tags: None,
}
}
}