Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 939 Bytes

File metadata and controls

29 lines (21 loc) · 939 Bytes

RangeFilter

Properties

Name Type Description Notes
field str Field the range applies to.
range object Range of values the field value can be.

Example

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]