HistoryModifiedData

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
modification_infosList[ModificationInfo][optional]
data_valuesList[DataValue][optional]

Example

from opcua_webapi.models.history_modified_data import HistoryModifiedData

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

# convert the object into a dict
history_modified_data_dict = history_modified_data_instance.to_dict()
# create an instance of HistoryModifiedData from a dict
history_modified_data_from_dict = HistoryModifiedData.from_dict(history_modified_data_dict)

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