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] |
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]