QueryParam
public class QueryParam
Representation of the common query parameters.
-
Returns user receipts created after this datetime.
Declaration
Swift
public var createdAfter: Date? -
Returns user receipts created before this datetime.
Declaration
Swift
public var createdBefore: Date? -
The maximum number of records that will be returned per page
Declaration
Swift
public var limit: Int? -
The number of records to skip. If no filters are applied, records will be skipped from the beginning (based on default sort criteria). Default value is 0. Range is from 0 to {n-1} where n = number of matching records for the query.
Declaration
Swift
public var offset: Int? -
The user receipts attribute to sort the result set by.
Declaration
Swift
public var sortBy: String? -
Creates a new instance of
QueryParam]Declaration
Swift
public init()
View on GitHub