Skip to content

Latest commit

 

History

History
executable file
·
31 lines (22 loc) · 890 Bytes

Cost.md

File metadata and controls

executable file
·
31 lines (22 loc) · 890 Bytes

Cost

The cost of the requested resource. May only be present if the valid field is true.

Properties

Name Type Description Notes
amount float Amount of the currency
currency str Type of currency

Example

from epiccore.models.cost import Cost

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

# convert the object into a dict
cost_dict = cost_instance.to_dict()
# create an instance of Cost from a dict
cost_form_dict = cost.from_dict(cost_dict)

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