BrowseNextRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
request_headerRequestHeader[optional]
release_continuation_pointsbool[optional] [default to False]
continuation_pointsList[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)

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