HistoryUpdateRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
request_headerRequestHeader[optional]
history_update_detailsList[ExtensionObject][optional]

Example

from opcua_webapi.models.history_update_request import HistoryUpdateRequest

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

# convert the object into a dict
history_update_request_dict = history_update_request_instance.to_dict()
# create an instance of HistoryUpdateRequest from a dict
history_update_request_from_dict = HistoryUpdateRequest.from_dict(history_update_request_dict)

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