Return value of readValue() and readValueBySymbol()

interface ReadValueResult<T> {
    dataType: AdsDataType;
    rawValue: Buffer;
    symbol: AdsSymbol;
    value: T;
}

Type Parameters

  • T = any

    Type of the value

Properties

dataType: AdsDataType

Data type of the target symbol

rawValue: Buffer

Raw value as Buffer

symbol: AdsSymbol

Target symbol

value: T

Value of the symbol as converted Javascript object