HistoryReadRequest
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| request_header | RequestHeader | [optional] | |
| history_read_details | ExtensionObject | [optional] | |
| timestamps_to_return | int | Link to specification. | [optional] |
| release_continuation_points | bool | [optional] [default to False] | |
| nodes_to_read | List[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)