AttributeOperand

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
node_idstr[optional]
aliasstr[optional]
browse_pathRelativePath[optional]
attribute_idint[optional] [default to 0]
index_rangestr[optional]

Example

from opcua_webapi.models.attribute_operand import AttributeOperand

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

# convert the object into a dict
attribute_operand_dict = attribute_operand_instance.to_dict()
# create an instance of AttributeOperand from a dict
attribute_operand_from_dict = AttributeOperand.from_dict(attribute_operand_dict)

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