Interface DatapointStatus

Status code for a data point, following OPC UA conventions. Either code or symbol is required; if both are set they must be consistent.

interface DatapointStatus {
    code: number;
    symbol: string;
}

Properties

Properties

code: number

Numeric status code (e.g. 0 for Good, 2147483648 for Bad)

symbol: string

Status symbol name (e.g. 'Good', 'Uncertain', 'Bad')