Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1023 Bytes

AvailableBudgetSingle.md

File metadata and controls

29 lines (20 loc) · 1023 Bytes

AvailableBudgetSingle

Properties

Name Type Description Notes
data AvailableBudgetRead

Example

from firefly_iii_client.models.available_budget_single import AvailableBudgetSingle

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

# convert the object into a dict
available_budget_single_dict = available_budget_single_instance.to_dict()
# create an instance of AvailableBudgetSingle from a dict
available_budget_single_form_dict = available_budget_single.from_dict(available_budget_single_dict)

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