Pagination

public struct Pagination : Codable, Equatable

Pagination details, if required by the length of the output.

  • A token identifying the current page of results.

    Declaration

    Swift

    public var refreshCursor: String?
  • A token identifying the next page of results.

    Declaration

    Swift

    public var nextCursor: String?
  • The URL that returns the current page of results.

    Declaration

    Swift

    public var refreshURL: String?
  • The URL that returns the next page of results.

    Declaration

    Swift

    public var nextURL: String?
  • Reserved for future use.

    Declaration

    Swift

    public var total: Int?