Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 883 Bytes

HistoryData.md

File metadata and controls

29 lines (20 loc) · 883 Bytes

HistoryData

Properties

Name Type Description Notes
data_values List[DataValue] [optional]

Example

from opcua_webapi.models.history_data import HistoryData

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

# convert the object into a dict
history_data_dict = history_data_instance.to_dict()
# create an instance of HistoryData from a dict
history_data_from_dict = HistoryData.from_dict(history_data_dict)

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