Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 892 Bytes

File metadata and controls

29 lines (20 loc) · 892 Bytes

PotentialSaving

Potential Saving

Properties

Name Type Description Notes

Example

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)

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