Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

BrowseNextRequest.md

File metadata and controls

31 lines (22 loc) · 1.09 KB

BrowseNextRequest

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)

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