ReadValueId

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

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

Example

from opcua_webapi.models.read_value_id import ReadValueId

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

# convert the object into a dict
read_value_id_dict = read_value_id_instance.to_dict()
# create an instance of ReadValueId from a dict
read_value_id_from_dict = ReadValueId.from_dict(read_value_id_dict)

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