space_traders/models/install_mount_201_response.rs
1//! Generated by: <https://openapi-generator.tech>
2//!
3//! Version of specification: `2.0.0`
4
5use serde::{Deserialize, Serialize};
6
7///
8#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
9pub struct InstallMount201Response {
10 #[serde(rename = "data")]
11 pub data: crate::models::InstallMount201ResponseData,
12}
13
14impl InstallMount201Response {
15 /// Create value with optional fields set to `None`.
16 #[allow(clippy::too_many_arguments)]
17 pub fn new(data: crate::models::InstallMount201ResponseData) -> InstallMount201Response {
18 InstallMount201Response { data }
19 }
20}