pluggy-sdk 1.0.0.post34__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 +200 -0
- pluggy_sdk/api/__init__.py +25 -0
- pluggy_sdk/api/account_api.py +588 -0
- pluggy_sdk/api/acquirer_anticipation_api.py +664 -0
- pluggy_sdk/api/acquirer_receivable_api.py +664 -0
- pluggy_sdk/api/acquirer_sale_api.py +664 -0
- pluggy_sdk/api/auth_api.py +605 -0
- pluggy_sdk/api/benefit_api.py +567 -0
- pluggy_sdk/api/bill_api.py +567 -0
- pluggy_sdk/api/bulk_payment_api.py +1127 -0
- pluggy_sdk/api/category_api.py +1096 -0
- pluggy_sdk/api/connector_api.py +979 -0
- pluggy_sdk/api/consent_api.py +576 -0
- pluggy_sdk/api/identity_api.py +581 -0
- pluggy_sdk/api/income_report_api.py +311 -0
- pluggy_sdk/api/investment_api.py +918 -0
- pluggy_sdk/api/items_api.py +1456 -0
- pluggy_sdk/api/loan_api.py +567 -0
- pluggy_sdk/api/payment_customer_api.py +1414 -0
- pluggy_sdk/api/payment_intent_api.py +842 -0
- pluggy_sdk/api/payment_receipts_api.py +842 -0
- pluggy_sdk/api/payment_recipient_api.py +1997 -0
- pluggy_sdk/api/payment_request_api.py +2739 -0
- pluggy_sdk/api/payment_schedule_api.py +823 -0
- pluggy_sdk/api/payroll_loan_api.py +561 -0
- pluggy_sdk/api/portfolio_yield_api.py +580 -0
- pluggy_sdk/api/smart_account_api.py +1704 -0
- pluggy_sdk/api/smart_account_transfer_api.py +610 -0
- pluggy_sdk/api/smart_transfer_api.py +1406 -0
- pluggy_sdk/api/transaction_api.py +963 -0
- pluggy_sdk/api/webhook_api.py +1406 -0
- pluggy_sdk/api_client.py +798 -0
- pluggy_sdk/api_response.py +21 -0
- pluggy_sdk/configuration.py +596 -0
- pluggy_sdk/exceptions.py +217 -0
- pluggy_sdk/models/__init__.py +163 -0
- pluggy_sdk/models/account.py +134 -0
- pluggy_sdk/models/accounts_list200_response.py +102 -0
- pluggy_sdk/models/acquirer_anticipation.py +117 -0
- pluggy_sdk/models/acquirer_anticipation_data.py +101 -0
- pluggy_sdk/models/acquirer_data.py +113 -0
- pluggy_sdk/models/acquirer_receivable.py +143 -0
- pluggy_sdk/models/acquirer_receivable_data.py +108 -0
- pluggy_sdk/models/acquirer_receivable_data_establishment.py +96 -0
- pluggy_sdk/models/acquirer_receivable_destination_account.py +92 -0
- pluggy_sdk/models/acquirer_receivable_related_sale.py +99 -0
- pluggy_sdk/models/acquirer_sale.py +171 -0
- pluggy_sdk/models/acquirer_sale_data.py +150 -0
- pluggy_sdk/models/acquirer_sale_installment.py +93 -0
- pluggy_sdk/models/acquirer_sale_installment_data.py +95 -0
- pluggy_sdk/models/address.py +110 -0
- pluggy_sdk/models/aggregated_portfolio.py +120 -0
- pluggy_sdk/models/aggregated_portfolio_response.py +102 -0
- pluggy_sdk/models/asset_distribution.py +88 -0
- pluggy_sdk/models/auth_request.py +90 -0
- pluggy_sdk/models/auth_response.py +88 -0
- pluggy_sdk/models/bank_data.py +92 -0
- pluggy_sdk/models/benefit_loan.py +121 -0
- pluggy_sdk/models/benefit_loan_client.py +102 -0
- pluggy_sdk/models/benefit_response.py +118 -0
- pluggy_sdk/models/benefit_response_paying_institution.py +94 -0
- pluggy_sdk/models/benefits_list200_response.py +102 -0
- pluggy_sdk/models/bill.py +109 -0
- pluggy_sdk/models/bill_finance_charge.py +103 -0
- pluggy_sdk/models/bills_list200_response.py +102 -0
- pluggy_sdk/models/boleto.py +121 -0
- pluggy_sdk/models/boleto_payer.py +90 -0
- pluggy_sdk/models/boleto_recipient.py +90 -0
- pluggy_sdk/models/bulk_payment.py +128 -0
- pluggy_sdk/models/bulk_payments_list200_response.py +102 -0
- pluggy_sdk/models/category.py +96 -0
- pluggy_sdk/models/client_category_rule.py +98 -0
- pluggy_sdk/models/company.py +90 -0
- pluggy_sdk/models/connect_token_request.py +94 -0
- pluggy_sdk/models/connect_token_response.py +88 -0
- pluggy_sdk/models/connector.py +145 -0
- pluggy_sdk/models/connector_credential.py +121 -0
- pluggy_sdk/models/connector_health.py +96 -0
- pluggy_sdk/models/connector_health_details.py +90 -0
- pluggy_sdk/models/connector_list_response.py +102 -0
- pluggy_sdk/models/connector_user_action.py +93 -0
- pluggy_sdk/models/consent.py +120 -0
- pluggy_sdk/models/create_boleto_payment_request.py +98 -0
- pluggy_sdk/models/create_bulk_payment.py +96 -0
- pluggy_sdk/models/create_client_category_rule.py +96 -0
- pluggy_sdk/models/create_item.py +115 -0
- pluggy_sdk/models/create_item_parameters.py +144 -0
- pluggy_sdk/models/create_or_update_payment_customer.py +105 -0
- pluggy_sdk/models/create_payment_customer_request_body.py +103 -0
- pluggy_sdk/models/create_payment_intent.py +110 -0
- pluggy_sdk/models/create_payment_recipient.py +104 -0
- pluggy_sdk/models/create_payment_request.py +115 -0
- pluggy_sdk/models/create_payment_request_schedule.py +189 -0
- pluggy_sdk/models/create_pix_qr_payment_request.py +96 -0
- pluggy_sdk/models/create_smart_account_request.py +104 -0
- pluggy_sdk/models/create_smart_account_transfer_request.py +92 -0
- pluggy_sdk/models/create_smart_transfer_payment.py +96 -0
- pluggy_sdk/models/create_smart_transfer_preauthorization.py +104 -0
- pluggy_sdk/models/create_webhook.py +99 -0
- pluggy_sdk/models/credential_select_option.py +90 -0
- pluggy_sdk/models/credit_card_metadata.py +101 -0
- pluggy_sdk/models/credit_data.py +127 -0
- pluggy_sdk/models/custom.py +100 -0
- pluggy_sdk/models/daily.py +101 -0
- pluggy_sdk/models/document.py +100 -0
- pluggy_sdk/models/email.py +100 -0
- pluggy_sdk/models/global_error_response.py +94 -0
- pluggy_sdk/models/i_count_response.py +88 -0
- pluggy_sdk/models/identity_relation.py +102 -0
- pluggy_sdk/models/identity_response.py +173 -0
- pluggy_sdk/models/identity_response_financial_relationships.py +111 -0
- pluggy_sdk/models/identity_response_financial_relationships_accounts_inner.py +98 -0
- pluggy_sdk/models/identity_response_financial_relationships_procurators_inner.py +101 -0
- pluggy_sdk/models/identity_response_qualifications.py +112 -0
- pluggy_sdk/models/identity_response_qualifications_informed_income.py +100 -0
- pluggy_sdk/models/identity_response_qualifications_informed_patrimony.py +90 -0
- pluggy_sdk/models/income_report.py +90 -0
- pluggy_sdk/models/income_reports_response.py +102 -0
- pluggy_sdk/models/investment.py +192 -0
- pluggy_sdk/models/investment_expenses.py +108 -0
- pluggy_sdk/models/investment_metadata.py +100 -0
- pluggy_sdk/models/investment_transaction.py +124 -0
- pluggy_sdk/models/investments_list200_response.py +102 -0
- pluggy_sdk/models/item.py +150 -0
- pluggy_sdk/models/item_creation_error_response.py +102 -0
- pluggy_sdk/models/item_error.py +94 -0
- pluggy_sdk/models/item_options.py +94 -0
- pluggy_sdk/models/loan.py +199 -0
- pluggy_sdk/models/loan_contracted_fee.py +118 -0
- pluggy_sdk/models/loan_contracted_finance_charge.py +92 -0
- pluggy_sdk/models/loan_installment_balloon_payment.py +95 -0
- pluggy_sdk/models/loan_installment_balloon_payment_amount.py +90 -0
- pluggy_sdk/models/loan_installments.py +130 -0
- pluggy_sdk/models/loan_interest_rate.py +136 -0
- pluggy_sdk/models/loan_payment_release.py +103 -0
- pluggy_sdk/models/loan_payment_release_over_parcel.py +106 -0
- pluggy_sdk/models/loan_payment_release_over_parcel_charge.py +92 -0
- pluggy_sdk/models/loan_payment_release_over_parcel_fee.py +92 -0
- pluggy_sdk/models/loan_payments.py +98 -0
- pluggy_sdk/models/loan_warranty.py +94 -0
- pluggy_sdk/models/loans_list200_response.py +102 -0
- pluggy_sdk/models/merchant.py +96 -0
- pluggy_sdk/models/monthly.py +103 -0
- pluggy_sdk/models/monthly_portfolio.py +100 -0
- pluggy_sdk/models/monthly_portfolio_response.py +102 -0
- pluggy_sdk/models/not_authenticated_response.py +90 -0
- pluggy_sdk/models/page_response_acquirer_anticipations.py +102 -0
- pluggy_sdk/models/page_response_acquirer_receivables.py +102 -0
- pluggy_sdk/models/page_response_acquirer_sales.py +102 -0
- pluggy_sdk/models/page_response_category_rules.py +102 -0
- pluggy_sdk/models/page_response_consents.py +102 -0
- pluggy_sdk/models/page_response_investment_transactions.py +102 -0
- pluggy_sdk/models/page_response_transactions.py +102 -0
- pluggy_sdk/models/parameter_validation_error.py +92 -0
- pluggy_sdk/models/parameter_validation_response.py +98 -0
- pluggy_sdk/models/payment_customer.py +105 -0
- pluggy_sdk/models/payment_customers_list200_response.py +102 -0
- pluggy_sdk/models/payment_data.py +111 -0
- pluggy_sdk/models/payment_data_boleto_metadata.py +98 -0
- pluggy_sdk/models/payment_data_participant.py +102 -0
- pluggy_sdk/models/payment_institution.py +101 -0
- pluggy_sdk/models/payment_intent.py +145 -0
- pluggy_sdk/models/payment_intent_parameter.py +90 -0
- pluggy_sdk/models/payment_intents_list200_response.py +102 -0
- pluggy_sdk/models/payment_receipt.py +120 -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 +110 -0
- pluggy_sdk/models/payment_recipient_account.py +92 -0
- pluggy_sdk/models/payment_recipients_institution_list200_response.py +102 -0
- pluggy_sdk/models/payment_recipients_list200_response.py +102 -0
- pluggy_sdk/models/payment_request.py +132 -0
- pluggy_sdk/models/payment_request_callback_urls.py +92 -0
- pluggy_sdk/models/payment_request_receipt_list200_response.py +102 -0
- pluggy_sdk/models/payment_request_schedule.py +183 -0
- pluggy_sdk/models/payment_requests_list200_response.py +102 -0
- pluggy_sdk/models/payment_schedules_list200_response.py +102 -0
- pluggy_sdk/models/payroll_loan.py +121 -0
- pluggy_sdk/models/payroll_loan_client.py +102 -0
- pluggy_sdk/models/payroll_loan_response.py +125 -0
- pluggy_sdk/models/payroll_loan_response_client.py +102 -0
- pluggy_sdk/models/payroll_loans_list200_response.py +102 -0
- pluggy_sdk/models/percentage_over_index.py +90 -0
- pluggy_sdk/models/phone_number.py +100 -0
- pluggy_sdk/models/pix_data.py +90 -0
- pluggy_sdk/models/schedule_payment.py +102 -0
- pluggy_sdk/models/schedule_type_custom.py +100 -0
- pluggy_sdk/models/schedule_type_daily.py +101 -0
- pluggy_sdk/models/schedule_type_monthly.py +103 -0
- pluggy_sdk/models/schedule_type_single.py +98 -0
- pluggy_sdk/models/schedule_type_weekly.py +110 -0
- pluggy_sdk/models/single.py +98 -0
- pluggy_sdk/models/smart_account.py +107 -0
- pluggy_sdk/models/smart_account_address.py +112 -0
- pluggy_sdk/models/smart_account_balance.py +95 -0
- pluggy_sdk/models/smart_account_transfer.py +123 -0
- pluggy_sdk/models/smart_accounts_list200_response.py +102 -0
- pluggy_sdk/models/smart_tranfers_preauthorizations_list200_response.py +102 -0
- pluggy_sdk/models/smart_transfer_callback_urls.py +90 -0
- pluggy_sdk/models/smart_transfer_payment.py +116 -0
- pluggy_sdk/models/smart_transfer_preauthorization.py +128 -0
- pluggy_sdk/models/smart_transfer_preauthorization_parameter.py +90 -0
- pluggy_sdk/models/status_detail.py +127 -0
- pluggy_sdk/models/status_detail_product.py +101 -0
- pluggy_sdk/models/status_detail_product_warning.py +92 -0
- pluggy_sdk/models/transaction.py +141 -0
- pluggy_sdk/models/update_item.py +109 -0
- pluggy_sdk/models/update_item_parameters.py +144 -0
- pluggy_sdk/models/update_payment_recipient.py +102 -0
- pluggy_sdk/models/update_payment_request.py +102 -0
- pluggy_sdk/models/update_transaction.py +88 -0
- pluggy_sdk/models/webhook.py +106 -0
- pluggy_sdk/models/webhook_creation_error_response.py +90 -0
- pluggy_sdk/models/webhooks_list200_response.py +102 -0
- pluggy_sdk/models/weekly.py +110 -0
- pluggy_sdk/py.typed +0 -0
- pluggy_sdk/rest.py +258 -0
- pluggy_sdk-1.0.0.post34.dist-info/METADATA +373 -0
- pluggy_sdk-1.0.0.post34.dist-info/RECORD +221 -0
- pluggy_sdk-1.0.0.post34.dist-info/WHEEL +5 -0
- pluggy_sdk-1.0.0.post34.dist-info/top_level.txt +1 -0
pluggy_sdk/__init__.py
ADDED
@@ -0,0 +1,200 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
# flake8: noqa
|
4
|
+
|
5
|
+
"""
|
6
|
+
Pluggy API
|
7
|
+
|
8
|
+
Pluggy's main API to review data and execute connectors
|
9
|
+
|
10
|
+
The version of the OpenAPI document: 1.0.0
|
11
|
+
Contact: hello@pluggy.ai
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
13
|
+
|
14
|
+
Do not edit the class manually.
|
15
|
+
""" # noqa: E501
|
16
|
+
|
17
|
+
|
18
|
+
__version__ = "1.0.0.post34"
|
19
|
+
|
20
|
+
# import apis into sdk package
|
21
|
+
from pluggy_sdk.api.account_api import AccountApi
|
22
|
+
from pluggy_sdk.api.auth_api import AuthApi
|
23
|
+
from pluggy_sdk.api.benefit_api import BenefitApi
|
24
|
+
from pluggy_sdk.api.bill_api import BillApi
|
25
|
+
from pluggy_sdk.api.bulk_payment_api import BulkPaymentApi
|
26
|
+
from pluggy_sdk.api.category_api import CategoryApi
|
27
|
+
from pluggy_sdk.api.connector_api import ConnectorApi
|
28
|
+
from pluggy_sdk.api.consent_api import ConsentApi
|
29
|
+
from pluggy_sdk.api.identity_api import IdentityApi
|
30
|
+
from pluggy_sdk.api.investment_api import InvestmentApi
|
31
|
+
from pluggy_sdk.api.items_api import ItemsApi
|
32
|
+
from pluggy_sdk.api.loan_api import LoanApi
|
33
|
+
from pluggy_sdk.api.payment_customer_api import PaymentCustomerApi
|
34
|
+
from pluggy_sdk.api.payment_intent_api import PaymentIntentApi
|
35
|
+
from pluggy_sdk.api.payment_recipient_api import PaymentRecipientApi
|
36
|
+
from pluggy_sdk.api.payment_request_api import PaymentRequestApi
|
37
|
+
from pluggy_sdk.api.payment_schedule_api import PaymentScheduleApi
|
38
|
+
from pluggy_sdk.api.smart_account_api import SmartAccountApi
|
39
|
+
from pluggy_sdk.api.smart_transfer_api import SmartTransferApi
|
40
|
+
from pluggy_sdk.api.transaction_api import TransactionApi
|
41
|
+
from pluggy_sdk.api.webhook_api import WebhookApi
|
42
|
+
|
43
|
+
# import ApiClient
|
44
|
+
from pluggy_sdk.api_response import ApiResponse
|
45
|
+
from pluggy_sdk.api_client import ApiClient
|
46
|
+
from pluggy_sdk.configuration import Configuration
|
47
|
+
from pluggy_sdk.exceptions import OpenApiException
|
48
|
+
from pluggy_sdk.exceptions import ApiTypeError
|
49
|
+
from pluggy_sdk.exceptions import ApiValueError
|
50
|
+
from pluggy_sdk.exceptions import ApiKeyError
|
51
|
+
from pluggy_sdk.exceptions import ApiAttributeError
|
52
|
+
from pluggy_sdk.exceptions import ApiException
|
53
|
+
|
54
|
+
# import models into sdk package
|
55
|
+
from pluggy_sdk.models.account import Account
|
56
|
+
from pluggy_sdk.models.accounts_list200_response import AccountsList200Response
|
57
|
+
from pluggy_sdk.models.address import Address
|
58
|
+
from pluggy_sdk.models.auth_request import AuthRequest
|
59
|
+
from pluggy_sdk.models.auth_response import AuthResponse
|
60
|
+
from pluggy_sdk.models.bank_data import BankData
|
61
|
+
from pluggy_sdk.models.benefit_loan import BenefitLoan
|
62
|
+
from pluggy_sdk.models.benefit_loan_client import BenefitLoanClient
|
63
|
+
from pluggy_sdk.models.benefit_response import BenefitResponse
|
64
|
+
from pluggy_sdk.models.benefit_response_paying_institution import BenefitResponsePayingInstitution
|
65
|
+
from pluggy_sdk.models.benefits_list200_response import BenefitsList200Response
|
66
|
+
from pluggy_sdk.models.bill import Bill
|
67
|
+
from pluggy_sdk.models.bill_finance_charge import BillFinanceCharge
|
68
|
+
from pluggy_sdk.models.bills_list200_response import BillsList200Response
|
69
|
+
from pluggy_sdk.models.boleto import Boleto
|
70
|
+
from pluggy_sdk.models.boleto_payer import BoletoPayer
|
71
|
+
from pluggy_sdk.models.boleto_recipient import BoletoRecipient
|
72
|
+
from pluggy_sdk.models.bulk_payment import BulkPayment
|
73
|
+
from pluggy_sdk.models.bulk_payments_list200_response import BulkPaymentsList200Response
|
74
|
+
from pluggy_sdk.models.custom import CUSTOM
|
75
|
+
from pluggy_sdk.models.category import Category
|
76
|
+
from pluggy_sdk.models.client_category_rule import ClientCategoryRule
|
77
|
+
from pluggy_sdk.models.company import Company
|
78
|
+
from pluggy_sdk.models.connect_token_request import ConnectTokenRequest
|
79
|
+
from pluggy_sdk.models.connect_token_response import ConnectTokenResponse
|
80
|
+
from pluggy_sdk.models.connector import Connector
|
81
|
+
from pluggy_sdk.models.connector_credential import ConnectorCredential
|
82
|
+
from pluggy_sdk.models.connector_health import ConnectorHealth
|
83
|
+
from pluggy_sdk.models.connector_health_details import ConnectorHealthDetails
|
84
|
+
from pluggy_sdk.models.connector_list_response import ConnectorListResponse
|
85
|
+
from pluggy_sdk.models.connector_user_action import ConnectorUserAction
|
86
|
+
from pluggy_sdk.models.consent import Consent
|
87
|
+
from pluggy_sdk.models.create_boleto_payment_request import CreateBoletoPaymentRequest
|
88
|
+
from pluggy_sdk.models.create_bulk_payment import CreateBulkPayment
|
89
|
+
from pluggy_sdk.models.create_client_category_rule import CreateClientCategoryRule
|
90
|
+
from pluggy_sdk.models.create_item import CreateItem
|
91
|
+
from pluggy_sdk.models.create_item_parameters import CreateItemParameters
|
92
|
+
from pluggy_sdk.models.create_or_update_payment_customer import CreateOrUpdatePaymentCustomer
|
93
|
+
from pluggy_sdk.models.create_payment_customer_request_body import CreatePaymentCustomerRequestBody
|
94
|
+
from pluggy_sdk.models.create_payment_intent import CreatePaymentIntent
|
95
|
+
from pluggy_sdk.models.create_payment_recipient import CreatePaymentRecipient
|
96
|
+
from pluggy_sdk.models.create_payment_request import CreatePaymentRequest
|
97
|
+
from pluggy_sdk.models.create_payment_request_schedule import CreatePaymentRequestSchedule
|
98
|
+
from pluggy_sdk.models.create_pix_qr_payment_request import CreatePixQrPaymentRequest
|
99
|
+
from pluggy_sdk.models.create_smart_account_request import CreateSmartAccountRequest
|
100
|
+
from pluggy_sdk.models.create_smart_account_transfer_request import CreateSmartAccountTransferRequest
|
101
|
+
from pluggy_sdk.models.create_smart_transfer_payment import CreateSmartTransferPayment
|
102
|
+
from pluggy_sdk.models.create_smart_transfer_preauthorization import CreateSmartTransferPreauthorization
|
103
|
+
from pluggy_sdk.models.create_webhook import CreateWebhook
|
104
|
+
from pluggy_sdk.models.credential_select_option import CredentialSelectOption
|
105
|
+
from pluggy_sdk.models.credit_card_metadata import CreditCardMetadata
|
106
|
+
from pluggy_sdk.models.credit_data import CreditData
|
107
|
+
from pluggy_sdk.models.daily import DAILY
|
108
|
+
from pluggy_sdk.models.document import Document
|
109
|
+
from pluggy_sdk.models.email import Email
|
110
|
+
from pluggy_sdk.models.global_error_response import GlobalErrorResponse
|
111
|
+
from pluggy_sdk.models.i_count_response import ICountResponse
|
112
|
+
from pluggy_sdk.models.identity_relation import IdentityRelation
|
113
|
+
from pluggy_sdk.models.identity_response import IdentityResponse
|
114
|
+
from pluggy_sdk.models.identity_response_financial_relationships import IdentityResponseFinancialRelationships
|
115
|
+
from pluggy_sdk.models.identity_response_financial_relationships_accounts_inner import IdentityResponseFinancialRelationshipsAccountsInner
|
116
|
+
from pluggy_sdk.models.identity_response_financial_relationships_procurators_inner import IdentityResponseFinancialRelationshipsProcuratorsInner
|
117
|
+
from pluggy_sdk.models.identity_response_qualifications import IdentityResponseQualifications
|
118
|
+
from pluggy_sdk.models.identity_response_qualifications_informed_income import IdentityResponseQualificationsInformedIncome
|
119
|
+
from pluggy_sdk.models.identity_response_qualifications_informed_patrimony import IdentityResponseQualificationsInformedPatrimony
|
120
|
+
from pluggy_sdk.models.investment import Investment
|
121
|
+
from pluggy_sdk.models.investment_expenses import InvestmentExpenses
|
122
|
+
from pluggy_sdk.models.investment_metadata import InvestmentMetadata
|
123
|
+
from pluggy_sdk.models.investment_transaction import InvestmentTransaction
|
124
|
+
from pluggy_sdk.models.investments_list200_response import InvestmentsList200Response
|
125
|
+
from pluggy_sdk.models.item import Item
|
126
|
+
from pluggy_sdk.models.item_creation_error_response import ItemCreationErrorResponse
|
127
|
+
from pluggy_sdk.models.item_error import ItemError
|
128
|
+
from pluggy_sdk.models.item_options import ItemOptions
|
129
|
+
from pluggy_sdk.models.loan import Loan
|
130
|
+
from pluggy_sdk.models.loan_contracted_fee import LoanContractedFee
|
131
|
+
from pluggy_sdk.models.loan_contracted_finance_charge import LoanContractedFinanceCharge
|
132
|
+
from pluggy_sdk.models.loan_installment_balloon_payment import LoanInstallmentBalloonPayment
|
133
|
+
from pluggy_sdk.models.loan_installment_balloon_payment_amount import LoanInstallmentBalloonPaymentAmount
|
134
|
+
from pluggy_sdk.models.loan_installments import LoanInstallments
|
135
|
+
from pluggy_sdk.models.loan_interest_rate import LoanInterestRate
|
136
|
+
from pluggy_sdk.models.loan_payment_release import LoanPaymentRelease
|
137
|
+
from pluggy_sdk.models.loan_payment_release_over_parcel import LoanPaymentReleaseOverParcel
|
138
|
+
from pluggy_sdk.models.loan_payment_release_over_parcel_charge import LoanPaymentReleaseOverParcelCharge
|
139
|
+
from pluggy_sdk.models.loan_payment_release_over_parcel_fee import LoanPaymentReleaseOverParcelFee
|
140
|
+
from pluggy_sdk.models.loan_payments import LoanPayments
|
141
|
+
from pluggy_sdk.models.loan_warranty import LoanWarranty
|
142
|
+
from pluggy_sdk.models.loans_list200_response import LoansList200Response
|
143
|
+
from pluggy_sdk.models.monthly import MONTHLY
|
144
|
+
from pluggy_sdk.models.merchant import Merchant
|
145
|
+
from pluggy_sdk.models.not_authenticated_response import NotAuthenticatedResponse
|
146
|
+
from pluggy_sdk.models.page_response_category_rules import PageResponseCategoryRules
|
147
|
+
from pluggy_sdk.models.page_response_consents import PageResponseConsents
|
148
|
+
from pluggy_sdk.models.page_response_investment_transactions import PageResponseInvestmentTransactions
|
149
|
+
from pluggy_sdk.models.page_response_transactions import PageResponseTransactions
|
150
|
+
from pluggy_sdk.models.parameter_validation_error import ParameterValidationError
|
151
|
+
from pluggy_sdk.models.parameter_validation_response import ParameterValidationResponse
|
152
|
+
from pluggy_sdk.models.payment_customer import PaymentCustomer
|
153
|
+
from pluggy_sdk.models.payment_customers_list200_response import PaymentCustomersList200Response
|
154
|
+
from pluggy_sdk.models.payment_data import PaymentData
|
155
|
+
from pluggy_sdk.models.payment_data_boleto_metadata import PaymentDataBoletoMetadata
|
156
|
+
from pluggy_sdk.models.payment_data_participant import PaymentDataParticipant
|
157
|
+
from pluggy_sdk.models.payment_institution import PaymentInstitution
|
158
|
+
from pluggy_sdk.models.payment_intent import PaymentIntent
|
159
|
+
from pluggy_sdk.models.payment_intent_parameter import PaymentIntentParameter
|
160
|
+
from pluggy_sdk.models.payment_intents_list200_response import PaymentIntentsList200Response
|
161
|
+
from pluggy_sdk.models.payment_receipt import PaymentReceipt
|
162
|
+
from pluggy_sdk.models.payment_receipt_bank_account import PaymentReceiptBankAccount
|
163
|
+
from pluggy_sdk.models.payment_receipt_person import PaymentReceiptPerson
|
164
|
+
from pluggy_sdk.models.payment_recipient import PaymentRecipient
|
165
|
+
from pluggy_sdk.models.payment_recipient_account import PaymentRecipientAccount
|
166
|
+
from pluggy_sdk.models.payment_recipients_institution_list200_response import PaymentRecipientsInstitutionList200Response
|
167
|
+
from pluggy_sdk.models.payment_recipients_list200_response import PaymentRecipientsList200Response
|
168
|
+
from pluggy_sdk.models.payment_request import PaymentRequest
|
169
|
+
from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
|
170
|
+
from pluggy_sdk.models.payment_request_receipt_list200_response import PaymentRequestReceiptList200Response
|
171
|
+
from pluggy_sdk.models.payment_request_schedule import PaymentRequestSchedule
|
172
|
+
from pluggy_sdk.models.payment_requests_list200_response import PaymentRequestsList200Response
|
173
|
+
from pluggy_sdk.models.payment_schedules_list200_response import PaymentSchedulesList200Response
|
174
|
+
from pluggy_sdk.models.phone_number import PhoneNumber
|
175
|
+
from pluggy_sdk.models.pix_data import PixData
|
176
|
+
from pluggy_sdk.models.single import SINGLE
|
177
|
+
from pluggy_sdk.models.schedule_payment import SchedulePayment
|
178
|
+
from pluggy_sdk.models.smart_account import SmartAccount
|
179
|
+
from pluggy_sdk.models.smart_account_address import SmartAccountAddress
|
180
|
+
from pluggy_sdk.models.smart_account_balance import SmartAccountBalance
|
181
|
+
from pluggy_sdk.models.smart_account_transfer import SmartAccountTransfer
|
182
|
+
from pluggy_sdk.models.smart_accounts_list200_response import SmartAccountsList200Response
|
183
|
+
from pluggy_sdk.models.smart_tranfers_preauthorizations_list200_response import SmartTranfersPreauthorizationsList200Response
|
184
|
+
from pluggy_sdk.models.smart_transfer_callback_urls import SmartTransferCallbackUrls
|
185
|
+
from pluggy_sdk.models.smart_transfer_payment import SmartTransferPayment
|
186
|
+
from pluggy_sdk.models.smart_transfer_preauthorization import SmartTransferPreauthorization
|
187
|
+
from pluggy_sdk.models.smart_transfer_preauthorization_parameter import SmartTransferPreauthorizationParameter
|
188
|
+
from pluggy_sdk.models.status_detail import StatusDetail
|
189
|
+
from pluggy_sdk.models.status_detail_product import StatusDetailProduct
|
190
|
+
from pluggy_sdk.models.status_detail_product_warning import StatusDetailProductWarning
|
191
|
+
from pluggy_sdk.models.transaction import Transaction
|
192
|
+
from pluggy_sdk.models.update_item import UpdateItem
|
193
|
+
from pluggy_sdk.models.update_item_parameters import UpdateItemParameters
|
194
|
+
from pluggy_sdk.models.update_payment_recipient import UpdatePaymentRecipient
|
195
|
+
from pluggy_sdk.models.update_payment_request import UpdatePaymentRequest
|
196
|
+
from pluggy_sdk.models.update_transaction import UpdateTransaction
|
197
|
+
from pluggy_sdk.models.weekly import WEEKLY
|
198
|
+
from pluggy_sdk.models.webhook import Webhook
|
199
|
+
from pluggy_sdk.models.webhook_creation_error_response import WebhookCreationErrorResponse
|
200
|
+
from pluggy_sdk.models.webhooks_list200_response import WebhooksList200Response
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# flake8: noqa
|
2
|
+
|
3
|
+
# import apis into api package
|
4
|
+
from pluggy_sdk.api.account_api import AccountApi
|
5
|
+
from pluggy_sdk.api.auth_api import AuthApi
|
6
|
+
from pluggy_sdk.api.benefit_api import BenefitApi
|
7
|
+
from pluggy_sdk.api.bill_api import BillApi
|
8
|
+
from pluggy_sdk.api.bulk_payment_api import BulkPaymentApi
|
9
|
+
from pluggy_sdk.api.category_api import CategoryApi
|
10
|
+
from pluggy_sdk.api.connector_api import ConnectorApi
|
11
|
+
from pluggy_sdk.api.consent_api import ConsentApi
|
12
|
+
from pluggy_sdk.api.identity_api import IdentityApi
|
13
|
+
from pluggy_sdk.api.investment_api import InvestmentApi
|
14
|
+
from pluggy_sdk.api.items_api import ItemsApi
|
15
|
+
from pluggy_sdk.api.loan_api import LoanApi
|
16
|
+
from pluggy_sdk.api.payment_customer_api import PaymentCustomerApi
|
17
|
+
from pluggy_sdk.api.payment_intent_api import PaymentIntentApi
|
18
|
+
from pluggy_sdk.api.payment_recipient_api import PaymentRecipientApi
|
19
|
+
from pluggy_sdk.api.payment_request_api import PaymentRequestApi
|
20
|
+
from pluggy_sdk.api.payment_schedule_api import PaymentScheduleApi
|
21
|
+
from pluggy_sdk.api.smart_account_api import SmartAccountApi
|
22
|
+
from pluggy_sdk.api.smart_transfer_api import SmartTransferApi
|
23
|
+
from pluggy_sdk.api.transaction_api import TransactionApi
|
24
|
+
from pluggy_sdk.api.webhook_api import WebhookApi
|
25
|
+
|