Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.65 KB

File metadata and controls

30 lines (22 loc) · 1.65 KB

ValidatingCompoundQueryFilterVulnerableDevice

A compound filter made up of other filters

Properties

Name Type Description Notes
operation CompoundQueryFilterOperation Operation that is applied to join `operands` together
operands List[ValidatingCompoundQueryFilterVulnerableDeviceOperandsInner] Other filters to join together using `operation`

Example

from medigate_api.models.validating_compound_query_filter_vulnerable_device import ValidatingCompoundQueryFilterVulnerableDevice

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

# convert the object into a dict
validating_compound_query_filter_vulnerable_device_dict = validating_compound_query_filter_vulnerable_device_instance.to_dict()
# create an instance of ValidatingCompoundQueryFilterVulnerableDevice from a dict
validating_compound_query_filter_vulnerable_device_form_dict = validating_compound_query_filter_vulnerable_device.from_dict(validating_compound_query_filter_vulnerable_device_dict)

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