Skip to content

Commit 0d18aae

Browse files
committed
fix BillingContract type [#20]
1 parent 379c74d commit 0d18aae

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

bunq/sdk/model/generated/endpoint.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9150,7 +9150,7 @@ class UserCompany(model.BunqModel):
91509150
:type _notification_filters: list[object_.NotificationFilter]
91519151
:type _customer: Customer
91529152
:type _customer_limit: CustomerLimit
9153-
:type _billing_contract: BillingContractSubscription
9153+
:type _billing_contract: list[BillingContractSubscription]
91549154
"""
91559155

91569156
# Field constants.
@@ -9483,7 +9483,7 @@ def customer_limit(self):
94839483
@property
94849484
def billing_contract(self):
94859485
"""
9486-
:rtype: BillingContractSubscription
9486+
:rtype: list[BillingContractSubscription]
94879487
"""
94889488

94899489
return self._billing_contract
@@ -9635,6 +9635,7 @@ def __init__(self):
96359635
self._limit_monetary_account = None
96369636
self._limit_card_debit_maestro = None
96379637
self._limit_card_debit_mastercard = None
9638+
self._limit_card_debit_replacement = None
96389639

96399640
@classmethod
96409641
def list(cls, api_context, user_id, params=None, custom_headers=None):

0 commit comments

Comments
 (0)