Table of Contents

Class Pagination11

Namespace
Thirdweb.Api
Assembly
Thirdweb.dll
public class Pagination11
Inheritance
Pagination11
Inherited Members

Properties

AdditionalProperties

[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }

Property Value

IDictionary<string, object>

HasMore

Whether there are more items available

[JsonProperty("hasMore", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public bool HasMore { get; set; }

Property Value

bool

Limit

Number of items per page

[JsonProperty("limit", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public double? Limit { get; set; }

Property Value

double?

Page

Current page number

[JsonProperty("page", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public double? Page { get; set; }

Property Value

double?

TotalCount

Total number of items available

[JsonProperty("totalCount", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public double? TotalCount { get; set; }

Property Value

double?