Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 917 Bytes

BrowsePath.md

File metadata and controls

30 lines (21 loc) · 917 Bytes

BrowsePath

Properties

Name Type Description Notes
starting_node str [optional]
relative_path RelativePath [optional]

Example

from opcua_webapi.models.browse_path import BrowsePath

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

# convert the object into a dict
browse_path_dict = browse_path_instance.to_dict()
# create an instance of BrowsePath from a dict
browse_path_from_dict = BrowsePath.from_dict(browse_path_dict)

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