Class Pagination
Class representing a paged REST API response's pagination.
Namespace: Tableau.Migration.Api.Rest.Models
Assembly: Tableau.Migration.dll
Syntax
public class Pagination
Properties
PageNumber
Gets or sets the response's current page number.
Declaration
public int PageNumber { get; set; }
Property Value
Type | Description |
---|---|
int |
PageSize
Gets or sets the response's page size.
Declaration
public int PageSize { get; set; }
Property Value
Type | Description |
---|---|
int |
TotalAvailable
Gets or sets the total number of available items.
Declaration
public int TotalAvailable { get; set; }
Property Value
Type | Description |
---|---|
int |