Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.25 KB

File metadata and controls

30 lines (22 loc) · 1.25 KB

CompoundQueryFilter

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[CompoundQueryFilterOperandsInner] Other filters to join together using `operation`

Example

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)

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