Potential Saving
| Name | Type | Description | Notes |
|---|
from onelens_backend_client.models.potential_saving import PotentialSaving
# TODO update the JSON string below
json = "{}"
# create an instance of PotentialSaving from a JSON string
potential_saving_instance = PotentialSaving.from_json(json)
# print the JSON string representation of the object
print(PotentialSaving.to_json())
# convert the object into a dict
potential_saving_dict = potential_saving_instance.to_dict()
# create an instance of PotentialSaving from a dict
potential_saving_form_dict = potential_saving.from_dict(potential_saving_dict)