/** * What type the datapoints in a column will have. `double` is restricted to the range [-1E100, 1E100] */ export type DepthMeasurementValueTypeEnum = "string" | "double" | "long"; export const DepthMeasurementValueTypeEnum = { String: "string" as DepthMeasurementValueTypeEnum, Double: "double" as DepthMeasurementValueTypeEnum, Long: "long" as DepthMeasurementValueTypeEnum, };