Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1022 Bytes

HistoryEventFieldList.md

File metadata and controls

29 lines (20 loc) · 1022 Bytes

HistoryEventFieldList

Properties

Name Type Description Notes
event_fields List[Variant] [optional]

Example

from opcua_webapi.models.history_event_field_list import HistoryEventFieldList

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

# convert the object into a dict
history_event_field_list_dict = history_event_field_list_instance.to_dict()
# create an instance of HistoryEventFieldList from a dict
history_event_field_list_from_dict = HistoryEventFieldList.from_dict(history_event_field_list_dict)

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