Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

ContentFilterElementResult.md

File metadata and controls

31 lines (22 loc) · 1.23 KB

ContentFilterElementResult

Properties

Name Type Description Notes
status_code StatusCode [optional]
operand_status_codes List[StatusCode] [optional]
operand_diagnostic_infos List[DiagnosticInfo] [optional]

Example

from opcua_webapi.models.content_filter_element_result import ContentFilterElementResult

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

# convert the object into a dict
content_filter_element_result_dict = content_filter_element_result_instance.to_dict()
# create an instance of ContentFilterElementResult from a dict
content_filter_element_result_from_dict = ContentFilterElementResult.from_dict(content_filter_element_result_dict)

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