EventFilterResult

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
select_clause_resultsList[StatusCode][optional]
select_clause_diagnostic_infosList[DiagnosticInfo][optional]
where_clause_resultContentFilterResult[optional]

Example

from opcua_webapi.models.event_filter_result import EventFilterResult

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

# convert the object into a dict
event_filter_result_dict = event_filter_result_instance.to_dict()
# create an instance of EventFilterResult from a dict
event_filter_result_from_dict = EventFilterResult.from_dict(event_filter_result_dict)

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