Esempio n. 1
0
 public Friendships.Create.Result Create(Int64? user_id, Boolean? follow)
 {
     var cm = new Friendships.Create.Command();
     cm.user_id = user_id;
     cm.follow = follow;
     return this.Create(cm);
 }
Esempio n. 2
0
 public Friendships.Create.Result Create()
 {
     var cm = new Friendships.Create.Command();
     return this.Create(cm);
 }
Esempio n. 3
0
 public Friendships.Create.Result Create(String screen_name, Boolean? follow)
 {
     var cm = new Friendships.Create.Command();
     cm.screen_name = screen_name;
     cm.follow = follow;
     return this.Create(cm);
 }
Esempio n. 4
0
 public Friendships.Create.Result[] Create(Friendships.Create.Command command)
 {
     return(_ApiEndpoints._Client.GetResult <Friendships.Create.Command, Friendships.Create.Result[]>(command));
 }