Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 928 Bytes

ContentFilter.md

File metadata and controls

29 lines (20 loc) · 928 Bytes

ContentFilter

Properties

Name Type Description Notes
elements List[ContentFilterElement] [optional]

Example

from opcua_webapi.models.content_filter import ContentFilter

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

# convert the object into a dict
content_filter_dict = content_filter_instance.to_dict()
# create an instance of ContentFilter from a dict
content_filter_from_dict = ContentFilter.from_dict(content_filter_dict)

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