Return value of writeValue() and writeValueBySymbol()

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

Type Parameters

  • T = any

Properties

dataType: AdsDataType

Data type of the target symbol

rawValue: Buffer

Raw value as Buffer

symbol: AdsSymbol

Symbol information of the target symbol

value: T

Value of the symbol as converted Javascript object