Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.25 KB

ReferenceDescription.md

File metadata and controls

35 lines (26 loc) · 1.25 KB

ReferenceDescription

Properties

Name Type Description Notes
reference_type_id str [optional]
is_forward bool [optional] [default to False]
node_id str [optional]
browse_name str [optional]
display_name LocalizedText [optional]
node_class int [optional]
type_definition str [optional]

Example

from opcua_webapi.models.reference_description import ReferenceDescription

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

# convert the object into a dict
reference_description_dict = reference_description_instance.to_dict()
# create an instance of ReferenceDescription from a dict
reference_description_from_dict = ReferenceDescription.from_dict(reference_description_dict)

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