RelativePathElement

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
reference_type_idstr[optional]
is_inversebool[optional] [default to False]
include_subtypesbool[optional] [default to False]
target_namestr[optional]

Example

from opcua_webapi.models.relative_path_element import RelativePathElement

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

# convert the object into a dict
relative_path_element_dict = relative_path_element_instance.to_dict()
# create an instance of RelativePathElement from a dict
relative_path_element_from_dict = RelativePathElement.from_dict(relative_path_element_dict)

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