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
DefaultQueryParamsTableResultswith member variables.Declaration
Swift
public init( enabled: Bool? = nil, count: Int? = nil, perDocument: Int? = nil )Parameters
enabledWhen
true, a table results for the query are returned by default.countThe number of table results to return by default.
perDocumentThe number of table results to include in each result document.
Return Value
An initialized
DefaultQueryParamsTableResults.
View on GitHub
DefaultQueryParamsTableResults Structure Reference