Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 892 Bytes

File metadata and controls

30 lines (21 loc) · 892 Bytes

PriceFilter

Properties

Name Type Description Notes
var_from float [optional]
to float [optional]

Example

from feratel_client.models.price_filter import PriceFilter

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

# convert the object into a dict
price_filter_dict = price_filter_instance.to_dict()
# create an instance of PriceFilter from a dict
price_filter_from_dict = PriceFilter.from_dict(price_filter_dict)

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