PagedResponse
public protocol PagedResponse
A response which contains pages of data.
-
The type of the paged data.
Declaration
Swift
associatedtype Data -
The resource data.
Declaration
Swift
var data: [Data] { get } -
Navigational links that include the self-link.
Declaration
Swift
var links: PagedDocumentLinks { get } -
Paging information.
Declaration
Swift
var meta: PagingInformation? { get }
View on GitHub