| Name | Type | Description | Notes |
|---|---|---|---|
| var_and | List[LogicalOperatorOutputANDInner] | Logical AND operation - all conditions must be true | [optional] |
| var_or | List[LogicalOperatorOutputANDInner] | Logical OR operation - at least one condition must be true | [optional] |
| var_not | List[LogicalOperatorOutputANDInner] | Logical NOT operation - all conditions must be false | [optional] |
| case_sensitive | bool | Whether to perform case-sensitive matching | [optional] [default to False] |
| var_field | str | Field name to filter on | |
| operator | FilterOperator | Comparison operator | [optional] |
| value | DynamicValue |
from mixpeek.models.logical_operator_output_and_inner import LogicalOperatorOutputANDInner
# TODO update the JSON string below
json = "{}"
# create an instance of LogicalOperatorOutputANDInner from a JSON string
logical_operator_output_and_inner_instance = LogicalOperatorOutputANDInner.from_json(json)
# print the JSON string representation of the object
print(LogicalOperatorOutputANDInner.to_json())
# convert the object into a dict
logical_operator_output_and_inner_dict = logical_operator_output_and_inner_instance.to_dict()
# create an instance of LogicalOperatorOutputANDInner from a dict
logical_operator_output_and_inner_from_dict = LogicalOperatorOutputANDInner.from_dict(logical_operator_output_and_inner_dict)