RelativePathElement
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| reference_type_id | str | [optional] | |
| is_inverse | bool | [optional] [default to False] | |
| include_subtypes | bool | [optional] [default to False] | |
| target_name | str | [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)