SimpleAttributeOperand

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
type_definition_idstr[optional]
browse_pathList[str][optional]
attribute_idint[optional] [default to 0]
index_rangestr[optional]

Example

from opcua_webapi.models.simple_attribute_operand import SimpleAttributeOperand

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

# convert the object into a dict
simple_attribute_operand_dict = simple_attribute_operand_instance.to_dict()
# create an instance of SimpleAttributeOperand from a dict
simple_attribute_operand_from_dict = SimpleAttributeOperand.from_dict(simple_attribute_operand_dict)

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