From 0430d7e30f9baa3d55f222c9741deebaa6227711 Mon Sep 17 00:00:00 2001 From: Oleg Plakhotniuk Date: Sat, 7 Feb 2015 16:45:26 -0600 Subject: [PATCH] Credit limit, payment due date and amount for credit card bank accounts. Closes #1717 --- weboob/capabilities/bank.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/weboob/capabilities/bank.py b/weboob/capabilities/bank.py index 30b90379..b58c151c 100644 --- a/weboob/capabilities/bank.py +++ b/weboob/capabilities/bank.py @@ -91,6 +91,9 @@ class Account(Recipient): type = IntField('Type of account', default=TYPE_UNKNOWN) balance = DecimalField('Balance on this bank account') coming = DecimalField('Coming balance') + paydate = DateField('For credit cards. When next payment is due.') + paymin = DecimalField('For credit cards. Minimal payment due.') + cardlimit = DecimalField('For credit cards. Credit limit.') def __repr__(self): return u"" % (self.id, self.label)