Show / Hide Table of Contents

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 Source

Count

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

| Improve this Doc View Source

Next

The URI to the next "page" of results.

Declaration
[JsonProperty(PropertyName = "next")]
public string Next { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

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
| Improve this Doc View Source

Previous

The URI to the previous "page" of results.

Declaration
[JsonProperty(PropertyName = "prev")]
public string Previous { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Total

The total amount of elements that are available

Declaration
[JsonProperty(PropertyName = "total")]
public int Total { get; set; }
Property Value
Type Description
System.Int32
  • Improve this Doc
  • View Source
Back to top Copyright (c) 2005-2019 Klarna Bank AB (publ). All rights reserved.