Skip to content

Commit

Permalink
fix BillingContract type [#20]
Browse files Browse the repository at this point in the history
  • Loading branch information
dnl-blkv committed Sep 3, 2017
1 parent 379c74d commit 0d18aae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bunq/sdk/model/generated/endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -9150,7 +9150,7 @@ class UserCompany(model.BunqModel):
:type _notification_filters: list[object_.NotificationFilter]
:type _customer: Customer
:type _customer_limit: CustomerLimit
:type _billing_contract: BillingContractSubscription
:type _billing_contract: list[BillingContractSubscription]
"""

# Field constants.
Expand Down Expand Up @@ -9483,7 +9483,7 @@ def customer_limit(self):
@property
def billing_contract(self):
"""
:rtype: BillingContractSubscription
:rtype: list[BillingContractSubscription]
"""

return self._billing_contract
Expand Down Expand Up @@ -9635,6 +9635,7 @@ def __init__(self):
self._limit_monetary_account = None
self._limit_card_debit_maestro = None
self._limit_card_debit_mastercard = None
self._limit_card_debit_replacement = None

@classmethod
def list(cls, api_context, user_id, params=None, custom_headers=None):
Expand Down

0 comments on commit 0d18aae

Please sign in to comment.