ib_client/models/account_master.rs
1/*
2 * Client Portal Web API
3 *
4 * Client Portal Web API
5 *
6 * The version of the OpenAPI document: 1.0.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15pub struct AccountMaster {
16 #[serde(rename = "title", skip_serializing_if = "Option::is_none")]
17 pub title: Option<String>,
18 #[serde(rename = "officialTitle", skip_serializing_if = "Option::is_none")]
19 pub official_title: Option<String>,
20}
21
22impl AccountMaster {
23 pub fn new() -> AccountMaster {
24 AccountMaster {
25 title: None,
26 official_title: None,
27 }
28 }
29}
30
31