Ejemplo n.º 1
0
 public Lists.Destroy.Result Destroy(String list_id, String slug)
 {
     var cm = new Lists.Destroy.Command();
     cm.list_id = list_id;
     cm.slug = slug;
     return this.Destroy(cm);
 }
Ejemplo n.º 2
0
 public Lists.Destroy.Result Destroy(String list_id, String slug, String owner_screen_name, String owner_id)
 {
     var cm = new Lists.Destroy.Command();
     cm.list_id = list_id;
     cm.slug = slug;
     cm.owner_screen_name = owner_screen_name;
     cm.owner_id = owner_id;
     return this.Destroy(cm);
 }
Ejemplo n.º 3
0
 public Lists.Destroy.Result[] Destroy(Lists.Destroy.Command command)
 {
     return(_ApiEndpoints._Client.GetResult <Lists.Destroy.Command, Lists.Destroy.Result[]>(command));
 }