ContentFilterElement

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
filter_operatorintLink to specification.[optional]
filter_operandsList[ExtensionObject][optional]

Example

from opcua_webapi.models.content_filter_element import ContentFilterElement

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

# convert the object into a dict
content_filter_element_dict = content_filter_element_instance.to_dict()
# create an instance of ContentFilterElement from a dict
content_filter_element_from_dict = ContentFilterElement.from_dict(content_filter_element_dict)

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