Skip to content

Latest commit

 

History

History
executable file
·
32 lines (23 loc) · 1.01 KB

CurrentSpend.md

File metadata and controls

executable file
·
32 lines (23 loc) · 1.01 KB

CurrentSpend

Current monthly spend for this project code.

Properties

Name Type Description Notes
amount float Amount of the currency
currency str Type of currency
currency_symbol str Symbol to be used for this currency

Example

from epiccore.models.current_spend import CurrentSpend

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

# convert the object into a dict
current_spend_dict = current_spend_instance.to_dict()
# create an instance of CurrentSpend from a dict
current_spend_form_dict = current_spend.from_dict(current_spend_dict)

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