Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 913 Bytes

RelativePath.md

File metadata and controls

29 lines (20 loc) · 913 Bytes

RelativePath

Properties

Name Type Description Notes
elements List[RelativePathElement] [optional]

Example

from opcua_webapi.models.relative_path import RelativePath

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

# convert the object into a dict
relative_path_dict = relative_path_instance.to_dict()
# create an instance of RelativePath from a dict
relative_path_from_dict = RelativePath.from_dict(relative_path_dict)

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