Class Pagination
Pagination object
Inheritance
System.Object
Pagination
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Klarna.Rest.Core.Model
Assembly: Klarna.Rest.Core.dll
Syntax
public class Pagination
Properties
| Improve this Doc View SourceCount
The amount of elements in the current result
Declaration
[JsonProperty(PropertyName = "count")]
public int Count { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Remarks
Required
Next
The URI to the next "page" of results.
Declaration
[JsonProperty(PropertyName = "next")]
public string Next { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Offset
The current offset. Describes "where" in a collection the current starts.
Declaration
[JsonProperty(PropertyName = "offset")]
public int Offset { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Previous
The URI to the previous "page" of results.
Declaration
[JsonProperty(PropertyName = "prev")]
public string Previous { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Total
The total amount of elements that are available
Declaration
[JsonProperty(PropertyName = "total")]
public int Total { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |