Click or drag to resize

PaginationParameters Constructor

Builds optional query string parameters for pagination.
Remarks
Most index endpoints default to a page size of 100 results. If you need all results at once, you should specify the includeAll=true query string parameter.

Namespace:  Smartsheet.Api.Models
Assemblies:   smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
  smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
Syntax
public PaginationParameters(
	bool includeAll,
	Nullable<int> pageSize,
	Nullable<int> page
)

Parameters

includeAll
Type: SystemBoolean
If true, include all results (i.e. do not paginate). Mutually exclusive with pageSize and page (they are ignored if includeAll=true is specified)
pageSize
Type: SystemNullableInt32
The maximum number of items to return per page. Unless otherwise stated for a specific endpoint, defaults to 100 if not specified.
page
Type: SystemNullableInt32
Which page to return. Defaults to 1 if not specified.
See Also