New Cost
| Name | Type | Description | Notes |
|---|
from onelens_backend_client.models.new_cost import NewCost
# TODO update the JSON string below
json = "{}"
# create an instance of NewCost from a JSON string
new_cost_instance = NewCost.from_json(json)
# print the JSON string representation of the object
print(NewCost.to_json())
# convert the object into a dict
new_cost_dict = new_cost_instance.to_dict()
# create an instance of NewCost from a dict
new_cost_form_dict = new_cost.from_dict(new_cost_dict)