Current Cost
| Name | Type | Description | Notes |
|---|
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)