ElementOperand

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
indexint[optional] [default to 0]

Example

from opcua_webapi.models.element_operand import ElementOperand

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

# convert the object into a dict
element_operand_dict = element_operand_instance.to_dict()
# create an instance of ElementOperand from a dict
element_operand_from_dict = ElementOperand.from_dict(element_operand_dict)

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