Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.66 KB

Budget.md

File metadata and controls

40 lines (31 loc) · 1.66 KB

Budget

Properties

Name Type Description Notes
active bool [optional]
auto_budget_amount str [optional]
auto_budget_currency_code str Use either currency_id or currency_code. Defaults to the user's default currency. [optional]
auto_budget_currency_id str Use either currency_id or currency_code. Defaults to the user's default currency. [optional]
auto_budget_period AutoBudgetPeriod [optional]
auto_budget_type AutoBudgetType [optional]
created_at datetime [optional] [readonly]
name str
notes str [optional]
order int [optional] [readonly]
spent List[BudgetSpent] Information on how much was spent in this budget. Is only filled in when the start and end date are submitted. [optional] [readonly]
updated_at datetime [optional] [readonly]

Example

from firefly_iii_client.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]