Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.58 KB

AvailableBudget.md

File metadata and controls

39 lines (30 loc) · 1.58 KB

AvailableBudget

Properties

Name Type Description Notes
amount str
created_at datetime [optional] [readonly]
currency_code str Use either currency_id or currency_code. [optional]
currency_decimal_places int [optional] [readonly]
currency_id str Use either currency_id or currency_code. [optional]
currency_symbol str [optional] [readonly]
end datetime End date of the available budget.
spent_in_budgets List[BudgetSpent] [optional] [readonly]
spent_outside_budget List[BudgetSpent] [optional] [readonly]
start datetime Start date of the available budget.
updated_at datetime [optional] [readonly]

Example

from firefly_iii_client.models.available_budget import AvailableBudget

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

# convert the object into a dict
available_budget_dict = available_budget_instance.to_dict()
# create an instance of AvailableBudget from a dict
available_budget_form_dict = available_budget.from_dict(available_budget_dict)

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