EventFieldList

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
client_handleint[optional] [default to 0]
event_fieldsList[Variant][optional]

Example

from opcua_webapi.models.event_field_list import EventFieldList

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

# convert the object into a dict
event_field_list_dict = event_field_list_instance.to_dict()
# create an instance of EventFieldList from a dict
event_field_list_from_dict = EventFieldList.from_dict(event_field_list_dict)

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