Table of Contents

Class PagingQuery

Namespace
PrivMX.Endpoint.Core.Models
Assembly
PrivMX.Endpoint.dll

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

string

Limit

Number of items to list.

public long Limit { get; set; }

Property Value

long

Skip

Number of items to skip when listing.

public long Skip { get; set; }

Property Value

long

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; }

Property Value

string