Name | Type | Description | Notes |
---|---|---|---|
modification_infos | List[ModificationInfo] | [optional] | |
data_values | List[DataValue] | [optional] |
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)