harbor_api/models/
scan_data_export_job.rs

1/*
2 * Harbor API
3 *
4 * These APIs provide services for manipulating Harbor project.
5 *
6 * The version of the OpenAPI document: 2.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// ScanDataExportJob : The metadata associated with the scan data export job
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct ScanDataExportJob {
17    /// The id of the scan data export job
18    #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
19    pub id: Option<i64>,
20}
21
22impl ScanDataExportJob {
23    /// The metadata associated with the scan data export job
24    pub fn new() -> ScanDataExportJob {
25        ScanDataExportJob {
26            id: None,
27        }
28    }
29}
30