From: sb604 <3892421+sb604@users.noreply.github.com> Date: Thu, 28 Mar 2024 08:47:31 +0000 (+0100) Subject: Add extension field to account information (#154) X-Git-Tag: v4.1.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3f73f59aa7d58726f18bf67d9d96ad92b139405;p=thirdparty%2Fpython-fints.git Add extension field to account information (#154) Co-authored-by: Sascha Biedermann --- diff --git a/fints/client.py b/fints/client.py index ebe8612..fde0a16 100644 --- a/fints/client.py +++ b/fints/client.py @@ -421,6 +421,7 @@ class FinTS3Client: 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)