Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

BrowseRequest.md

File metadata and controls

32 lines (23 loc) · 1.13 KB

BrowseRequest

Properties

Name Type Description Notes
request_header RequestHeader [optional]
view ViewDescription [optional]
requested_max_references_per_node int [optional] [default to 0]
nodes_to_browse List[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]