Skip to main content

nautobot_openapi/models/
software_image_files.rs

1/*
2 * API Documentation
3 *
4 * Source of truth and network automation platform
5 *
6 * The version of the OpenAPI document: 3.1.0 (3.1)
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
12pub struct SoftwareImageFiles {
13    #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
14    pub id: Option<Box<crate::models::ApprovalWorkflowApprovalWorkflowDefinitionId>>,
15    #[serde(rename = "object_type", skip_serializing_if = "Option::is_none")]
16    pub object_type: Option<String>,
17    #[serde(rename = "url", skip_serializing_if = "Option::is_none")]
18    pub url: Option<String>,
19}
20
21impl SoftwareImageFiles {
22    pub fn new() -> SoftwareImageFiles {
23        SoftwareImageFiles {
24            id: None,
25            object_type: None,
26            url: None,
27        }
28    }
29}