Class OffsetPageResponse<TSdk>
API limited page response with an offset
Inherited Members
Namespace: QarnotSDK
Assembly: QarnotSDK.dll
Syntax
public class OffsetPageResponse<TSdk>
Type Parameters
Name | Description |
---|---|
TSdk | the return class |
Properties
Data
The list of objects created.
Declaration
public List<TSdk> Data { get; set; }
Property Value
Type | Description |
---|---|
List<TSdk> | A class list. |
Limit
The limit number of elements displayed in the response page.
Declaration
public int Limit { get; set; }
Property Value
Type | Description |
---|---|
int |
Offset
The number of elements ignored before starting to display the response.
Declaration
public int Offset { get; set; }
Property Value
Type | Description |
---|---|
int |
Total
The total number of elements in the original response.
Declaration
public int Total { get; set; }
Property Value
Type | Description |
---|---|
int |