Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 998 Bytes

WriteValue.md

File metadata and controls

32 lines (23 loc) · 998 Bytes

WriteValue

Properties

Name Type Description Notes
node_id str [optional]
attribute_id int [optional] [default to 0]
index_range str [optional]
value DataValue [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]