Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1007 Bytes

BrowsePathResult.md

File metadata and controls

30 lines (21 loc) · 1007 Bytes

BrowsePathResult

Properties

Name Type Description Notes
status_code int [optional]
targets List[BrowsePathTarget] [optional]

Example

from opcua_webapi.models.browse_path_result import BrowsePathResult

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

# convert the object into a dict
browse_path_result_dict = browse_path_result_instance.to_dict()
# create an instance of BrowsePathResult from a dict
browse_path_result_from_dict = BrowsePathResult.from_dict(browse_path_result_dict)

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