From 9e020259336bbfe967bb61711da8f7b259520369 Mon Sep 17 00:00:00 2001 From: Sascha Biedermann Date: Thu, 7 Dec 2023 13:06:10 +0100 Subject: [PATCH] Add extension field to account information --- fints/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fints/client.py b/fints/client.py index 3273072..94b7bc3 100644 --- a/fints/client.py +++ b/fints/client.py @@ -421,6 +421,7 @@ def get_information(self): acc['customer_id'] = upd.customer_id acc['type'] = upd.account_type acc['currency'] = upd.account_currency + acc['extension'] = upd.extension acc['owner_name'] = [] if upd.name_account_owner_1: acc['owner_name'].append(upd.name_account_owner_1)