@@ -1567,6 +1567,7 @@ class Card(model.BunqModel):
1567
1567
:type _country_permission: list[object_.CardCountryPermission]
1568
1568
:type _label_monetary_account_ordered: object_.MonetaryAccountReference
1569
1569
:type _label_monetary_account_current: object_.MonetaryAccountReference
1570
+ :type _pin_code_assignment: object_.CardPinAssignment
1570
1571
"""
1571
1572
1572
1573
# Field constants.
@@ -1577,6 +1578,8 @@ class Card(model.BunqModel):
1577
1578
FIELD_MAG_STRIPE_PERMISSION = "mag_stripe_permission"
1578
1579
FIELD_COUNTRY_PERMISSION = "country_permission"
1579
1580
FIELD_MONETARY_ACCOUNT_CURRENT_ID = "monetary_account_current_id"
1581
+ FIELD_PIN_CODE_ASSIGNMENT = "pin_code_assignment"
1582
+ FIELD_MONETARY_ACCOUNT_ID_FALLBACK = "monetary_account_id_fallback"
1580
1583
1581
1584
# Endpoint constants.
1582
1585
_ENDPOINT_URL_UPDATE = "user/{}/card/{}"
@@ -1602,6 +1605,7 @@ def __init__(self):
1602
1605
self ._country_permission = None
1603
1606
self ._label_monetary_account_ordered = None
1604
1607
self ._label_monetary_account_current = None
1608
+ self ._pin_code_assignment = None
1605
1609
1606
1610
@classmethod
1607
1611
def update (cls , api_context , request_map , user_id , card_id ,
@@ -1797,6 +1801,14 @@ def label_monetary_account_current(self):
1797
1801
1798
1802
return self ._label_monetary_account_current
1799
1803
1804
+ @property
1805
+ def pin_code_assignment (self ):
1806
+ """
1807
+ :rtype: object_.CardPinAssignment
1808
+ """
1809
+
1810
+ return self ._pin_code_assignment
1811
+
1800
1812
1801
1813
class CashRegisterQrCodeContent (model .BunqModel ):
1802
1814
"""
@@ -8974,6 +8986,9 @@ class UserCredentialPasswordIp(model.BunqModel):
8974
8986
Create a credential of a user for server authentication, or delete the
8975
8987
credential of a user for server authentication.
8976
8988
8989
+ :type _id_: int
8990
+ :type _created: str
8991
+ :type _updated: str
8977
8992
:type _status: str
8978
8993
:type _expiry_time: str
8979
8994
:type _token_value: str
@@ -8988,6 +9003,9 @@ class UserCredentialPasswordIp(model.BunqModel):
8988
9003
_OBJECT_TYPE = "CredentialPasswordIp"
8989
9004
8990
9005
def __init__ (self ):
9006
+ self ._id_ = None
9007
+ self ._created = None
9008
+ self ._updated = None
8991
9009
self ._status = None
8992
9010
self ._expiry_time = None
8993
9011
self ._token_value = None
@@ -9034,6 +9052,30 @@ def list(cls, api_context, user_id, custom_headers=None):
9034
9052
9035
9053
return cls ._from_json_list (response_raw , cls ._OBJECT_TYPE )
9036
9054
9055
+ @property
9056
+ def id_ (self ):
9057
+ """
9058
+ :rtype: int
9059
+ """
9060
+
9061
+ return self ._id_
9062
+
9063
+ @property
9064
+ def created (self ):
9065
+ """
9066
+ :rtype: str
9067
+ """
9068
+
9069
+ return self ._created
9070
+
9071
+ @property
9072
+ def updated (self ):
9073
+ """
9074
+ :rtype: str
9075
+ """
9076
+
9077
+ return self ._updated
9078
+
9037
9079
@property
9038
9080
def status (self ):
9039
9081
"""
0 commit comments