Пример #1
0
 public Lists.Ownerships.Result Ownerships(Int32? count, Int64? user_id, String cursor)
 {
     var cm = new Lists.Ownerships.Command();
     cm.count = count;
     cm.user_id = user_id;
     cm.cursor = cursor;
     return this.Ownerships(cm);
 }
Пример #2
0
 public Lists.Ownerships.Result Ownerships()
 {
     var cm = new Lists.Ownerships.Command();
     return this.Ownerships(cm);
 }
Пример #3
0
 public Lists.Ownerships.Result Ownerships(Int32? count, String screen_name, String cursor)
 {
     var cm = new Lists.Ownerships.Command();
     cm.count = count;
     cm.screen_name = screen_name;
     cm.cursor = cursor;
     return this.Ownerships(cm);
 }
Пример #4
0
 public Lists.Ownerships.Result[] Ownerships(Lists.Ownerships.Command command)
 {
     return(_ApiEndpoints._Client.GetResult <Lists.Ownerships.Command, Lists.Ownerships.Result[]>(command));
 }