Table of Contents

Class TokenPaginatedResult<T>

Namespace
Smartsheet.Api.Models
Assembly
smartsheet-csharp-sdk.dll

Object returned for GET operations against index endpoints using token-based pagination.

This object provides data and a token for the next page of results.
public class TokenPaginatedResult<T>

Type Parameters

T
Inheritance
TokenPaginatedResult<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>

LastKey

The token for the next page of results. Null if this is the last page.

public string? LastKey { get; set; }

Property Value

string