| Name | Type | Description | Notes |
|---|---|---|---|
| var_field | str | Name of field to filter | |
| operation | CompoundQueryFilterOperation | Operation that is applied to join `operands` together | |
| value | object | [optional] | |
| operands | List[OperandsInner5] | Other filters to join together using `operation` |
from medigate_api.models.operands_inner5 import OperandsInner5
# TODO update the JSON string below
json = "{}"
# create an instance of OperandsInner5 from a JSON string
operands_inner5_instance = OperandsInner5.from_json(json)
# print the JSON string representation of the object
print(OperandsInner5.to_json())
# convert the object into a dict
operands_inner5_dict = operands_inner5_instance.to_dict()
# create an instance of OperandsInner5 from a dict
operands_inner5_from_dict = OperandsInner5.from_dict(operands_inner5_dict)