Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 836 Bytes

File metadata and controls

29 lines (20 loc) · 836 Bytes

CurrentCost

Current Cost

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.current_cost import CurrentCost

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

# convert the object into a dict
current_cost_dict = current_cost_instance.to_dict()
# create an instance of CurrentCost from a dict
current_cost_form_dict = current_cost.from_dict(current_cost_dict)

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