pluggy-sdk 1.0.0.post4__py3-none-any.whl → 1.0.0.post6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pluggy_sdk/__init__.py +5 -1
- pluggy_sdk/api/payment_request_api.py +801 -0
- pluggy_sdk/api_client.py +3 -1
- pluggy_sdk/configuration.py +1 -1
- pluggy_sdk/models/__init__.py +4 -0
- pluggy_sdk/models/create_payment_recipient.py +7 -5
- pluggy_sdk/models/payment_receipt.py +114 -0
- pluggy_sdk/models/payment_receipt_bank_account.py +92 -0
- pluggy_sdk/models/payment_receipt_person.py +96 -0
- pluggy_sdk/models/payment_recipient.py +8 -6
- pluggy_sdk/models/payment_request.py +4 -2
- pluggy_sdk/models/payment_request_receipt_list200_response.py +102 -0
- pluggy_sdk/models/update_payment_recipient.py +7 -5
- {pluggy_sdk-1.0.0.post4.dist-info → pluggy_sdk-1.0.0.post6.dist-info}/METADATA +10 -3
- {pluggy_sdk-1.0.0.post4.dist-info → pluggy_sdk-1.0.0.post6.dist-info}/RECORD +17 -13
- {pluggy_sdk-1.0.0.post4.dist-info → pluggy_sdk-1.0.0.post6.dist-info}/WHEEL +0 -0
- {pluggy_sdk-1.0.0.post4.dist-info → pluggy_sdk-1.0.0.post6.dist-info}/top_level.txt +0 -0
pluggy_sdk/__init__.py
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
""" # noqa: E501
|
16
16
|
|
17
17
|
|
18
|
-
__version__ = "1.0.0.
|
18
|
+
__version__ = "1.0.0.post6"
|
19
19
|
|
20
20
|
# import apis into sdk package
|
21
21
|
from pluggy_sdk.api.account_api import AccountApi
|
@@ -155,12 +155,16 @@ from pluggy_sdk.models.payment_data_participant import PaymentDataParticipant
|
|
155
155
|
from pluggy_sdk.models.payment_institution import PaymentInstitution
|
156
156
|
from pluggy_sdk.models.payment_intent import PaymentIntent
|
157
157
|
from pluggy_sdk.models.payment_intents_list200_response import PaymentIntentsList200Response
|
158
|
+
from pluggy_sdk.models.payment_receipt import PaymentReceipt
|
159
|
+
from pluggy_sdk.models.payment_receipt_bank_account import PaymentReceiptBankAccount
|
160
|
+
from pluggy_sdk.models.payment_receipt_person import PaymentReceiptPerson
|
158
161
|
from pluggy_sdk.models.payment_recipient import PaymentRecipient
|
159
162
|
from pluggy_sdk.models.payment_recipient_account import PaymentRecipientAccount
|
160
163
|
from pluggy_sdk.models.payment_recipients_institution_list200_response import PaymentRecipientsInstitutionList200Response
|
161
164
|
from pluggy_sdk.models.payment_recipients_list200_response import PaymentRecipientsList200Response
|
162
165
|
from pluggy_sdk.models.payment_request import PaymentRequest
|
163
166
|
from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
|
167
|
+
from pluggy_sdk.models.payment_request_receipt_list200_response import PaymentRequestReceiptList200Response
|
164
168
|
from pluggy_sdk.models.payment_requests_list200_response import PaymentRequestsList200Response
|
165
169
|
from pluggy_sdk.models.percentage_over_index import PercentageOverIndex
|
166
170
|
from pluggy_sdk.models.phone_number import PhoneNumber
|