Skip to content

Latest commit

 

History

History
59 lines (50 loc) · 3.5 KB

Account.md

File metadata and controls

59 lines (50 loc) · 3.5 KB

Account

Properties

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]
created_at datetime [optional] [readonly]
credit_card_type CreditCardTypeProperty [optional]
currency_code str Use either currency_id or currency_code. Defaults to the user's default currency. [optional]
currency_decimal_places int [optional] [readonly]
currency_id str Use either currency_id or currency_code. Defaults to the user's default currency. [optional]
currency_symbol str [optional] [readonly]
current_balance str [optional] [readonly]
current_balance_date datetime The timestamp for this date is always 23:59:59, to indicate it's the balance at the very END of that particular day. [optional] [readonly]
current_debt str Represents the current debt for liabilities. [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]
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. Is NULL if account is not asset or liability. [optional]
type ShortAccountTypeProperty
updated_at datetime [optional] [readonly]
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]

Example

from firefly_iii_client.models.account import Account

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

# convert the object into a dict
account_dict = account_instance.to_dict()
# create an instance of Account from a dict
account_form_dict = account.from_dict(account_dict)

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