Name | Type | Description | Notes |
---|---|---|---|
account_number | str | [optional] | |
account_role | AccountRoleProperty | [optional] | |
active | bool | If omitted, defaults to true. | [optional] [default to True] |
bic | str | [optional] | |
credit_card_type | CreditCardTypeProperty | [optional] | |
currency_code | str | Use either currency_id or currency_code. Defaults to the user's default currency. | [optional] |
currency_id | str | Use either currency_id or currency_code. Defaults to the user's default currency. | [optional] |
iban | str | [optional] | |
include_net_worth | bool | If omitted, defaults to true. | [optional] [default to True] |
interest | str | Mandatory when type is liability. Interest percentage. | [optional] [default to '0'] |
interest_period | InterestPeriodProperty | [optional] | |
latitude | float | Latitude of the accounts's location, if applicable. Can be used to draw a map. | [optional] |
liability_direction | LiabilityDirectionProperty | [optional] | |
liability_type | LiabilityTypeProperty | [optional] | |
longitude | float | Latitude of the accounts's location, if applicable. Can be used to draw a map. | [optional] |
monthly_payment_date | datetime | Mandatory when the account_role is ccAsset. Moment at which CC payment installments are asked for by the bank. | [optional] |
name | str | ||
notes | str | [optional] | |
opening_balance | str | Represents the opening balance, the initial amount this account holds. | [optional] |
opening_balance_date | datetime | Represents the date of the opening balance. | [optional] |
order | int | Order of the account | [optional] |
type | ShortAccountTypeProperty | ||
virtual_balance | str | [optional] | |
zoom_level | int | Zoom level for the map, if drawn. This to set the box right. Unfortunately this is a proprietary value because each map provider has different zoom levels. | [optional] |
from firefly_iii_client.models.account_store import AccountStore
# TODO update the JSON string below
json = "{}"
# create an instance of AccountStore from a JSON string
account_store_instance = AccountStore.from_json(json)
# print the JSON string representation of the object
print(AccountStore.to_json())
# convert the object into a dict
account_store_dict = account_store_instance.to_dict()
# create an instance of AccountStore from a dict
account_store_form_dict = account_store.from_dict(account_store_dict)