| Name |
Type |
Description |
Notes |
| field |
str |
Field the range applies to. |
|
| range |
object |
Range of values the field value can be. |
|
from gb_retailapi_client.models.range_filter import RangeFilter
# TODO update the JSON string below
json = "{}"
# create an instance of RangeFilter from a JSON string
range_filter_instance = RangeFilter.from_json(json)
# print the JSON string representation of the object
print RangeFilter.to_json()
# convert the object into a dict
range_filter_dict = range_filter_instance.to_dict()
# create an instance of RangeFilter from a dict
range_filter_form_dict = range_filter.from_dict(range_filter_dict)
[Back to Model list] [Back to API list] [Back to README]