HistoryReadRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
request_headerRequestHeader[optional]
history_read_detailsExtensionObject[optional]
timestamps_to_returnintLink to specification.[optional]
release_continuation_pointsbool[optional] [default to False]
nodes_to_readList[HistoryReadValueId][optional]

Example

from opcua_webapi.models.history_read_request import HistoryReadRequest

# TODO update the JSON string below
json = "{}"
# create an instance of HistoryReadRequest from a JSON string
history_read_request_instance = HistoryReadRequest.from_json(json)
# print the JSON string representation of the object
print(HistoryReadRequest.to_json())

# convert the object into a dict
history_read_request_dict = history_read_request_instance.to_dict()
# create an instance of HistoryReadRequest from a dict
history_read_request_from_dict = HistoryReadRequest.from_dict(history_read_request_dict)

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