Interface IMeasurement

Interface which holds all mandantory fragments for measurements

interface IMeasurement {
    id: string | number;
    self: string;
    source: ISource;
    time: string;
    type: string;
    [fragment: string]: {
        [series: string]: IMeasurementValue;
    } | any;
}

Hierarchy (view full)

Indexable

  • [fragment: string]: {
        [series: string]: IMeasurementValue;
    } | any

    Custom fragments. Example


    {
    series: {
    unit: '%',
    value: 51
    }
    }

Properties

Properties

id: string | number

Uniquely identifies a measurement

self: string

Link to this resource

source: ISource

The ManagedObject which is the source of this measurement, see [[ISource]]

time: string

Time of the measurement

type: string

The most specific type of this entire measurement