BrowseNextRequest
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| request_header | RequestHeader | [optional] | |
| release_continuation_points | bool | [optional] [default to False] | |
| continuation_points | List[bytearray] | [optional] |
Example
from opcua_webapi.models.browse_next_request import BrowseNextRequest
# TODO update the JSON string below
json = "{}"
# create an instance of BrowseNextRequest from a JSON string
browse_next_request_instance = BrowseNextRequest.from_json(json)
# print the JSON string representation of the object
print(BrowseNextRequest.to_json())
# convert the object into a dict
browse_next_request_dict = browse_next_request_instance.to_dict()
# create an instance of BrowseNextRequest from a dict
browse_next_request_from_dict = BrowseNextRequest.from_dict(browse_next_request_dict)