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