A compound filter made up of other filters
| Name | Type | Description | Notes |
|---|---|---|---|
| operation | CompoundQueryFilterOperation | Operation that is applied to join `operands` together | |
| operands | List[ValidatingCompoundQueryFilterserverInterfacesOperandsInner] | Other filters to join together using `operation` |
from medigate_api.models.validating_compound_query_filterserver_interfaces import ValidatingCompoundQueryFilterserverInterfaces
# TODO update the JSON string below
json = "{}"
# create an instance of ValidatingCompoundQueryFilterserverInterfaces from a JSON string
validating_compound_query_filterserver_interfaces_instance = ValidatingCompoundQueryFilterserverInterfaces.from_json(json)
# print the JSON string representation of the object
print ValidatingCompoundQueryFilterserverInterfaces.to_json()
# convert the object into a dict
validating_compound_query_filterserver_interfaces_dict = validating_compound_query_filterserver_interfaces_instance.to_dict()
# create an instance of ValidatingCompoundQueryFilterserverInterfaces from a dict
validating_compound_query_filterserver_interfaces_form_dict = validating_compound_query_filterserver_interfaces.from_dict(validating_compound_query_filterserver_interfaces_dict)