GetParameters
public struct GetParameters : Codable, Equatable
GetParameters
instances represent query setup for a documents fetch request.
-
Number of documents to take.
Declaration
Swift
public let limit: Int?
-
Number of documents to skip.
Declaration
Swift
public let offset: Int?
-
Document attributes to show.
Declaration
Swift
public let attributesToRetrieve: [String]?
-
Undocumented
Declaration
Swift
public init( offset: Int? = nil, limit: Int? = nil, attributesToRetrieve: [String]? = nil )