Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

BrowseResponse.md

File metadata and controls

31 lines (22 loc) · 1.06 KB

BrowseResponse

Properties

Name Type Description Notes
response_header ResponseHeader [optional]
results List[BrowseResult] [optional]
diagnostic_infos List[DiagnosticInfo] [optional]

Example

from opcua_webapi.models.browse_response import BrowseResponse

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

# convert the object into a dict
browse_response_dict = browse_response_instance.to_dict()
# create an instance of BrowseResponse from a dict
browse_response_from_dict = BrowseResponse.from_dict(browse_response_dict)

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