| Name | Type | Description | Notes |
|---|---|---|---|
| value | str | String to be appended to the search query. |
from gb_retailapi_client.models.search_filter import SearchFilter
# TODO update the JSON string below
json = "{}"
# create an instance of SearchFilter from a JSON string
search_filter_instance = SearchFilter.from_json(json)
# print the JSON string representation of the object
print SearchFilter.to_json()
# convert the object into a dict
search_filter_dict = search_filter_instance.to_dict()
# create an instance of SearchFilter from a dict
search_filter_form_dict = search_filter.from_dict(search_filter_dict)