1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/* 
 * Client Portal Web API
 *
 * Production version of the Client Portal Web API
 *
 * OpenAPI spec version: 1.0.0
 * 
 * Generated by: https://github.com/swagger-api/swagger-codegen.git
 */


#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct InlineResponse20018 {
  /// disclaimer message
  #[serde(rename = "DT")]
  DT: Option<String>,
  /// fyi code
  #[serde(rename = "FC")]
  FC: Option<String>
}

impl InlineResponse20018 {
  pub fn new() -> InlineResponse20018 {
    InlineResponse20018 {
      DT: None,
      FC: None
    }
  }

  pub fn set_DT(&mut self, DT: String) {
    self.DT = Some(DT);
  }

  pub fn with_DT(mut self, DT: String) -> InlineResponse20018 {
    self.DT = Some(DT);
    self
  }

  pub fn DT(&self) -> Option<&String> {
    self.DT.as_ref()
  }

  pub fn reset_DT(&mut self) {
    self.DT = None;
  }

  pub fn set_FC(&mut self, FC: String) {
    self.FC = Some(FC);
  }

  pub fn with_FC(mut self, FC: String) -> InlineResponse20018 {
    self.FC = Some(FC);
    self
  }

  pub fn FC(&self) -> Option<&String> {
    self.FC.as_ref()
  }

  pub fn reset_FC(&mut self) {
    self.FC = None;
  }

}