mcb_acct_gen/models/acct_sel.rs
1/*
2 * IFX Services for Metropolitan
3 *
4 * IFX Services for Metropolitan
5 *
6 * The version of the OpenAPI document: 0.0.1
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
12pub struct AcctSel {
13 #[serde(rename = "AcctId", skip_serializing_if = "Option::is_none")]
14 pub acct_id: Option<String>,
15 #[serde(rename = "AcctType", skip_serializing_if = "Option::is_none")]
16 pub acct_type: Option<Box<crate::models::AcctType>>,
17}
18
19impl AcctSel {
20 pub fn new() -> AcctSel {
21 AcctSel {
22 acct_id: None,
23 acct_type: None,
24 }
25 }
26}