KKPagingInfo
public struct KKPagingInfo : Codable
A struct represents pagination info of a list.
-
The maximum amount of the items in the list.
Declaration
Swift
public internal(set) var limit: Int -
Where the list begins.
Declaration
Swift
public internal(set) var offset: Int -
The URL for the API call for the previous page.
Declaration
Swift
public internal(set) var previous: URL? -
The URL for the API call for the next page.
Declaration
Swift
public internal(set) var next: URL?
KKPagingInfo Structure Reference