Skip to content

Commit ca26141

Browse files
committed
Add missing field for CardDebit [#20]
1 parent fb4714b commit ca26141

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

bunq/sdk/model/generated/endpoint.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1399,6 +1399,7 @@ class CardDebit(model.BunqModel):
13991399
:type _label_monetary_account_current: object_.MonetaryAccountReference
14001400
:type _alias: object_.LabelUser
14011401
:type _pin_code_assignment: list[object_.CardPinAssignment]
1402+
:type _monetary_account_id_fallback: int
14021403
"""
14031404

14041405
# Field constants.
@@ -1433,6 +1434,7 @@ def __init__(self):
14331434
self._label_monetary_account_current = None
14341435
self._alias = None
14351436
self._pin_code_assignment = None
1437+
self._monetary_account_id_fallback = None
14361438

14371439
@classmethod
14381440
def create(cls, api_context, request_map, user_id, custom_headers=None):
@@ -1588,6 +1590,14 @@ def pin_code_assignment(self):
15881590

15891591
return self._pin_code_assignment
15901592

1593+
@property
1594+
def monetary_account_id_fallback(self):
1595+
"""
1596+
:rtype: int
1597+
"""
1598+
1599+
return self._monetary_account_id_fallback
1600+
15911601

15921602
class CardName(model.BunqModel):
15931603
"""

0 commit comments

Comments
 (0)