Name | Type | Description | Notes |
---|---|---|---|
data | List[AccountRead] | ||
meta | Meta |
from firefly_iii_client.models.account_array import AccountArray
# TODO update the JSON string below
json = "{}"
# create an instance of AccountArray from a JSON string
account_array_instance = AccountArray.from_json(json)
# print the JSON string representation of the object
print(AccountArray.to_json())
# convert the object into a dict
account_array_dict = account_array_instance.to_dict()
# create an instance of AccountArray from a dict
account_array_form_dict = account_array.from_dict(account_array_dict)