Esempio n. 1
0
 public Account.Update_Profile_Image.Result Update_Profile_Image(String image, Boolean? include_entities, String skip_status)
 {
     var cm = new Account.Update_Profile_Image.Command();
     cm.image = image;
     cm.include_entities = include_entities;
     cm.skip_status = skip_status;
     return this.Update_Profile_Image(cm);
 }
Esempio n. 2
0
 public Account.Update_Profile_Image.Result Update_Profile_Image(String image)
 {
     var cm = new Account.Update_Profile_Image.Command();
     cm.image = image;
     return this.Update_Profile_Image(cm);
 }