| Name | Type | Description | Notes |
|---|---|---|---|
| var_from | float | [optional] | |
| to | float | [optional] |
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)