Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 3 KB

AccountUpdate.md

File metadata and controls

50 lines (41 loc) · 3 KB

AccountUpdate

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]
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]
interest_period InterestPeriodProperty [optional]
latitude float Latitude of the account's location, if applicable. Can be used to draw a map. If omitted, the existing location will be kept. If submitted as NULL, the current location will be removed. [optional]
liability_type LiabilityTypeProperty [optional]
longitude float Latitude of the account's location, if applicable. Can be used to draw a map. If omitted, the existing location will be kept. If submitted as NULL, the current location will be removed. [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 [optional]
opening_balance_date datetime [optional]
order int Order of the account [optional]
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. If omitted, the existing location will be kept. If submitted as NULL, the current location will be removed. [optional]

Example

from firefly_iii_client.models.account_update import AccountUpdate

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

# convert the object into a dict
account_update_dict = account_update_instance.to_dict()
# create an instance of AccountUpdate from a dict
account_update_form_dict = account_update.from_dict(account_update_dict)

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