| Name | Type | Description | Notes |
|---|---|---|---|
| var_field | str | Field to filter on. See the endpoint's list of filterable fields. | |
| op | str | Comparison operator. | |
| value | DataForSeoFilterValue | ||
| var_and | List[DataForSeoFilter] | Sub-expressions that must all match. | |
| var_or | List[DataForSeoFilter] | Sub-expressions where at least one must match. |
from unifapi.models.data_for_seo_filter import DataForSeoFilter
# TODO update the JSON string below
json = "{}"
# create an instance of DataForSeoFilter from a JSON string
data_for_seo_filter_instance = DataForSeoFilter.from_json(json)
# print the JSON string representation of the object
print(DataForSeoFilter.to_json())
# convert the object into a dict
data_for_seo_filter_dict = data_for_seo_filter_instance.to_dict()
# create an instance of DataForSeoFilter from a dict
data_for_seo_filter_from_dict = DataForSeoFilter.from_dict(data_for_seo_filter_dict)