EventFilter

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
select_clausesList[SimpleAttributeOperand][optional]
where_clauseContentFilter[optional]

Example

from opcua_webapi.models.event_filter import EventFilter

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

# convert the object into a dict
event_filter_dict = event_filter_instance.to_dict()
# create an instance of EventFilter from a dict
event_filter_from_dict = EventFilter.from_dict(event_filter_dict)

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