Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.19 KB

File metadata and controls

32 lines (24 loc) · 1.19 KB

ValueFilter

Properties

Name Type Description Notes
field str Field the value applies to.
value str Value to filter on.
number_value float Numeric value to filter on.
exclude bool Describing whether the filter is negated or not: color that is NOT red.
type object Determine which field we need to use - value if 'TEXTUAL' type or numberValue if 'NUMERIC' type.

Example

from gb_retailapi_client.models.value_filter import ValueFilter

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

# convert the object into a dict
value_filter_dict = value_filter_instance.to_dict()
# create an instance of ValueFilter from a dict
value_filter_form_dict = value_filter.from_dict(value_filter_dict)

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