Monthly budget for this team
Name | Type | Description | Notes |
---|---|---|---|
monthly_limit | MonthlyLimit |
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)