Class PaginatedResult<T>
- Namespace
- Smartsheet.Api.Models
- Assembly
- smartsheet-csharp-sdk.dll
Object returned for all GET operations against index endpoints.
This object provides metadata which can be used to perform paging on potentially large data sets.public class PaginatedResult<T>
Type Parameters
T
- Inheritance
-
PaginatedResult<T>
- Inherited Members
Properties
Data
A list of objects representing the current page of data in the result set.
public IList<T> Data { get; set; }
Property Value
- IList<T>
PageNumber
The current page in the full result set that the data array represents.
public int? PageNumber { get; set; }
Property Value
- int?
PageSize
The number of items in a page. Omitted if there is no limit to page size (and hence, all results are included). Unless otherwise specified, this defaults to 100 for most endpoints.
public int? PageSize { get; set; }
Property Value
- int?
TotalCount
The total number of items in the full result set.
public int? TotalCount { get; set; }
Property Value
- int?
TotalPages
The total number of pages in the full result set.
public int? TotalPages { get; set; }
Property Value
- int?