pluggy-sdk 1.0.0.post43__py3-none-any.whl → 1.0.0.post44__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 +170 -172
- pluggy_sdk/api/payment_request_api.py +0 -275
- pluggy_sdk/api/payment_schedule_api.py +3 -3
- pluggy_sdk/api_client.py +5 -1
- pluggy_sdk/configuration.py +1 -1
- pluggy_sdk/models/__init__.py +0 -1
- pluggy_sdk/models/schedule_payment.py +3 -1
- {pluggy_sdk-1.0.0.post43.dist-info → pluggy_sdk-1.0.0.post44.dist-info}/METADATA +3 -5
- {pluggy_sdk-1.0.0.post43.dist-info → pluggy_sdk-1.0.0.post44.dist-info}/RECORD +11 -11
- {pluggy_sdk-1.0.0.post43.dist-info → pluggy_sdk-1.0.0.post44.dist-info}/WHEEL +1 -1
- {pluggy_sdk-1.0.0.post43.dist-info → pluggy_sdk-1.0.0.post44.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.post44"
|
19
19
|
|
20
20
|
# Define package exports
|
21
21
|
__all__ = [
|
@@ -80,7 +80,6 @@ __all__ = [
|
|
80
80
|
"CreateBoletoBoletoPayer",
|
81
81
|
"CreateBoletoConnection",
|
82
82
|
"CreateBoletoConnectionFromItem",
|
83
|
-
"CreateBoletoPaymentRequest",
|
84
83
|
"CreateClientCategoryRule",
|
85
84
|
"CreateItem",
|
86
85
|
"CreateItemParameters",
|
@@ -192,177 +191,176 @@ __all__ = [
|
|
192
191
|
]
|
193
192
|
|
194
193
|
# import apis into sdk package
|
195
|
-
from pluggy_sdk.api.account_api import AccountApi
|
196
|
-
from pluggy_sdk.api.auth_api import AuthApi
|
197
|
-
from pluggy_sdk.api.bill_api import BillApi
|
198
|
-
from pluggy_sdk.api.boleto_management_api import BoletoManagementApi
|
199
|
-
from pluggy_sdk.api.category_api import CategoryApi
|
200
|
-
from pluggy_sdk.api.connector_api import ConnectorApi
|
201
|
-
from pluggy_sdk.api.consent_api import ConsentApi
|
202
|
-
from pluggy_sdk.api.identity_api import IdentityApi
|
203
|
-
from pluggy_sdk.api.investment_api import InvestmentApi
|
204
|
-
from pluggy_sdk.api.items_api import ItemsApi
|
205
|
-
from pluggy_sdk.api.loan_api import LoanApi
|
206
|
-
from pluggy_sdk.api.payment_customer_api import PaymentCustomerApi
|
207
|
-
from pluggy_sdk.api.payment_intent_api import PaymentIntentApi
|
208
|
-
from pluggy_sdk.api.payment_recipient_api import PaymentRecipientApi
|
209
|
-
from pluggy_sdk.api.payment_request_api import PaymentRequestApi
|
210
|
-
from pluggy_sdk.api.payment_schedule_api import PaymentScheduleApi
|
211
|
-
from pluggy_sdk.api.smart_transfer_api import SmartTransferApi
|
212
|
-
from pluggy_sdk.api.transaction_api import TransactionApi
|
213
|
-
from pluggy_sdk.api.webhook_api import WebhookApi
|
194
|
+
from pluggy_sdk.api.account_api import AccountApi as AccountApi
|
195
|
+
from pluggy_sdk.api.auth_api import AuthApi as AuthApi
|
196
|
+
from pluggy_sdk.api.bill_api import BillApi as BillApi
|
197
|
+
from pluggy_sdk.api.boleto_management_api import BoletoManagementApi as BoletoManagementApi
|
198
|
+
from pluggy_sdk.api.category_api import CategoryApi as CategoryApi
|
199
|
+
from pluggy_sdk.api.connector_api import ConnectorApi as ConnectorApi
|
200
|
+
from pluggy_sdk.api.consent_api import ConsentApi as ConsentApi
|
201
|
+
from pluggy_sdk.api.identity_api import IdentityApi as IdentityApi
|
202
|
+
from pluggy_sdk.api.investment_api import InvestmentApi as InvestmentApi
|
203
|
+
from pluggy_sdk.api.items_api import ItemsApi as ItemsApi
|
204
|
+
from pluggy_sdk.api.loan_api import LoanApi as LoanApi
|
205
|
+
from pluggy_sdk.api.payment_customer_api import PaymentCustomerApi as PaymentCustomerApi
|
206
|
+
from pluggy_sdk.api.payment_intent_api import PaymentIntentApi as PaymentIntentApi
|
207
|
+
from pluggy_sdk.api.payment_recipient_api import PaymentRecipientApi as PaymentRecipientApi
|
208
|
+
from pluggy_sdk.api.payment_request_api import PaymentRequestApi as PaymentRequestApi
|
209
|
+
from pluggy_sdk.api.payment_schedule_api import PaymentScheduleApi as PaymentScheduleApi
|
210
|
+
from pluggy_sdk.api.smart_transfer_api import SmartTransferApi as SmartTransferApi
|
211
|
+
from pluggy_sdk.api.transaction_api import TransactionApi as TransactionApi
|
212
|
+
from pluggy_sdk.api.webhook_api import WebhookApi as WebhookApi
|
214
213
|
|
215
214
|
# import ApiClient
|
216
|
-
from pluggy_sdk.api_response import ApiResponse
|
217
|
-
from pluggy_sdk.api_client import ApiClient
|
218
|
-
from pluggy_sdk.configuration import Configuration
|
219
|
-
from pluggy_sdk.exceptions import OpenApiException
|
220
|
-
from pluggy_sdk.exceptions import ApiTypeError
|
221
|
-
from pluggy_sdk.exceptions import ApiValueError
|
222
|
-
from pluggy_sdk.exceptions import ApiKeyError
|
223
|
-
from pluggy_sdk.exceptions import ApiAttributeError
|
224
|
-
from pluggy_sdk.exceptions import ApiException
|
215
|
+
from pluggy_sdk.api_response import ApiResponse as ApiResponse
|
216
|
+
from pluggy_sdk.api_client import ApiClient as ApiClient
|
217
|
+
from pluggy_sdk.configuration import Configuration as Configuration
|
218
|
+
from pluggy_sdk.exceptions import OpenApiException as OpenApiException
|
219
|
+
from pluggy_sdk.exceptions import ApiTypeError as ApiTypeError
|
220
|
+
from pluggy_sdk.exceptions import ApiValueError as ApiValueError
|
221
|
+
from pluggy_sdk.exceptions import ApiKeyError as ApiKeyError
|
222
|
+
from pluggy_sdk.exceptions import ApiAttributeError as ApiAttributeError
|
223
|
+
from pluggy_sdk.exceptions import ApiException as ApiException
|
225
224
|
|
226
225
|
# import models into sdk package
|
227
|
-
from pluggy_sdk.models.account import Account
|
228
|
-
from pluggy_sdk.models.accounts_list200_response import AccountsList200Response
|
229
|
-
from pluggy_sdk.models.address import Address
|
230
|
-
from pluggy_sdk.models.auth_request import AuthRequest
|
231
|
-
from pluggy_sdk.models.auth_response import AuthResponse
|
232
|
-
from pluggy_sdk.models.bank_data import BankData
|
233
|
-
from pluggy_sdk.models.bill import Bill
|
234
|
-
from pluggy_sdk.models.bill_finance_charge import BillFinanceCharge
|
235
|
-
from pluggy_sdk.models.bills_list200_response import BillsList200Response
|
236
|
-
from pluggy_sdk.models.boleto import Boleto
|
237
|
-
from pluggy_sdk.models.boleto_connection import BoletoConnection
|
238
|
-
from pluggy_sdk.models.boleto_payer import BoletoPayer
|
239
|
-
from pluggy_sdk.models.boleto_recipient import BoletoRecipient
|
240
|
-
from pluggy_sdk.models.custom import CUSTOM
|
241
|
-
from pluggy_sdk.models.category import Category
|
242
|
-
from pluggy_sdk.models.client_category_rule import ClientCategoryRule
|
243
|
-
from pluggy_sdk.models.company import Company
|
244
|
-
from pluggy_sdk.models.connect_token_request import ConnectTokenRequest
|
245
|
-
from pluggy_sdk.models.connect_token_response import ConnectTokenResponse
|
246
|
-
from pluggy_sdk.models.connector import Connector
|
247
|
-
from pluggy_sdk.models.connector_credential import ConnectorCredential
|
248
|
-
from pluggy_sdk.models.connector_health import ConnectorHealth
|
249
|
-
from pluggy_sdk.models.connector_health_details import ConnectorHealthDetails
|
250
|
-
from pluggy_sdk.models.connector_list_response import ConnectorListResponse
|
251
|
-
from pluggy_sdk.models.connector_user_action import ConnectorUserAction
|
252
|
-
from pluggy_sdk.models.consent import Consent
|
253
|
-
from pluggy_sdk.models.create_boleto import CreateBoleto
|
254
|
-
from pluggy_sdk.models.create_boleto_boleto import CreateBoletoBoleto
|
255
|
-
from pluggy_sdk.models.create_boleto_boleto_fine import CreateBoletoBoletoFine
|
256
|
-
from pluggy_sdk.models.create_boleto_boleto_interest import CreateBoletoBoletoInterest
|
257
|
-
from pluggy_sdk.models.create_boleto_boleto_payer import CreateBoletoBoletoPayer
|
258
|
-
from pluggy_sdk.models.create_boleto_connection import CreateBoletoConnection
|
259
|
-
from pluggy_sdk.models.create_boleto_connection_from_item import CreateBoletoConnectionFromItem
|
260
|
-
from pluggy_sdk.models.
|
261
|
-
from pluggy_sdk.models.
|
262
|
-
from pluggy_sdk.models.
|
263
|
-
from pluggy_sdk.models.
|
264
|
-
from pluggy_sdk.models.
|
265
|
-
from pluggy_sdk.models.
|
266
|
-
from pluggy_sdk.models.
|
267
|
-
from pluggy_sdk.models.
|
268
|
-
from pluggy_sdk.models.
|
269
|
-
from pluggy_sdk.models.
|
270
|
-
from pluggy_sdk.models.
|
271
|
-
from pluggy_sdk.models.
|
272
|
-
from pluggy_sdk.models.
|
273
|
-
from pluggy_sdk.models.
|
274
|
-
from pluggy_sdk.models.
|
275
|
-
from pluggy_sdk.models.
|
276
|
-
from pluggy_sdk.models.
|
277
|
-
from pluggy_sdk.models.
|
278
|
-
from pluggy_sdk.models.
|
279
|
-
from pluggy_sdk.models.
|
280
|
-
from pluggy_sdk.models.
|
281
|
-
from pluggy_sdk.models.
|
282
|
-
from pluggy_sdk.models.
|
283
|
-
from pluggy_sdk.models.
|
284
|
-
from pluggy_sdk.models.
|
285
|
-
from pluggy_sdk.models.
|
286
|
-
from pluggy_sdk.models.
|
287
|
-
from pluggy_sdk.models.
|
288
|
-
from pluggy_sdk.models.
|
289
|
-
from pluggy_sdk.models.
|
290
|
-
from pluggy_sdk.models.
|
291
|
-
from pluggy_sdk.models.
|
292
|
-
from pluggy_sdk.models.
|
293
|
-
from pluggy_sdk.models.
|
294
|
-
from pluggy_sdk.models.
|
295
|
-
from pluggy_sdk.models.
|
296
|
-
from pluggy_sdk.models.
|
297
|
-
from pluggy_sdk.models.
|
298
|
-
from pluggy_sdk.models.
|
299
|
-
from pluggy_sdk.models.
|
300
|
-
from pluggy_sdk.models.
|
301
|
-
from pluggy_sdk.models.
|
302
|
-
from pluggy_sdk.models.
|
303
|
-
from pluggy_sdk.models.
|
304
|
-
from pluggy_sdk.models.
|
305
|
-
from pluggy_sdk.models.
|
306
|
-
from pluggy_sdk.models.
|
307
|
-
from pluggy_sdk.models.
|
308
|
-
from pluggy_sdk.models.
|
309
|
-
from pluggy_sdk.models.
|
310
|
-
from pluggy_sdk.models.
|
311
|
-
from pluggy_sdk.models.
|
312
|
-
from pluggy_sdk.models.
|
313
|
-
from pluggy_sdk.models.
|
314
|
-
from pluggy_sdk.models.
|
315
|
-
from pluggy_sdk.models.
|
316
|
-
from pluggy_sdk.models.
|
317
|
-
from pluggy_sdk.models.
|
318
|
-
from pluggy_sdk.models.
|
319
|
-
from pluggy_sdk.models.
|
320
|
-
from pluggy_sdk.models.
|
321
|
-
from pluggy_sdk.models.
|
322
|
-
from pluggy_sdk.models.
|
323
|
-
from pluggy_sdk.models.
|
324
|
-
from pluggy_sdk.models.
|
325
|
-
from pluggy_sdk.models.
|
326
|
-
from pluggy_sdk.models.
|
327
|
-
from pluggy_sdk.models.
|
328
|
-
from pluggy_sdk.models.
|
329
|
-
from pluggy_sdk.models.
|
330
|
-
from pluggy_sdk.models.
|
331
|
-
from pluggy_sdk.models.
|
332
|
-
from pluggy_sdk.models.
|
333
|
-
from pluggy_sdk.models.
|
334
|
-
from pluggy_sdk.models.
|
335
|
-
from pluggy_sdk.models.
|
336
|
-
from pluggy_sdk.models.
|
337
|
-
from pluggy_sdk.models.
|
338
|
-
from pluggy_sdk.models.
|
339
|
-
from pluggy_sdk.models.
|
340
|
-
from pluggy_sdk.models.
|
341
|
-
from pluggy_sdk.models.
|
342
|
-
from pluggy_sdk.models.
|
343
|
-
from pluggy_sdk.models.
|
344
|
-
from pluggy_sdk.models.
|
345
|
-
from pluggy_sdk.models.
|
346
|
-
from pluggy_sdk.models.
|
347
|
-
from pluggy_sdk.models.
|
348
|
-
from pluggy_sdk.models.
|
349
|
-
from pluggy_sdk.models.
|
350
|
-
from pluggy_sdk.models.
|
351
|
-
from pluggy_sdk.models.
|
352
|
-
from pluggy_sdk.models.
|
353
|
-
from pluggy_sdk.models.
|
354
|
-
from pluggy_sdk.models.
|
355
|
-
from pluggy_sdk.models.
|
356
|
-
from pluggy_sdk.models.
|
357
|
-
from pluggy_sdk.models.
|
358
|
-
from pluggy_sdk.models.
|
359
|
-
from pluggy_sdk.models.
|
360
|
-
from pluggy_sdk.models.
|
361
|
-
from pluggy_sdk.models.
|
362
|
-
from pluggy_sdk.models.
|
363
|
-
from pluggy_sdk.models.
|
364
|
-
from pluggy_sdk.models.
|
365
|
-
from pluggy_sdk.models.
|
366
|
-
from pluggy_sdk.models.
|
367
|
-
from pluggy_sdk.models.
|
368
|
-
from pluggy_sdk.models.webhooks_list200_response import WebhooksList200Response
|
226
|
+
from pluggy_sdk.models.account import Account as Account
|
227
|
+
from pluggy_sdk.models.accounts_list200_response import AccountsList200Response as AccountsList200Response
|
228
|
+
from pluggy_sdk.models.address import Address as Address
|
229
|
+
from pluggy_sdk.models.auth_request import AuthRequest as AuthRequest
|
230
|
+
from pluggy_sdk.models.auth_response import AuthResponse as AuthResponse
|
231
|
+
from pluggy_sdk.models.bank_data import BankData as BankData
|
232
|
+
from pluggy_sdk.models.bill import Bill as Bill
|
233
|
+
from pluggy_sdk.models.bill_finance_charge import BillFinanceCharge as BillFinanceCharge
|
234
|
+
from pluggy_sdk.models.bills_list200_response import BillsList200Response as BillsList200Response
|
235
|
+
from pluggy_sdk.models.boleto import Boleto as Boleto
|
236
|
+
from pluggy_sdk.models.boleto_connection import BoletoConnection as BoletoConnection
|
237
|
+
from pluggy_sdk.models.boleto_payer import BoletoPayer as BoletoPayer
|
238
|
+
from pluggy_sdk.models.boleto_recipient import BoletoRecipient as BoletoRecipient
|
239
|
+
from pluggy_sdk.models.custom import CUSTOM as CUSTOM
|
240
|
+
from pluggy_sdk.models.category import Category as Category
|
241
|
+
from pluggy_sdk.models.client_category_rule import ClientCategoryRule as ClientCategoryRule
|
242
|
+
from pluggy_sdk.models.company import Company as Company
|
243
|
+
from pluggy_sdk.models.connect_token_request import ConnectTokenRequest as ConnectTokenRequest
|
244
|
+
from pluggy_sdk.models.connect_token_response import ConnectTokenResponse as ConnectTokenResponse
|
245
|
+
from pluggy_sdk.models.connector import Connector as Connector
|
246
|
+
from pluggy_sdk.models.connector_credential import ConnectorCredential as ConnectorCredential
|
247
|
+
from pluggy_sdk.models.connector_health import ConnectorHealth as ConnectorHealth
|
248
|
+
from pluggy_sdk.models.connector_health_details import ConnectorHealthDetails as ConnectorHealthDetails
|
249
|
+
from pluggy_sdk.models.connector_list_response import ConnectorListResponse as ConnectorListResponse
|
250
|
+
from pluggy_sdk.models.connector_user_action import ConnectorUserAction as ConnectorUserAction
|
251
|
+
from pluggy_sdk.models.consent import Consent as Consent
|
252
|
+
from pluggy_sdk.models.create_boleto import CreateBoleto as CreateBoleto
|
253
|
+
from pluggy_sdk.models.create_boleto_boleto import CreateBoletoBoleto as CreateBoletoBoleto
|
254
|
+
from pluggy_sdk.models.create_boleto_boleto_fine import CreateBoletoBoletoFine as CreateBoletoBoletoFine
|
255
|
+
from pluggy_sdk.models.create_boleto_boleto_interest import CreateBoletoBoletoInterest as CreateBoletoBoletoInterest
|
256
|
+
from pluggy_sdk.models.create_boleto_boleto_payer import CreateBoletoBoletoPayer as CreateBoletoBoletoPayer
|
257
|
+
from pluggy_sdk.models.create_boleto_connection import CreateBoletoConnection as CreateBoletoConnection
|
258
|
+
from pluggy_sdk.models.create_boleto_connection_from_item import CreateBoletoConnectionFromItem as CreateBoletoConnectionFromItem
|
259
|
+
from pluggy_sdk.models.create_client_category_rule import CreateClientCategoryRule as CreateClientCategoryRule
|
260
|
+
from pluggy_sdk.models.create_item import CreateItem as CreateItem
|
261
|
+
from pluggy_sdk.models.create_item_parameters import CreateItemParameters as CreateItemParameters
|
262
|
+
from pluggy_sdk.models.create_or_update_payment_customer import CreateOrUpdatePaymentCustomer as CreateOrUpdatePaymentCustomer
|
263
|
+
from pluggy_sdk.models.create_payment_customer_request_body import CreatePaymentCustomerRequestBody as CreatePaymentCustomerRequestBody
|
264
|
+
from pluggy_sdk.models.create_payment_intent import CreatePaymentIntent as CreatePaymentIntent
|
265
|
+
from pluggy_sdk.models.create_payment_recipient import CreatePaymentRecipient as CreatePaymentRecipient
|
266
|
+
from pluggy_sdk.models.create_payment_request import CreatePaymentRequest as CreatePaymentRequest
|
267
|
+
from pluggy_sdk.models.create_payment_request_schedule import CreatePaymentRequestSchedule as CreatePaymentRequestSchedule
|
268
|
+
from pluggy_sdk.models.create_pix_qr_payment_request import CreatePixQrPaymentRequest as CreatePixQrPaymentRequest
|
269
|
+
from pluggy_sdk.models.create_smart_transfer_payment import CreateSmartTransferPayment as CreateSmartTransferPayment
|
270
|
+
from pluggy_sdk.models.create_smart_transfer_preauthorization import CreateSmartTransferPreauthorization as CreateSmartTransferPreauthorization
|
271
|
+
from pluggy_sdk.models.create_webhook import CreateWebhook as CreateWebhook
|
272
|
+
from pluggy_sdk.models.credential_select_option import CredentialSelectOption as CredentialSelectOption
|
273
|
+
from pluggy_sdk.models.credit_card_metadata import CreditCardMetadata as CreditCardMetadata
|
274
|
+
from pluggy_sdk.models.credit_data import CreditData as CreditData
|
275
|
+
from pluggy_sdk.models.daily import DAILY as DAILY
|
276
|
+
from pluggy_sdk.models.document import Document as Document
|
277
|
+
from pluggy_sdk.models.email import Email as Email
|
278
|
+
from pluggy_sdk.models.global_error_response import GlobalErrorResponse as GlobalErrorResponse
|
279
|
+
from pluggy_sdk.models.i_count_response import ICountResponse as ICountResponse
|
280
|
+
from pluggy_sdk.models.identity_relation import IdentityRelation as IdentityRelation
|
281
|
+
from pluggy_sdk.models.identity_response import IdentityResponse as IdentityResponse
|
282
|
+
from pluggy_sdk.models.identity_response_financial_relationships import IdentityResponseFinancialRelationships as IdentityResponseFinancialRelationships
|
283
|
+
from pluggy_sdk.models.identity_response_financial_relationships_accounts_inner import IdentityResponseFinancialRelationshipsAccountsInner as IdentityResponseFinancialRelationshipsAccountsInner
|
284
|
+
from pluggy_sdk.models.identity_response_financial_relationships_procurators_inner import IdentityResponseFinancialRelationshipsProcuratorsInner as IdentityResponseFinancialRelationshipsProcuratorsInner
|
285
|
+
from pluggy_sdk.models.identity_response_qualifications import IdentityResponseQualifications as IdentityResponseQualifications
|
286
|
+
from pluggy_sdk.models.identity_response_qualifications_informed_income import IdentityResponseQualificationsInformedIncome as IdentityResponseQualificationsInformedIncome
|
287
|
+
from pluggy_sdk.models.identity_response_qualifications_informed_patrimony import IdentityResponseQualificationsInformedPatrimony as IdentityResponseQualificationsInformedPatrimony
|
288
|
+
from pluggy_sdk.models.investment import Investment as Investment
|
289
|
+
from pluggy_sdk.models.investment_expenses import InvestmentExpenses as InvestmentExpenses
|
290
|
+
from pluggy_sdk.models.investment_metadata import InvestmentMetadata as InvestmentMetadata
|
291
|
+
from pluggy_sdk.models.investment_transaction import InvestmentTransaction as InvestmentTransaction
|
292
|
+
from pluggy_sdk.models.investments_list200_response import InvestmentsList200Response as InvestmentsList200Response
|
293
|
+
from pluggy_sdk.models.issued_boleto import IssuedBoleto as IssuedBoleto
|
294
|
+
from pluggy_sdk.models.issued_boleto_fine import IssuedBoletoFine as IssuedBoletoFine
|
295
|
+
from pluggy_sdk.models.issued_boleto_interest import IssuedBoletoInterest as IssuedBoletoInterest
|
296
|
+
from pluggy_sdk.models.issued_boleto_payer import IssuedBoletoPayer as IssuedBoletoPayer
|
297
|
+
from pluggy_sdk.models.item import Item as Item
|
298
|
+
from pluggy_sdk.models.item_creation_error_response import ItemCreationErrorResponse as ItemCreationErrorResponse
|
299
|
+
from pluggy_sdk.models.item_error import ItemError as ItemError
|
300
|
+
from pluggy_sdk.models.item_options import ItemOptions as ItemOptions
|
301
|
+
from pluggy_sdk.models.loan import Loan as Loan
|
302
|
+
from pluggy_sdk.models.loan_contracted_fee import LoanContractedFee as LoanContractedFee
|
303
|
+
from pluggy_sdk.models.loan_contracted_finance_charge import LoanContractedFinanceCharge as LoanContractedFinanceCharge
|
304
|
+
from pluggy_sdk.models.loan_installment_balloon_payment import LoanInstallmentBalloonPayment as LoanInstallmentBalloonPayment
|
305
|
+
from pluggy_sdk.models.loan_installment_balloon_payment_amount import LoanInstallmentBalloonPaymentAmount as LoanInstallmentBalloonPaymentAmount
|
306
|
+
from pluggy_sdk.models.loan_installments import LoanInstallments as LoanInstallments
|
307
|
+
from pluggy_sdk.models.loan_interest_rate import LoanInterestRate as LoanInterestRate
|
308
|
+
from pluggy_sdk.models.loan_payment_release import LoanPaymentRelease as LoanPaymentRelease
|
309
|
+
from pluggy_sdk.models.loan_payment_release_over_parcel import LoanPaymentReleaseOverParcel as LoanPaymentReleaseOverParcel
|
310
|
+
from pluggy_sdk.models.loan_payment_release_over_parcel_charge import LoanPaymentReleaseOverParcelCharge as LoanPaymentReleaseOverParcelCharge
|
311
|
+
from pluggy_sdk.models.loan_payment_release_over_parcel_fee import LoanPaymentReleaseOverParcelFee as LoanPaymentReleaseOverParcelFee
|
312
|
+
from pluggy_sdk.models.loan_payments import LoanPayments as LoanPayments
|
313
|
+
from pluggy_sdk.models.loan_warranty import LoanWarranty as LoanWarranty
|
314
|
+
from pluggy_sdk.models.loans_list200_response import LoansList200Response as LoansList200Response
|
315
|
+
from pluggy_sdk.models.monthly import MONTHLY as MONTHLY
|
316
|
+
from pluggy_sdk.models.merchant import Merchant as Merchant
|
317
|
+
from pluggy_sdk.models.not_authenticated_response import NotAuthenticatedResponse as NotAuthenticatedResponse
|
318
|
+
from pluggy_sdk.models.page_response_category_rules import PageResponseCategoryRules as PageResponseCategoryRules
|
319
|
+
from pluggy_sdk.models.page_response_consents import PageResponseConsents as PageResponseConsents
|
320
|
+
from pluggy_sdk.models.page_response_investment_transactions import PageResponseInvestmentTransactions as PageResponseInvestmentTransactions
|
321
|
+
from pluggy_sdk.models.page_response_transactions import PageResponseTransactions as PageResponseTransactions
|
322
|
+
from pluggy_sdk.models.parameter_validation_error import ParameterValidationError as ParameterValidationError
|
323
|
+
from pluggy_sdk.models.parameter_validation_response import ParameterValidationResponse as ParameterValidationResponse
|
324
|
+
from pluggy_sdk.models.payment_customer import PaymentCustomer as PaymentCustomer
|
325
|
+
from pluggy_sdk.models.payment_customers_list200_response import PaymentCustomersList200Response as PaymentCustomersList200Response
|
326
|
+
from pluggy_sdk.models.payment_data import PaymentData as PaymentData
|
327
|
+
from pluggy_sdk.models.payment_data_boleto_metadata import PaymentDataBoletoMetadata as PaymentDataBoletoMetadata
|
328
|
+
from pluggy_sdk.models.payment_data_participant import PaymentDataParticipant as PaymentDataParticipant
|
329
|
+
from pluggy_sdk.models.payment_institution import PaymentInstitution as PaymentInstitution
|
330
|
+
from pluggy_sdk.models.payment_intent import PaymentIntent as PaymentIntent
|
331
|
+
from pluggy_sdk.models.payment_intent_error_detail import PaymentIntentErrorDetail as PaymentIntentErrorDetail
|
332
|
+
from pluggy_sdk.models.payment_intent_parameter import PaymentIntentParameter as PaymentIntentParameter
|
333
|
+
from pluggy_sdk.models.payment_intents_list200_response import PaymentIntentsList200Response as PaymentIntentsList200Response
|
334
|
+
from pluggy_sdk.models.payment_recipient import PaymentRecipient as PaymentRecipient
|
335
|
+
from pluggy_sdk.models.payment_recipient_account import PaymentRecipientAccount as PaymentRecipientAccount
|
336
|
+
from pluggy_sdk.models.payment_recipients_institution_list200_response import PaymentRecipientsInstitutionList200Response as PaymentRecipientsInstitutionList200Response
|
337
|
+
from pluggy_sdk.models.payment_recipients_list200_response import PaymentRecipientsList200Response as PaymentRecipientsList200Response
|
338
|
+
from pluggy_sdk.models.payment_request import PaymentRequest as PaymentRequest
|
339
|
+
from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls as PaymentRequestCallbackUrls
|
340
|
+
from pluggy_sdk.models.payment_request_error_detail import PaymentRequestErrorDetail as PaymentRequestErrorDetail
|
341
|
+
from pluggy_sdk.models.payment_request_schedule import PaymentRequestSchedule as PaymentRequestSchedule
|
342
|
+
from pluggy_sdk.models.payment_requests_list200_response import PaymentRequestsList200Response as PaymentRequestsList200Response
|
343
|
+
from pluggy_sdk.models.payment_schedules_list200_response import PaymentSchedulesList200Response as PaymentSchedulesList200Response
|
344
|
+
from pluggy_sdk.models.phone_number import PhoneNumber as PhoneNumber
|
345
|
+
from pluggy_sdk.models.pix_data import PixData as PixData
|
346
|
+
from pluggy_sdk.models.single import SINGLE as SINGLE
|
347
|
+
from pluggy_sdk.models.schedule_payment import SchedulePayment as SchedulePayment
|
348
|
+
from pluggy_sdk.models.schedule_payment_error_detail import SchedulePaymentErrorDetail as SchedulePaymentErrorDetail
|
349
|
+
from pluggy_sdk.models.smart_tranfers_preauthorizations_list200_response import SmartTranfersPreauthorizationsList200Response as SmartTranfersPreauthorizationsList200Response
|
350
|
+
from pluggy_sdk.models.smart_transfer_callback_urls import SmartTransferCallbackUrls as SmartTransferCallbackUrls
|
351
|
+
from pluggy_sdk.models.smart_transfer_payment import SmartTransferPayment as SmartTransferPayment
|
352
|
+
from pluggy_sdk.models.smart_transfer_preauthorization import SmartTransferPreauthorization as SmartTransferPreauthorization
|
353
|
+
from pluggy_sdk.models.smart_transfer_preauthorization_parameter import SmartTransferPreauthorizationParameter as SmartTransferPreauthorizationParameter
|
354
|
+
from pluggy_sdk.models.status_detail import StatusDetail as StatusDetail
|
355
|
+
from pluggy_sdk.models.status_detail_product import StatusDetailProduct as StatusDetailProduct
|
356
|
+
from pluggy_sdk.models.status_detail_product_warning import StatusDetailProductWarning as StatusDetailProductWarning
|
357
|
+
from pluggy_sdk.models.transaction import Transaction as Transaction
|
358
|
+
from pluggy_sdk.models.update_item import UpdateItem as UpdateItem
|
359
|
+
from pluggy_sdk.models.update_item_parameters import UpdateItemParameters as UpdateItemParameters
|
360
|
+
from pluggy_sdk.models.update_payment_recipient import UpdatePaymentRecipient as UpdatePaymentRecipient
|
361
|
+
from pluggy_sdk.models.update_payment_request import UpdatePaymentRequest as UpdatePaymentRequest
|
362
|
+
from pluggy_sdk.models.update_transaction import UpdateTransaction as UpdateTransaction
|
363
|
+
from pluggy_sdk.models.weekly import WEEKLY as WEEKLY
|
364
|
+
from pluggy_sdk.models.webhook import Webhook as Webhook
|
365
|
+
from pluggy_sdk.models.webhook_creation_error_response import WebhookCreationErrorResponse as WebhookCreationErrorResponse
|
366
|
+
from pluggy_sdk.models.webhooks_list200_response import WebhooksList200Response as WebhooksList200Response
|
@@ -19,7 +19,6 @@ from typing_extensions import Annotated
|
|
19
19
|
|
20
20
|
from pydantic import Field, StrictStr
|
21
21
|
from typing_extensions import Annotated
|
22
|
-
from pluggy_sdk.models.create_boleto_payment_request import CreateBoletoPaymentRequest
|
23
22
|
from pluggy_sdk.models.create_payment_request import CreatePaymentRequest
|
24
23
|
from pluggy_sdk.models.create_pix_qr_payment_request import CreatePixQrPaymentRequest
|
25
24
|
from pluggy_sdk.models.payment_request import PaymentRequest
|
@@ -318,280 +317,6 @@ class PaymentRequestApi:
|
|
318
317
|
|
319
318
|
|
320
319
|
|
321
|
-
@validate_call
|
322
|
-
def payment_request_create_boleto(
|
323
|
-
self,
|
324
|
-
create_boleto_payment_request: CreateBoletoPaymentRequest,
|
325
|
-
_request_timeout: Union[
|
326
|
-
None,
|
327
|
-
Annotated[StrictFloat, Field(gt=0)],
|
328
|
-
Tuple[
|
329
|
-
Annotated[StrictFloat, Field(gt=0)],
|
330
|
-
Annotated[StrictFloat, Field(gt=0)]
|
331
|
-
]
|
332
|
-
] = None,
|
333
|
-
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
334
|
-
_content_type: Optional[StrictStr] = None,
|
335
|
-
_headers: Optional[Dict[StrictStr, Any]] = None,
|
336
|
-
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
337
|
-
) -> PaymentRequest:
|
338
|
-
"""Create boleto payment request
|
339
|
-
|
340
|
-
Creates the boleto payment request resource
|
341
|
-
|
342
|
-
:param create_boleto_payment_request: (required)
|
343
|
-
:type create_boleto_payment_request: CreateBoletoPaymentRequest
|
344
|
-
:param _request_timeout: timeout setting for this request. If one
|
345
|
-
number provided, it will be total request
|
346
|
-
timeout. It can also be a pair (tuple) of
|
347
|
-
(connection, read) timeouts.
|
348
|
-
:type _request_timeout: int, tuple(int, int), optional
|
349
|
-
:param _request_auth: set to override the auth_settings for an a single
|
350
|
-
request; this effectively ignores the
|
351
|
-
authentication in the spec for a single request.
|
352
|
-
:type _request_auth: dict, optional
|
353
|
-
:param _content_type: force content-type for the request.
|
354
|
-
:type _content_type: str, Optional
|
355
|
-
:param _headers: set to override the headers for a single
|
356
|
-
request; this effectively ignores the headers
|
357
|
-
in the spec for a single request.
|
358
|
-
:type _headers: dict, optional
|
359
|
-
:param _host_index: set to override the host_index for a single
|
360
|
-
request; this effectively ignores the host_index
|
361
|
-
in the spec for a single request.
|
362
|
-
:type _host_index: int, optional
|
363
|
-
:return: Returns the result object.
|
364
|
-
""" # noqa: E501
|
365
|
-
|
366
|
-
_param = self._payment_request_create_boleto_serialize(
|
367
|
-
create_boleto_payment_request=create_boleto_payment_request,
|
368
|
-
_request_auth=_request_auth,
|
369
|
-
_content_type=_content_type,
|
370
|
-
_headers=_headers,
|
371
|
-
_host_index=_host_index
|
372
|
-
)
|
373
|
-
|
374
|
-
_response_types_map: Dict[str, Optional[str]] = {
|
375
|
-
'200': "PaymentRequest",
|
376
|
-
}
|
377
|
-
response_data = self.api_client.call_api(
|
378
|
-
*_param,
|
379
|
-
_request_timeout=_request_timeout
|
380
|
-
)
|
381
|
-
response_data.read()
|
382
|
-
return self.api_client.response_deserialize(
|
383
|
-
response_data=response_data,
|
384
|
-
response_types_map=_response_types_map,
|
385
|
-
).data
|
386
|
-
|
387
|
-
|
388
|
-
@validate_call
|
389
|
-
def payment_request_create_boleto_with_http_info(
|
390
|
-
self,
|
391
|
-
create_boleto_payment_request: CreateBoletoPaymentRequest,
|
392
|
-
_request_timeout: Union[
|
393
|
-
None,
|
394
|
-
Annotated[StrictFloat, Field(gt=0)],
|
395
|
-
Tuple[
|
396
|
-
Annotated[StrictFloat, Field(gt=0)],
|
397
|
-
Annotated[StrictFloat, Field(gt=0)]
|
398
|
-
]
|
399
|
-
] = None,
|
400
|
-
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
401
|
-
_content_type: Optional[StrictStr] = None,
|
402
|
-
_headers: Optional[Dict[StrictStr, Any]] = None,
|
403
|
-
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
404
|
-
) -> ApiResponse[PaymentRequest]:
|
405
|
-
"""Create boleto payment request
|
406
|
-
|
407
|
-
Creates the boleto payment request resource
|
408
|
-
|
409
|
-
:param create_boleto_payment_request: (required)
|
410
|
-
:type create_boleto_payment_request: CreateBoletoPaymentRequest
|
411
|
-
:param _request_timeout: timeout setting for this request. If one
|
412
|
-
number provided, it will be total request
|
413
|
-
timeout. It can also be a pair (tuple) of
|
414
|
-
(connection, read) timeouts.
|
415
|
-
:type _request_timeout: int, tuple(int, int), optional
|
416
|
-
:param _request_auth: set to override the auth_settings for an a single
|
417
|
-
request; this effectively ignores the
|
418
|
-
authentication in the spec for a single request.
|
419
|
-
:type _request_auth: dict, optional
|
420
|
-
:param _content_type: force content-type for the request.
|
421
|
-
:type _content_type: str, Optional
|
422
|
-
:param _headers: set to override the headers for a single
|
423
|
-
request; this effectively ignores the headers
|
424
|
-
in the spec for a single request.
|
425
|
-
:type _headers: dict, optional
|
426
|
-
:param _host_index: set to override the host_index for a single
|
427
|
-
request; this effectively ignores the host_index
|
428
|
-
in the spec for a single request.
|
429
|
-
:type _host_index: int, optional
|
430
|
-
:return: Returns the result object.
|
431
|
-
""" # noqa: E501
|
432
|
-
|
433
|
-
_param = self._payment_request_create_boleto_serialize(
|
434
|
-
create_boleto_payment_request=create_boleto_payment_request,
|
435
|
-
_request_auth=_request_auth,
|
436
|
-
_content_type=_content_type,
|
437
|
-
_headers=_headers,
|
438
|
-
_host_index=_host_index
|
439
|
-
)
|
440
|
-
|
441
|
-
_response_types_map: Dict[str, Optional[str]] = {
|
442
|
-
'200': "PaymentRequest",
|
443
|
-
}
|
444
|
-
response_data = self.api_client.call_api(
|
445
|
-
*_param,
|
446
|
-
_request_timeout=_request_timeout
|
447
|
-
)
|
448
|
-
response_data.read()
|
449
|
-
return self.api_client.response_deserialize(
|
450
|
-
response_data=response_data,
|
451
|
-
response_types_map=_response_types_map,
|
452
|
-
)
|
453
|
-
|
454
|
-
|
455
|
-
@validate_call
|
456
|
-
def payment_request_create_boleto_without_preload_content(
|
457
|
-
self,
|
458
|
-
create_boleto_payment_request: CreateBoletoPaymentRequest,
|
459
|
-
_request_timeout: Union[
|
460
|
-
None,
|
461
|
-
Annotated[StrictFloat, Field(gt=0)],
|
462
|
-
Tuple[
|
463
|
-
Annotated[StrictFloat, Field(gt=0)],
|
464
|
-
Annotated[StrictFloat, Field(gt=0)]
|
465
|
-
]
|
466
|
-
] = None,
|
467
|
-
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
468
|
-
_content_type: Optional[StrictStr] = None,
|
469
|
-
_headers: Optional[Dict[StrictStr, Any]] = None,
|
470
|
-
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
471
|
-
) -> RESTResponseType:
|
472
|
-
"""Create boleto payment request
|
473
|
-
|
474
|
-
Creates the boleto payment request resource
|
475
|
-
|
476
|
-
:param create_boleto_payment_request: (required)
|
477
|
-
:type create_boleto_payment_request: CreateBoletoPaymentRequest
|
478
|
-
:param _request_timeout: timeout setting for this request. If one
|
479
|
-
number provided, it will be total request
|
480
|
-
timeout. It can also be a pair (tuple) of
|
481
|
-
(connection, read) timeouts.
|
482
|
-
:type _request_timeout: int, tuple(int, int), optional
|
483
|
-
:param _request_auth: set to override the auth_settings for an a single
|
484
|
-
request; this effectively ignores the
|
485
|
-
authentication in the spec for a single request.
|
486
|
-
:type _request_auth: dict, optional
|
487
|
-
:param _content_type: force content-type for the request.
|
488
|
-
:type _content_type: str, Optional
|
489
|
-
:param _headers: set to override the headers for a single
|
490
|
-
request; this effectively ignores the headers
|
491
|
-
in the spec for a single request.
|
492
|
-
:type _headers: dict, optional
|
493
|
-
:param _host_index: set to override the host_index for a single
|
494
|
-
request; this effectively ignores the host_index
|
495
|
-
in the spec for a single request.
|
496
|
-
:type _host_index: int, optional
|
497
|
-
:return: Returns the result object.
|
498
|
-
""" # noqa: E501
|
499
|
-
|
500
|
-
_param = self._payment_request_create_boleto_serialize(
|
501
|
-
create_boleto_payment_request=create_boleto_payment_request,
|
502
|
-
_request_auth=_request_auth,
|
503
|
-
_content_type=_content_type,
|
504
|
-
_headers=_headers,
|
505
|
-
_host_index=_host_index
|
506
|
-
)
|
507
|
-
|
508
|
-
_response_types_map: Dict[str, Optional[str]] = {
|
509
|
-
'200': "PaymentRequest",
|
510
|
-
}
|
511
|
-
response_data = self.api_client.call_api(
|
512
|
-
*_param,
|
513
|
-
_request_timeout=_request_timeout
|
514
|
-
)
|
515
|
-
return response_data.response
|
516
|
-
|
517
|
-
|
518
|
-
def _payment_request_create_boleto_serialize(
|
519
|
-
self,
|
520
|
-
create_boleto_payment_request,
|
521
|
-
_request_auth,
|
522
|
-
_content_type,
|
523
|
-
_headers,
|
524
|
-
_host_index,
|
525
|
-
) -> RequestSerialized:
|
526
|
-
|
527
|
-
_host = None
|
528
|
-
|
529
|
-
_collection_formats: Dict[str, str] = {
|
530
|
-
}
|
531
|
-
|
532
|
-
_path_params: Dict[str, str] = {}
|
533
|
-
_query_params: List[Tuple[str, str]] = []
|
534
|
-
_header_params: Dict[str, Optional[str]] = _headers or {}
|
535
|
-
_form_params: List[Tuple[str, str]] = []
|
536
|
-
_files: Dict[
|
537
|
-
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
538
|
-
] = {}
|
539
|
-
_body_params: Optional[bytes] = None
|
540
|
-
|
541
|
-
# process the path parameters
|
542
|
-
# process the query parameters
|
543
|
-
# process the header parameters
|
544
|
-
# process the form parameters
|
545
|
-
# process the body parameter
|
546
|
-
if create_boleto_payment_request is not None:
|
547
|
-
_body_params = create_boleto_payment_request
|
548
|
-
|
549
|
-
|
550
|
-
# set the HTTP header `Accept`
|
551
|
-
if 'Accept' not in _header_params:
|
552
|
-
_header_params['Accept'] = self.api_client.select_header_accept(
|
553
|
-
[
|
554
|
-
'application/json'
|
555
|
-
]
|
556
|
-
)
|
557
|
-
|
558
|
-
# set the HTTP header `Content-Type`
|
559
|
-
if _content_type:
|
560
|
-
_header_params['Content-Type'] = _content_type
|
561
|
-
else:
|
562
|
-
_default_content_type = (
|
563
|
-
self.api_client.select_header_content_type(
|
564
|
-
[
|
565
|
-
'application/json'
|
566
|
-
]
|
567
|
-
)
|
568
|
-
)
|
569
|
-
if _default_content_type is not None:
|
570
|
-
_header_params['Content-Type'] = _default_content_type
|
571
|
-
|
572
|
-
# authentication setting
|
573
|
-
_auth_settings: List[str] = [
|
574
|
-
'default'
|
575
|
-
]
|
576
|
-
|
577
|
-
return self.api_client.param_serialize(
|
578
|
-
method='POST',
|
579
|
-
resource_path='/payments/requests/boleto',
|
580
|
-
path_params=_path_params,
|
581
|
-
query_params=_query_params,
|
582
|
-
header_params=_header_params,
|
583
|
-
body=_body_params,
|
584
|
-
post_params=_form_params,
|
585
|
-
files=_files,
|
586
|
-
auth_settings=_auth_settings,
|
587
|
-
collection_formats=_collection_formats,
|
588
|
-
_host=_host,
|
589
|
-
_request_auth=_request_auth
|
590
|
-
)
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
320
|
@validate_call
|
596
321
|
def payment_request_create_pix_qr(
|
597
322
|
self,
|
@@ -311,7 +311,7 @@ class PaymentScheduleApi:
|
|
311
311
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
312
312
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
313
313
|
) -> None:
|
314
|
-
"""Cancel Payment Schedule
|
314
|
+
"""Cancel Payment Schedule
|
315
315
|
|
316
316
|
|
317
317
|
|
@@ -382,7 +382,7 @@ class PaymentScheduleApi:
|
|
382
382
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
383
383
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
384
384
|
) -> ApiResponse[None]:
|
385
|
-
"""Cancel Payment Schedule
|
385
|
+
"""Cancel Payment Schedule
|
386
386
|
|
387
387
|
|
388
388
|
|
@@ -453,7 +453,7 @@ class PaymentScheduleApi:
|
|
453
453
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
454
454
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
455
455
|
) -> RESTResponseType:
|
456
|
-
"""Cancel Payment Schedule
|
456
|
+
"""Cancel Payment Schedule
|
457
457
|
|
458
458
|
|
459
459
|
|
pluggy_sdk/api_client.py
CHANGED
@@ -91,7 +91,7 @@ class ApiClient:
|
|
91
91
|
self.default_headers[header_name] = header_value
|
92
92
|
self.cookie = cookie
|
93
93
|
# Set default User-Agent.
|
94
|
-
self.user_agent = 'OpenAPI-Generator/1.0.0.
|
94
|
+
self.user_agent = 'OpenAPI-Generator/1.0.0.post44/python'
|
95
95
|
self.client_side_validation = configuration.client_side_validation
|
96
96
|
|
97
97
|
def __enter__(self):
|
@@ -383,6 +383,10 @@ class ApiClient:
|
|
383
383
|
else:
|
384
384
|
obj_dict = obj.__dict__
|
385
385
|
|
386
|
+
if isinstance(obj_dict, list):
|
387
|
+
# here we handle instances that can either be a list or something else, and only became a real list by calling to_dict()
|
388
|
+
return self.sanitize_for_serialization(obj_dict)
|
389
|
+
|
386
390
|
return {
|
387
391
|
key: self.sanitize_for_serialization(val)
|
388
392
|
for key, val in obj_dict.items()
|
pluggy_sdk/configuration.py
CHANGED
@@ -532,7 +532,7 @@ conf = pluggy_sdk.Configuration(
|
|
532
532
|
"OS: {env}\n"\
|
533
533
|
"Python Version: {pyversion}\n"\
|
534
534
|
"Version of the API: 1.0.0\n"\
|
535
|
-
"SDK Package Version: 1.0.0.
|
535
|
+
"SDK Package Version: 1.0.0.post44".\
|
536
536
|
format(env=sys.platform, pyversion=sys.version)
|
537
537
|
|
538
538
|
def get_host_settings(self) -> List[HostSetting]:
|
pluggy_sdk/models/__init__.py
CHANGED
@@ -48,7 +48,6 @@ from pluggy_sdk.models.create_boleto_boleto_interest import CreateBoletoBoletoIn
|
|
48
48
|
from pluggy_sdk.models.create_boleto_boleto_payer import CreateBoletoBoletoPayer
|
49
49
|
from pluggy_sdk.models.create_boleto_connection import CreateBoletoConnection
|
50
50
|
from pluggy_sdk.models.create_boleto_connection_from_item import CreateBoletoConnectionFromItem
|
51
|
-
from pluggy_sdk.models.create_boleto_payment_request import CreateBoletoPaymentRequest
|
52
51
|
from pluggy_sdk.models.create_client_category_rule import CreateClientCategoryRule
|
53
52
|
from pluggy_sdk.models.create_item import CreateItem
|
54
53
|
from pluggy_sdk.models.create_item_parameters import CreateItemParameters
|
@@ -33,8 +33,9 @@ class SchedulePayment(BaseModel):
|
|
33
33
|
description: StrictStr = Field(description="Scheduled payment description")
|
34
34
|
status: StrictStr = Field(description="Scheduled payment status")
|
35
35
|
scheduled_date: date = Field(description="Date when the payment is scheduled", alias="scheduledDate")
|
36
|
+
end_to_end_id: Optional[StrictStr] = Field(default=None, description="Identifier for the payment, used to link the scheduled payment with the corresponding payment received", alias="endToEndId")
|
36
37
|
error_detail: Optional[SchedulePaymentErrorDetail] = Field(default=None, alias="errorDetail")
|
37
|
-
__properties: ClassVar[List[str]] = ["id", "description", "status", "scheduledDate", "errorDetail"]
|
38
|
+
__properties: ClassVar[List[str]] = ["id", "description", "status", "scheduledDate", "endToEndId", "errorDetail"]
|
38
39
|
|
39
40
|
@field_validator('status')
|
40
41
|
def status_validate_enum(cls, value):
|
@@ -101,6 +102,7 @@ class SchedulePayment(BaseModel):
|
|
101
102
|
"description": obj.get("description"),
|
102
103
|
"status": obj.get("status"),
|
103
104
|
"scheduledDate": obj.get("scheduledDate"),
|
105
|
+
"endToEndId": obj.get("endToEndId"),
|
104
106
|
"errorDetail": SchedulePaymentErrorDetail.from_dict(obj["errorDetail"]) if obj.get("errorDetail") is not None else None
|
105
107
|
})
|
106
108
|
return _obj
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pluggy-sdk
|
3
|
-
Version: 1.0.0.
|
3
|
+
Version: 1.0.0.post44
|
4
4
|
Summary: Pluggy API
|
5
5
|
Home-page: https://github.com/diraol/pluggy-python
|
6
6
|
Author: Pluggy
|
@@ -28,7 +28,7 @@ Pluggy's main API to review data and execute connectors
|
|
28
28
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
29
29
|
|
30
30
|
- API version: 1.0.0
|
31
|
-
- Package version: 1.0.0.
|
31
|
+
- Package version: 1.0.0.post44
|
32
32
|
- Generator version: 7.14.0-SNAPSHOT
|
33
33
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
34
34
|
For more information, please visit [https://pluggy.ai](https://pluggy.ai)
|
@@ -170,14 +170,13 @@ Class | Method | HTTP request | Description
|
|
170
170
|
*PaymentRecipientApi* | [**payment_recipients_institution_list**](docs/PaymentRecipientApi.md#payment_recipients_institution_list) | **GET** /payments/recipients/institutions | List Institutions
|
171
171
|
*PaymentRecipientApi* | [**payment_recipients_list**](docs/PaymentRecipientApi.md#payment_recipients_list) | **GET** /payments/recipients | List
|
172
172
|
*PaymentRequestApi* | [**payment_request_create**](docs/PaymentRequestApi.md#payment_request_create) | **POST** /payments/requests | Create
|
173
|
-
*PaymentRequestApi* | [**payment_request_create_boleto**](docs/PaymentRequestApi.md#payment_request_create_boleto) | **POST** /payments/requests/boleto | Create boleto payment request
|
174
173
|
*PaymentRequestApi* | [**payment_request_create_pix_qr**](docs/PaymentRequestApi.md#payment_request_create_pix_qr) | **POST** /payments/requests/pix-qr | Create PIX QR payment request
|
175
174
|
*PaymentRequestApi* | [**payment_request_delete**](docs/PaymentRequestApi.md#payment_request_delete) | **DELETE** /payments/requests/{id} | Delete
|
176
175
|
*PaymentRequestApi* | [**payment_request_retrieve**](docs/PaymentRequestApi.md#payment_request_retrieve) | **GET** /payments/requests/{id} | Retrieve
|
177
176
|
*PaymentRequestApi* | [**payment_request_update**](docs/PaymentRequestApi.md#payment_request_update) | **PATCH** /payments/requests/{id} | Update
|
178
177
|
*PaymentRequestApi* | [**payment_requests_list**](docs/PaymentRequestApi.md#payment_requests_list) | **GET** /payments/requests | List
|
179
178
|
*PaymentScheduleApi* | [**payment_schedules_cancel**](docs/PaymentScheduleApi.md#payment_schedules_cancel) | **POST** /payments/requests/{id}/schedules/cancel | Cancel Payment Schedule Authorization
|
180
|
-
*PaymentScheduleApi* | [**payment_schedules_cancel_specific**](docs/PaymentScheduleApi.md#payment_schedules_cancel_specific) | **POST** /payments/requests/{id}/schedules/{scheduleId}/cancel | Cancel Payment Schedule
|
179
|
+
*PaymentScheduleApi* | [**payment_schedules_cancel_specific**](docs/PaymentScheduleApi.md#payment_schedules_cancel_specific) | **POST** /payments/requests/{id}/schedules/{scheduleId}/cancel | Cancel Payment Schedule
|
181
180
|
*PaymentScheduleApi* | [**payment_schedules_list**](docs/PaymentScheduleApi.md#payment_schedules_list) | **GET** /payments/requests/{id}/schedules | List Schedules
|
182
181
|
*SmartTransferApi* | [**smart_tranfers_preauthorizations_list**](docs/SmartTransferApi.md#smart_tranfers_preauthorizations_list) | **GET** /smart-transfers/preauthorizations | List preauthorizations
|
183
182
|
*SmartTransferApi* | [**smart_transfer_payment_create**](docs/SmartTransferApi.md#smart_transfer_payment_create) | **POST** /smart-transfers/payments | Create payment
|
@@ -229,7 +228,6 @@ Class | Method | HTTP request | Description
|
|
229
228
|
- [CreateBoletoBoletoPayer](docs/CreateBoletoBoletoPayer.md)
|
230
229
|
- [CreateBoletoConnection](docs/CreateBoletoConnection.md)
|
231
230
|
- [CreateBoletoConnectionFromItem](docs/CreateBoletoConnectionFromItem.md)
|
232
|
-
- [CreateBoletoPaymentRequest](docs/CreateBoletoPaymentRequest.md)
|
233
231
|
- [CreateClientCategoryRule](docs/CreateClientCategoryRule.md)
|
234
232
|
- [CreateItem](docs/CreateItem.md)
|
235
233
|
- [CreateItemParameters](docs/CreateItemParameters.md)
|
@@ -1,7 +1,7 @@
|
|
1
|
-
pluggy_sdk/__init__.py,sha256=
|
2
|
-
pluggy_sdk/api_client.py,sha256=
|
1
|
+
pluggy_sdk/__init__.py,sha256=KIMUpD2-CV4z_OaB4Cm2Pa0Qxmxx_dEx9MpkAO1bSk8,20741
|
2
|
+
pluggy_sdk/api_client.py,sha256=xhHw71QPRSgx7LQyMbC6AKUWgLF_Bwacsz9AYo6fk2M,27672
|
3
3
|
pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
4
|
-
pluggy_sdk/configuration.py,sha256=
|
4
|
+
pluggy_sdk/configuration.py,sha256=GQMDdbX-v3AL7uffoUgod0vrpmeRSHr03mo6gtCwvrU,18823
|
5
5
|
pluggy_sdk/exceptions.py,sha256=i3cDTqzBiyuMq9VdCqE6CVVf09vq_TDYL9uOVvFoZis,6452
|
6
6
|
pluggy_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
pluggy_sdk/rest.py,sha256=GHVGUFTXDukPvnXQi5AUNhTb1Ko-ZdZdvJQLnovZlbs,9445
|
@@ -27,8 +27,8 @@ pluggy_sdk/api/payment_customer_api.py,sha256=2oxLDZt8BvDhg1P942AQaQUNsGBgvFL9Bp
|
|
27
27
|
pluggy_sdk/api/payment_intent_api.py,sha256=xb5TAryR7WH6uMFH8-M1jeQonnnYxJ1TPkw2lZ3P_E0,32422
|
28
28
|
pluggy_sdk/api/payment_receipts_api.py,sha256=kIf-vRlUK9yr6Udt8Xfvv3_8kL9c1_w8J8fyrWt3ylU,32644
|
29
29
|
pluggy_sdk/api/payment_recipient_api.py,sha256=WbprFZ_w1CXt9QAJPGWlbpPm5zhqFpD88mD_B9QR3ug,77923
|
30
|
-
pluggy_sdk/api/payment_request_api.py,sha256=
|
31
|
-
pluggy_sdk/api/payment_schedule_api.py,sha256=
|
30
|
+
pluggy_sdk/api/payment_request_api.py,sha256=yAfXrUPtUZR2ktqDSPwIlm_FkUE7PW_Ab5nDAtj5xaM,63808
|
31
|
+
pluggy_sdk/api/payment_schedule_api.py,sha256=d9uRuUcdhoOHBKIUoNwNbFfI8413D2F_Qk4bva5GumY,31563
|
32
32
|
pluggy_sdk/api/payroll_loan_api.py,sha256=UqHuWdWa6PYAFBLdeRQTw0tMhv-yuhdN8Jk1qd7h8SQ,21180
|
33
33
|
pluggy_sdk/api/portfolio_yield_api.py,sha256=MuqWrp6say2ZrwnucEszvH0dvpYZeB_IJDoCgwRGAOg,22588
|
34
34
|
pluggy_sdk/api/smart_account_api.py,sha256=jH2o0d7KgTGGf0R-DsEYDlEjxqhpiN1g_LNumXvAIMk,66997
|
@@ -36,7 +36,7 @@ pluggy_sdk/api/smart_account_transfer_api.py,sha256=H-uScNzIIlUzymh8GHKLoypler5T
|
|
36
36
|
pluggy_sdk/api/smart_transfer_api.py,sha256=txy3I7VsD8wlmzPAmKgva7szkTi_2ne3RDMo6zrcj-0,56198
|
37
37
|
pluggy_sdk/api/transaction_api.py,sha256=hJdOkkOB0PEl1eSceLppyaX7Ot1SSSSz7CPWl4JbxRU,41854
|
38
38
|
pluggy_sdk/api/webhook_api.py,sha256=PmwRiQPIvl5vdDqNFdVKJLdBMGMyoccEHYmrxf7A4G4,56195
|
39
|
-
pluggy_sdk/models/__init__.py,sha256=
|
39
|
+
pluggy_sdk/models/__init__.py,sha256=hIRg1ILVlSdtixtyOkhgvjlcrihx1IJgrft3E5Jji2E,10753
|
40
40
|
pluggy_sdk/models/account.py,sha256=olFI5wpLnLLE7OO22B4zlNzSAf5TP8kGPVmYar_VUdg,5536
|
41
41
|
pluggy_sdk/models/accounts_list200_response.py,sha256=B4SakmOjxyOmTHYtTMmYKJo2nnKScnvqCN348JP98aE,3441
|
42
42
|
pluggy_sdk/models/acquirer_anticipation.py,sha256=_z-lkqKpAML1Tr60J8MoGnc3sN0AOXYPJaTk_DVmYNg,4617
|
@@ -200,7 +200,7 @@ pluggy_sdk/models/payroll_loans_list200_response.py,sha256=zG54rlfMAINvraIn48n-1
|
|
200
200
|
pluggy_sdk/models/percentage_over_index.py,sha256=UMM-sXy36J5X_kfVCCy3glXjEGUXJzZxKQM0Ipt05uE,2861
|
201
201
|
pluggy_sdk/models/phone_number.py,sha256=KtNMYqBE9K7Of-gVId3wV9gN9vf1XGbDnv3R_s-QGco,3087
|
202
202
|
pluggy_sdk/models/pix_data.py,sha256=zygIaWicGwI93-q181yHzPVxKBZ7wpuhN70b_KvPm0c,2602
|
203
|
-
pluggy_sdk/models/schedule_payment.py,sha256=
|
203
|
+
pluggy_sdk/models/schedule_payment.py,sha256=jeZhxuQtaZpy3azrv3WDZszkKfur_m_djAvOK8YOKDY,4040
|
204
204
|
pluggy_sdk/models/schedule_payment_error_detail.py,sha256=9bqhCPmKOkIKXE6nnjN72PQ28QE9-jJtQZKB8fET-AA,2975
|
205
205
|
pluggy_sdk/models/schedule_type_custom.py,sha256=OIPS53NFeFbQ3rFR030CEdP1E0XY2bJUP4iHc8Iv-q4,3174
|
206
206
|
pluggy_sdk/models/schedule_type_daily.py,sha256=FWFTMERGd8ma9dVmp5oXm2CoXFX0Mxa81huli9Th83g,3145
|
@@ -231,7 +231,7 @@ pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,
|
|
231
231
|
pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
|
232
232
|
pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
|
233
233
|
pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
|
234
|
-
pluggy_sdk-1.0.0.
|
235
|
-
pluggy_sdk-1.0.0.
|
236
|
-
pluggy_sdk-1.0.0.
|
237
|
-
pluggy_sdk-1.0.0.
|
234
|
+
pluggy_sdk-1.0.0.post44.dist-info/METADATA,sha256=13A7idqoC8fgFUcKcFnCBFrWINgGzDAvR8vkos5Xslg,21306
|
235
|
+
pluggy_sdk-1.0.0.post44.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
236
|
+
pluggy_sdk-1.0.0.post44.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
|
237
|
+
pluggy_sdk-1.0.0.post44.dist-info/RECORD,,
|
File without changes
|