FluxRecord

public class FluxRecord : Equatable

FluxRecord represents row in the flux query result table

  • The list of values in Record

    Declaration

    Swift

    public let values: [String : Decodable]
  • row

    The array of record’s columns

    Declaration

    Swift

    public let row: [Any]
  • Initialize records with values.

    Declaration

    Swift

    public init(values: [String : Decodable], row: [Any])

    Parameters

    values

    record values row: record’s columns

  • Declaration

    Swift

    public static func == (lhs: FluxRecord, rhs: FluxRecord) -> Bool