Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

OperandsInner6

Properties

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

Example

from medigate_api.models.operands_inner6 import OperandsInner6

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

# convert the object into a dict
operands_inner6_dict = operands_inner6_instance.to_dict()
# create an instance of OperandsInner6 from a dict
operands_inner6_from_dict = OperandsInner6.from_dict(operands_inner6_dict)

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