Skip to content

Latest commit

 

History

History
executable file
·
30 lines (21 loc) · 827 Bytes

Budget.md

File metadata and controls

executable file
·
30 lines (21 loc) · 827 Bytes

Budget

Monthly budget for this team

Properties

Name Type Description Notes
monthly_limit MonthlyLimit

Example

from epiccore.models.budget import Budget

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

# convert the object into a dict
budget_dict = budget_instance.to_dict()
# create an instance of Budget from a dict
budget_form_dict = budget.from_dict(budget_dict)

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