| Name | Type | Description | Notes |
|---|---|---|---|
| var_and | List[AndOrGroupAndInner] | [optional] | |
| var_or | List[AndOrGroupAndInner] | [optional] | |
| operator | ConditionalOperator | ||
| value | object | Can be any of supported OpenApi types. | [optional] |
| var_field | str |
from cloudbeds_accounting.models.filters import Filters
# TODO update the JSON string below
json = "{}"
# create an instance of Filters from a JSON string
filters_instance = Filters.from_json(json)
# print the JSON string representation of the object
print(Filters.to_json())
# convert the object into a dict
filters_dict = filters_instance.to_dict()
# create an instance of Filters from a dict
filters_from_dict = Filters.from_dict(filters_dict)