WriteValue

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
node_idstr[optional]
attribute_idint[optional] [default to 0]
index_rangestr[optional]
valueDataValue[optional]

Example

from opcua_webapi.models.write_value import WriteValue

# TODO update the JSON string below
json = "{}"
# create an instance of WriteValue from a JSON string
write_value_instance = WriteValue.from_json(json)
# print the JSON string representation of the object
print(WriteValue.to_json())

# convert the object into a dict
write_value_dict = write_value_instance.to_dict()
# create an instance of WriteValue from a dict
write_value_from_dict = WriteValue.from_dict(write_value_dict)

[Back to Model list] [Back to API list] [Back to README]