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] |
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)