Pagination
public struct Pagination : Codable, Equatable
The pagination data for the returned objects.
-
The URL that will return the same page of results.
Declaration
Swift
public var refreshURL: String -
The URL that will return the next page of results.
Declaration
Swift
public var nextURL: String? -
The total number of objects that satisfy the request. This total includes all results, not just those included in the current page.
Declaration
Swift
public var total: Int? -
Reserved for future use.
Declaration
Swift
public var matched: Int? -
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?
View on GitHub
Pagination Structure Reference