DefaultQueryParamsTableResults
public struct DefaultQueryParamsTableResults : Codable, Equatable
Default project query settings for table results.
-
When
true
, a table results for the query are returned by default.Declaration
Swift
public var enabled: Bool?
-
The number of table results to return by default.
Declaration
Swift
public var count: Int?
-
The number of table results to include in each result document.
Declaration
Swift
public var perDocument: Int?
-
Initialize a
DefaultQueryParamsTableResults
with member variables.Declaration
Swift
public init( enabled: Bool? = nil, count: Int? = nil, perDocument: Int? = nil )
Parameters
enabled
When
true
, a table results for the query are returned by default.count
The number of table results to return by default.
perDocument
The number of table results to include in each result document.
Return Value
An initialized
DefaultQueryParamsTableResults
.