Skip to main content

bitwarden_api_api/models/
organization_report_file_response_model.rs

1/*
2 * Bitwarden Internal API
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: latest
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use serde::{Deserialize, Serialize};
12
13use crate::models;
14
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct OrganizationReportFileResponseModel {
17    #[serde(
18        rename = "reportFileUploadUrl",
19        alias = "ReportFileUploadUrl",
20        skip_serializing_if = "Option::is_none"
21    )]
22    pub report_file_upload_url: Option<String>,
23    #[serde(
24        rename = "reportResponse",
25        alias = "ReportResponse",
26        skip_serializing_if = "Option::is_none"
27    )]
28    pub report_response: Option<Box<models::OrganizationReportResponseModel>>,
29    #[serde(
30        rename = "fileUploadType",
31        alias = "FileUploadType",
32        skip_serializing_if = "Option::is_none"
33    )]
34    pub file_upload_type: Option<models::FileUploadType>,
35}
36
37impl OrganizationReportFileResponseModel {
38    pub fn new() -> OrganizationReportFileResponseModel {
39        OrganizationReportFileResponseModel {
40            report_file_upload_url: None,
41            report_response: None,
42            file_upload_type: None,
43        }
44    }
45}