interface PagedLink {
    base?: string;
    context?: string;
    next?: string;
    prev?: string;
    self?: string;
}

Properties

base?: string

Base URL for the REST API calls.

context?: string
next?: string

REST API URL for the next page, if there is one.

prev?: string

REST API URL for the previous page, if there is one.

self?: string

REST API URL for the current page.