Class PagingQuery
Represents the paging parameters used in lists methods.
public class PagingQuery
- Inheritance
-
PagingQuery
- Inherited Members
Properties
LastId
(optional) ID of the item from which to list subsequent items.
If this parameter is passed, the Skip parameter is not used and can be any number.
public string? LastId { get; set; }
Property Value
Limit
Number of items to list.
public long Limit { get; set; }
Property Value
Skip
Number of items to skip when listing.
public long Skip { get; set; }
Property Value
SortOrder
Sort order of items.
Allowed values: "asc" - ascending sort order, "desc" - descending sort order. Currently, results list items are sorted by creation date.
public string SortOrder { get; set; }