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

use std::fmt::Debug;
use std::str::FromStr;

use crate::types::*;
use crate::tdkit;

/// Uploads a new profile photo for the current user. If something changes, 
#[derive(Debug, Serialize, Deserialize)]
pub struct SetProfilePhoto {
  #[doc(hidden)]
  #[serde(rename(serialize = "@type", deserialize = "@type"))]
  td_name: String, // setProfilePhoto
  /// Profile photo to set. inputFileId and inputFileRemote may still be unsupported.
  photo: Option<Box<InputFile>>,
  
}


impl Clone for SetProfilePhoto {
  fn clone(&self) -> Self { rtd_clone!()(self) }
}


impl Object for SetProfilePhoto {}
impl RObject for SetProfilePhoto {
  #[doc(hidden)] fn td_name(&self) -> &'static str { "setProfilePhoto" }
  fn td_type(&self) -> RTDType { RTDType::SetProfilePhoto }
  fn to_json(&self) -> String { rtd_to_json!()(self) }
}


impl Function for SetProfilePhoto {}


impl SetProfilePhoto {
  #[doc(hidden)] pub fn _new() -> Self {
    Self {
      td_name: "setProfilePhoto".to_string(),
      photo: None,
      
    }
  }
  
  pub fn photo(&self) -> Option<Box<InputFile>> { self.photo.clone() }
  #[doc(hidden)] pub fn _set_photo(&mut self, photo: Box<InputFile>) -> &mut Self { self.photo = Some(photo); self }
  
  pub fn from_json<S: AsRef<str>>(json: S) -> Option<Self> { from_json!()(json.as_ref()) }
}