Example #1
0
            public Videos.Get.Result Get(String query)
            {
                var cm = new Videos.Get.Command();

                cm.query = query;
                return(this.Get(cm));
            }
Example #2
0
            public Videos.Get.Result Get(Int32?page, Int32?per_page, String query, Videos.Get.Command.SortValues sort, Videos.Get.Command.DirectionValues direction, Videos.Get.Command.FilterValues filter)
            {
                var cm = new Videos.Get.Command();

                cm.page      = page;
                cm.per_page  = per_page;
                cm.query     = query;
                cm.sort      = sort;
                cm.direction = direction;
                cm.filter    = filter;
                return(this.Get(cm));
            }
Example #3
0
 public Videos.Get.Result Get(Videos.Get.Command command)
 {
     return(_ApiEndpoints._Client.GetResult <Videos.Get.Command, Videos.Get.Result>(command));
 }