Class FluxColumn
This class represents column header specification of FluxTable.
Inheritance
System.Object
FluxColumn
Namespace: InfluxDB.Client.Core.Flux.Domain
Assembly: InfluxDB.Client.Core.dll
Syntax
public class FluxColumn : object
Properties
DataType
The data type of column (e.g., "string", "long", "dateTime:RFC3339").
Declaration
public string DataType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DefaultValue
Default value to be used for rows whose string value is the empty string.
Declaration
public string DefaultValue { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Group
Boolean flag indicating if the column is part of the table's group key.
Declaration
public bool Group { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Index
Column index in record.
Declaration
public int Index { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Label
The label of column (e.g., "_start", "_stop", "_time").
Declaration
public string Label { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
ToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |