Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 926 Bytes

AccountArray.md

File metadata and controls

30 lines (21 loc) · 926 Bytes

AccountArray

Properties

Name Type Description Notes
data List[AccountRead]
meta Meta

Example

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)

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