Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1003 Bytes

ReadValueId.md

File metadata and controls

32 lines (23 loc) · 1003 Bytes

ReadValueId

Properties

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