@@ -1644,6 +1644,7 @@ class Card(model.BunqModel):
16441644 :type _public_uuid: str
16451645 :type _second_line: str
16461646 :type _status: str
1647+ :type _sub_status: str
16471648 :type _order_status: str
16481649 :type _expiry_date: str
16491650 :type _name_on_card: str
@@ -1683,6 +1684,7 @@ def __init__(self):
16831684 self ._public_uuid = None
16841685 self ._second_line = None
16851686 self ._status = None
1687+ self ._sub_status = None
16861688 self ._order_status = None
16871689 self ._expiry_date = None
16881690 self ._name_on_card = None
@@ -1821,6 +1823,14 @@ def status(self):
18211823
18221824 return self ._status
18231825
1826+ @property
1827+ def sub_status (self ):
1828+ """
1829+ :rtype: str
1830+ """
1831+
1832+ return self ._sub_status
1833+
18241834 @property
18251835 def order_status (self ):
18261836 """
@@ -3509,10 +3519,15 @@ def __init__(self):
35093519 @classmethod
35103520 def create (cls , api_context , request_map , custom_headers = None ):
35113521 """
3512- Create a new DeviceServer. Provide the Installation token in the
3513- "X-Bunq-Client-Authentication" header. And sign this request with the
3514- key of which you used the public part to create the Installation. Your
3515- API key will be bound to the ip address of this DeviceServer.
3522+ Create a new DeviceServer providing the installation token in the header
3523+ and signing the request with the private part of the key you used to
3524+ create the installation. The API Key that you are using will be bound to
3525+ the IP address of the DeviceServer which you have
3526+ created.<br/><br/>Using a Wildcard API Key gives you the freedom to make
3527+ API calls even if the IP address has changed after the POST
3528+ device-server.<br/><br/>Find out more at this link <a
3529+ href="https://bunq.com/en/apikey-dynamic-ip"
3530+ target="_blank">https://bunq.com/en/apikey-dynamic-ip</a>.
35163531
35173532 :type api_context: context.ApiContext
35183533 :type request_map: dict[str, object]
@@ -9623,6 +9638,7 @@ class CustomerLimit(model.BunqModel):
96239638 :type _limit_monetary_account: int
96249639 :type _limit_card_debit_maestro: int
96259640 :type _limit_card_debit_mastercard: int
9641+ :type _limit_card_debit_replacement: int
96269642 """
96279643
96289644 # Endpoint constants.
@@ -9686,6 +9702,14 @@ def limit_card_debit_mastercard(self):
96869702
96879703 return self ._limit_card_debit_mastercard
96889704
9705+ @property
9706+ def limit_card_debit_replacement (self ):
9707+ """
9708+ :rtype: int
9709+ """
9710+
9711+ return self ._limit_card_debit_replacement
9712+
96899713
96909714class BillingContractSubscription (model .BunqModel ):
96919715 """
0 commit comments