Name | Type | Description | Notes |
---|---|---|---|
data | List[AvailableBudgetRead] | ||
meta | Meta |
from firefly_iii_client.models.available_budget_array import AvailableBudgetArray
# TODO update the JSON string below
json = "{}"
# create an instance of AvailableBudgetArray from a JSON string
available_budget_array_instance = AvailableBudgetArray.from_json(json)
# print the JSON string representation of the object
print(AvailableBudgetArray.to_json())
# convert the object into a dict
available_budget_array_dict = available_budget_array_instance.to_dict()
# create an instance of AvailableBudgetArray from a dict
available_budget_array_form_dict = available_budget_array.from_dict(available_budget_array_dict)