PagedResult Interface

interface PagedResult<T> {
    data: T[];
    items: T[];
    nextPaging?: Paging;
    paging: Paging;
}

Type Parameters

Properties

data: T[]

Obsolete

Use items instead.

items: T[]
nextPaging?: Paging

Paging for getting the next page. undefined when there's no next page.

paging: Paging

The pagination used for current data.

Generated using TypeDoc