FluxColumn
public class FluxColumn
FluxColumn holds flux query table column properties
-
The index of column.
Declaration
Swift
public let index: Int -
The name of column.
Declaration
Swift
public var name: String -
Description of the type of data contained within the column.
Declaration
Swift
public let dataType: String -
Boolean flag indicating if the column is part of the table’s group key
Declaration
Swift
public var group: Bool -
Default value to be used for rows whose string value is the empty string.
Declaration
Swift
public var defaultValue: String -
Initialize FluxColumn structure
Declaration
Swift
public init(index: Int, dataType: String)Parameters
indexindex in table
dataTypetype of column
View on GitHub
FluxColumn Class Reference