Class PaginatedResponse<TSdk>
This class manages the Api Response pages list PaginatedResponseAPI for a specified class.
Inherited Members
Namespace: QarnotSDK
Assembly: QarnotSDK.dll
Syntax
public class PaginatedResponse<TSdk>
Type Parameters
| Name | Description |
|---|---|
| TSdk | the return class |
Properties
Data
The list of objects created.
Declaration
public List<TSdk> Data { get; }
Property Value
| Type | Description |
|---|---|
| List<TSdk> | A class list. |
IsTruncated
There is a next page to retrieve.
Declaration
public bool IsTruncated { get; }
Property Value
| Type | Description |
|---|---|
| bool | A next page can be call. |
NextToken
The token to be used to have the next page.
Declaration
public string NextToken { get; }
Property Value
| Type | Description |
|---|---|
| string | The token value. |
Token
The token used by the request call.
Declaration
public string Token { get; }
Property Value
| Type | Description |
|---|---|
| string | token value |