Name |
Type |
Description |
Notes |
amount |
str |
|
|
budget_id |
str |
The budget ID of the associated budget. |
[readonly] |
currency_code |
str |
Use either currency_id or currency_code. Defaults to the user's default currency. |
[optional] |
currency_id |
str |
Use either currency_id or currency_code. Defaults to the user's default currency. |
[optional] |
end |
date |
End date of the budget limit. |
|
period |
str |
Period of the budget limit. Only used when auto-generated by auto-budget. |
[optional] [readonly] |
start |
date |
Start date of the budget limit. |
|
from firefly_iii_client.models.budget_limit_store import BudgetLimitStore
# TODO update the JSON string below
json = "{}"
# create an instance of BudgetLimitStore from a JSON string
budget_limit_store_instance = BudgetLimitStore.from_json(json)
# print the JSON string representation of the object
print(BudgetLimitStore.to_json())
# convert the object into a dict
budget_limit_store_dict = budget_limit_store_instance.to_dict()
# create an instance of BudgetLimitStore from a dict
budget_limit_store_form_dict = budget_limit_store.from_dict(budget_limit_store_dict)
[Back to Model list] [Back to API list] [Back to README]