Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.43 KB

BudgetUpdate.md

File metadata and controls

37 lines (28 loc) · 1.43 KB

BudgetUpdate

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]
name str
notes str [optional]
order int [optional]

Example

from firefly_iii_client.models.budget_update import BudgetUpdate

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

# convert the object into a dict
budget_update_dict = budget_update_instance.to_dict()
# create an instance of BudgetUpdate from a dict
budget_update_form_dict = budget_update.from_dict(budget_update_dict)

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