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

use crate::types::*;
use crate::errors::*;




/// Contains the response of a request to TON lite server
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct TonLiteServerResponse {
  #[doc(hidden)]
  #[serde(rename(serialize = "@type", deserialize = "@type"))]
  td_name: String,
  /// The response
  response: String,
  
}

impl RObject for TonLiteServerResponse {
  #[doc(hidden)] fn td_name(&self) -> &'static str { "tonLiteServerResponse" }
  fn to_json(&self) -> RTDResult<String> { Ok(serde_json::to_string(self)?) }
}



impl TonLiteServerResponse {
  pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> { Ok(serde_json::from_str(json.as_ref())?) }
  pub fn builder() -> RTDTonLiteServerResponseBuilder {
    let mut inner = TonLiteServerResponse::default();
    inner.td_name = "tonLiteServerResponse".to_string();
    RTDTonLiteServerResponseBuilder { inner }
  }

  pub fn response(&self) -> &String { &self.response }

}

#[doc(hidden)]
pub struct RTDTonLiteServerResponseBuilder {
  inner: TonLiteServerResponse
}

impl RTDTonLiteServerResponseBuilder {
  pub fn build(&self) -> TonLiteServerResponse { self.inner.clone() }

   
  pub fn response<T: AsRef<str>>(&mut self, response: T) -> &mut Self {
    self.inner.response = response.as_ref().to_string();
    self
  }

}

impl AsRef<TonLiteServerResponse> for TonLiteServerResponse {
  fn as_ref(&self) -> &TonLiteServerResponse { self }
}

impl AsRef<TonLiteServerResponse> for RTDTonLiteServerResponseBuilder {
  fn as_ref(&self) -> &TonLiteServerResponse { &self.inner }
}