Beispiel #1
0
 /// <summary>
 /// Get a page of Push subscriptions the user's account,
 /// where each page contains up to per_page items. Results will be
 /// ordered according to the supplied ordering parameters.
 /// </summary>
 /// <param name="page">The page number to get.</param>
 /// <param name="per_page">The number of items per page.</param>
 /// <param name="order_by">The field by which to order the results.</param>
 /// <param name="order_dir">Ascending or descending.</param>
 /// <param name="include_finished">True to include subscriptions against finished Historics queries.</param>
 /// <param name="hash_type">Optional hash type to look for (hash is also required)</param>
 /// <param name="hash">Optional hash to look for (hash_type is also required)</param>
 /// <returns>A PushSubscriptionList object.</returns>
 public PushSubscriptionList listPushSubscriptions(int page, int per_page, string order_by = PushSubscription.ORDERBY_CREATED_AT, string order_dir = PushSubscription.ORDERDIR_ASC, bool include_finished = false)
 {
     return(PushSubscription.list(this, page, per_page, order_by, order_dir, include_finished));
 }
Beispiel #2
0
 /// <summary>
 /// Get a page of Push subscriptions for this Historics query, where each page contains up to per_page items. Results will be returned in the order requested.
 /// </summary>
 /// <param name="page">The page number to get.</param>
 /// <param name="per_page">The number of items per page.</param>
 /// <param name="order_by">The field by which to order the results.</param>
 /// <param name="order_dir">Ascending or descending</param>
 /// <returns>A PushSubscriptionList object.</returns>
 public PushSubscriptionList getPushSubscriptions(int page = 1, int per_page = 20, string order_by = PushSubscription.ORDERBY_CREATED_AT, string order_dir = PushSubscription.ORDERDIR_ASC)
 {
     return(PushSubscription.list(m_user, page, per_page, order_by, order_dir, true, "playback_id", m_playback_id));
 }