QueryLargeTableResults
public struct QueryLargeTableResults : Codable, Equatable
Configuration for table retrieval.
-
Whether to enable table retrieval.
Declaration
Swift
public var enabled: Bool?
-
Maximum number of tables to return.
Declaration
Swift
public var count: Int?
-
Initialize a
QueryLargeTableResults
with member variables.Declaration
Swift
public init( enabled: Bool? = nil, count: Int? = nil )
Parameters
enabled
Whether to enable table retrieval.
count
Maximum number of tables to return.
Return Value
An initialized
QueryLargeTableResults
.