Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

ContentFilterElement.md

File metadata and controls

30 lines (21 loc) · 1.04 KB

ContentFilterElement

Properties

Name Type Description Notes
filter_operator int [optional]
filter_operands List[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]