using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NodaTime;
namespace InfluxDB.Client.Core.Flux.Domain
{
///
/// A record is a tuple of values. Each record in the table represents a single point in the series.
///
/// Specification.
///
public class FluxRecord
{
///
/// The Index of the table that the record belongs.
///
public int Table { get; set; }
///
/// The record's values.
///
public Dictionary Values { get; } = new Dictionary();
///
/// The record's columns.
///
public List