ReferenceDescription

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
reference_type_idstr[optional]
is_forwardbool[optional] [default to False]
node_idstr[optional]
browse_namestr[optional]
display_nameLocalizedText[optional]
node_classintLink to specification.[optional]
type_definitionstr[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]