ContentFilterResult

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
element_resultsList[ContentFilterElementResult][optional]
element_diagnostic_infosList[DiagnosticInfo][optional]

Example

from opcua_webapi.models.content_filter_result import ContentFilterResult

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

# convert the object into a dict
content_filter_result_dict = content_filter_result_instance.to_dict()
# create an instance of ContentFilterResult from a dict
content_filter_result_from_dict = ContentFilterResult.from_dict(content_filter_result_dict)

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