Skip to main content

PaginationParameter

Pagination parameters

public enum PaginationParameter: Encodable, Hashable 

Inheritance

Encodable, Hashable

Enumeration Cases

greaterThan

Filter on ids greater than the given value.

case greaterThan(_ id: String)

greaterThanOrEqual

Filter on ids greater than or equal to the given value.

case greaterThanOrEqual(_ id: String)

lessThan

Filter on ids smaller than the given value.

case lessThan(_ id: String)

lessThanOrEqual

Filter on ids smaller than or equal to the given value.

case lessThanOrEqual(_ id: String)

Methods

encode(to:)

public func encode(to encoder: Encoder) throws 

Operators

==

public static func == (lhs: Self, rhs: Self) -> Bool 

Did you find this page helpful?