Show / Hide Table of Contents

Class OffsetPageResponse<TSdk>

API limited page response with an offset

Inheritance
object
OffsetPageResponse<TSdk>
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
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
In this article
Back to top Generated by DocFX