interface DoubleDatapoints {
    datapoints: DoubleDatapoint[];
    externalId?: string;
    id: number;
    instanceId?: CogniteInstanceId;
    isStep?: boolean;
    isString: false;
    nextCursor?: string;
    unit?: string;
    unitExternalId?: string;
}

Hierarchy (view full)

Properties

datapoints: DoubleDatapoint[]

The list of datapoints

externalId?: string

External id of the timeseries the datapoints belong to.

id: number
instanceId?: CogniteInstanceId

Instance id of the timeseries the datapoints belong to in Cognite Data Modeling.

isStep?: boolean

Whether the timeseries is a step series or not

isString: false

Whether or not the datapoints are string values.

nextCursor?: string
unit?: string

Name of the physical unit of the time series

unitExternalId?: string

The physical unit of the time series (reference to unit catalog). Replaced with target unit if data points were converted.