OffsetBasedPagination
public struct OffsetBasedPagination : Codable
Allows further retrieval of paginated data. See: https://developers.facebook.com/docs/graph-api/using-graph-api/#paging
-
The Graph API endpoint that will return the previous page of data. If not set, then the current data represents the first page.
Declaration
Swift
public let previous: String?
-
The Graph API endpoint that will return the next page of data. If not set, then the current data represents the last page.
Declaration
Swift
public let next: String?