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