Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

SimpleAttributeOperand.md

File metadata and controls

32 lines (23 loc) · 1.12 KB

SimpleAttributeOperand

Properties

Name Type Description Notes
type_definition_id str [optional]
browse_path List[str] [optional]
attribute_id int [optional]
index_range str [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]