Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 899 Bytes

File metadata and controls

28 lines (20 loc) · 899 Bytes

SearchFilter

Properties

Name Type Description Notes
value str String to be appended to the search query.

Example

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)

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