interface PagedCustomerRequestStatus {
    Expands?: string[];
    Links?: PagedLink;
    isLastPage?: boolean;
    limit?: number;
    size?: number;
    start?: number;
    values?: CustomerRequestStatus[];
}

Properties

Expands?: string[]
Links?: PagedLink
isLastPage?: boolean

Indicates if this is the last page of records (true) or not (false).

limit?: number

Number of items to be returned per page, up to the maximum set for these objects in the current implementation.

size?: number

Number of items returned in the page.

start?: number

Index of the first item returned in the page.

Details of the items included in the page.