Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 896 Bytes

AccountSingle.md

File metadata and controls

29 lines (20 loc) · 896 Bytes

AccountSingle

Properties

Name Type Description Notes
data AccountRead

Example

from firefly_iii_client.models.account_single import AccountSingle

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

# convert the object into a dict
account_single_dict = account_single_instance.to_dict()
# create an instance of AccountSingle from a dict
account_single_form_dict = account_single.from_dict(account_single_dict)

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