Interface PaginationResponse

Object that contains the next pagination token to continue a previous listing operation.

PaginationResponse

interface PaginationResponse {
    next: string;
}

Properties

Properties

next: string

The token to use to retrieve the next page of results.

PaginationResponse