Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 780 Bytes

File metadata and controls

29 lines (20 loc) · 780 Bytes

NewCost

New Cost

Properties

Name Type Description Notes

Example

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)

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