Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.22 KB

Filter.md

File metadata and controls

34 lines (25 loc) · 1.22 KB

Filter

A query request filter.

Properties

Name Type Description Notes
filters List[Filter] Operational filters such as AND or OR. [optional]
key str The filter key. Key is required for the filters [EQ, NE, GT, LT, GTE, LTE, IN, NIN] [optional]
operator str A query request filter operator.
value FilterValue [optional]
value_date datetime The filter value as a date, if provided will be preferred over the `value` field. [optional]

Example

from wordlift_client.models.filter import Filter

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

# convert the object into a dict
filter_dict = filter_instance.to_dict()
# create an instance of Filter from a dict
filter_from_dict = Filter.from_dict(filter_dict)

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