BrowseRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
request_headerRequestHeader[optional]
viewViewDescription[optional]
requested_max_references_per_nodeint[optional] [default to 0]
nodes_to_browseList[BrowseDescription][optional]

Example

from opcua_webapi.models.browse_request import BrowseRequest

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

# convert the object into a dict
browse_request_dict = browse_request_instance.to_dict()
# create an instance of BrowseRequest from a dict
browse_request_from_dict = BrowseRequest.from_dict(browse_request_dict)

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