├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── labeler.yml ├── release.yml └── workflows │ ├── label_new_issues.yml │ ├── labeler_workflow.yml │ ├── pypipublish.yml │ ├── python-ci.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── Adyen ├── __init__.py ├── client.py ├── exceptions.py ├── httpclient.py ├── services │ ├── __init__.py │ ├── balanceControl │ │ ├── __init__.py │ │ └── balance_control_api.py │ ├── balancePlatform │ │ ├── __init__.py │ │ ├── account_holders_api.py │ │ ├── authorized_card_users_api.py │ │ ├── balance_accounts_api.py │ │ ├── balances_api.py │ │ ├── bank_account_validation_api.py │ │ ├── card_orders_api.py │ │ ├── grant_accounts_api.py │ │ ├── grant_offers_api.py │ │ ├── manage_card_pin_api.py │ │ ├── manage_sca_devices_api.py │ │ ├── network_tokens_api.py │ │ ├── payment_instrument_groups_api.py │ │ ├── payment_instruments_api.py │ │ ├── platform_api.py │ │ ├── transaction_rules_api.py │ │ ├── transfer_limits_balance_account_level_api.py │ │ ├── transfer_limits_balance_platform_level_api.py │ │ └── transfer_routes_api.py │ ├── base.py │ ├── binlookup │ │ ├── __init__.py │ │ └── bin_lookup_api.py │ ├── checkout │ │ ├── __init__.py │ │ ├── donations_api.py │ │ ├── modifications_api.py │ │ ├── orders_api.py │ │ ├── payment_links_api.py │ │ ├── payments_api.py │ │ ├── recurring_api.py │ │ └── utility_api.py │ ├── dataProtection │ │ ├── __init__.py │ │ └── data_protection_api.py │ ├── disputes │ │ ├── __init__.py │ │ └── disputes_api.py │ ├── legalEntityManagement │ │ ├── __init__.py │ │ ├── business_lines_api.py │ │ ├── documents_api.py │ │ ├── hosted_onboarding_api.py │ │ ├── legal_entities_api.py │ │ ├── pci_questionnaires_api.py │ │ ├── tax_e_delivery_consent_api.py │ │ ├── terms_of_service_api.py │ │ └── transfer_instruments_api.py │ ├── management │ │ ├── __init__.py │ │ ├── account_company_level_api.py │ │ ├── account_merchant_level_api.py │ │ ├── account_store_level_api.py │ │ ├── allowed_origins_company_level_api.py │ │ ├── allowed_origins_merchant_level_api.py │ │ ├── android_files_company_level_api.py │ │ ├── api_credentials_company_level_api.py │ │ ├── api_credentials_merchant_level_api.py │ │ ├── api_key_company_level_api.py │ │ ├── api_key_merchant_level_api.py │ │ ├── client_key_company_level_api.py │ │ ├── client_key_merchant_level_api.py │ │ ├── my_api_credential_api.py │ │ ├── payment_methods_merchant_level_api.py │ │ ├── payout_settings_merchant_level_api.py │ │ ├── split_configuration_merchant_level_api.py │ │ ├── terminal_actions_company_level_api.py │ │ ├── terminal_actions_terminal_level_api.py │ │ ├── terminal_orders_company_level_api.py │ │ ├── terminal_orders_merchant_level_api.py │ │ ├── terminal_settings_company_level_api.py │ │ ├── terminal_settings_merchant_level_api.py │ │ ├── terminal_settings_store_level_api.py │ │ ├── terminal_settings_terminal_level_api.py │ │ ├── terminals_terminal_level_api.py │ │ ├── users_company_level_api.py │ │ ├── users_merchant_level_api.py │ │ ├── webhooks_company_level_api.py │ │ └── webhooks_merchant_level_api.py │ ├── payments │ │ ├── __init__.py │ │ ├── modifications_api.py │ │ └── payments_api.py │ ├── paymentsApp │ │ ├── __init__.py │ │ └── payments_app_api.py │ ├── payouts │ │ ├── __init__.py │ │ ├── initialization_api.py │ │ ├── instant_payouts_api.py │ │ └── reviewing_api.py │ ├── posMobile │ │ ├── __init__.py │ │ └── pos_mobile_api.py │ ├── recurring │ │ ├── __init__.py │ │ └── recurring_api.py │ ├── sessionAuthentication │ │ ├── __init__.py │ │ └── session_authentication_api.py │ ├── storedValue │ │ ├── __init__.py │ │ └── stored_value_api.py │ ├── terminal.py │ └── transfers │ │ ├── __init__.py │ │ ├── capital_api.py │ │ ├── transactions_api.py │ │ └── transfers_api.py ├── settings.py └── util.py ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── VERSION ├── Vagrantfile ├── renovate.json ├── setup.cfg ├── setup.py ├── templates ├── api-single.mustache ├── api-small.mustache ├── api-test-single.mustache ├── api-test.mustache ├── api.mustache └── config.yaml ├── test ├── BalancePlatformTest.py ├── BaseTest.py ├── BinLookupTest.py ├── CheckoutTest.py ├── CheckoutUtilityTest.py ├── ClientTest.py ├── DataProtectionTest.py ├── DetermineEndpointTest.py ├── DisputesTest.py ├── LegalEntityManagementTest.py ├── ManagementTest.py ├── ModificationTest.py ├── PaymentTest.py ├── RecurringTest.py ├── SessionAuthenticationTest.py ├── StoredValueTest.py ├── TerminalTest.py ├── ThirdPartyPayoutTest.py ├── TransfersTest.py ├── UtilTest.py ├── __init__.py ├── methodNamesTests │ └── checkoutTest.py └── mocks │ ├── adjust-authorisation-received.json │ ├── authorise-error-010.json │ ├── authorise-error-cvc-declined.json │ ├── authorise-error-expired.json │ ├── authorise-success-3d.json │ ├── authorise-success-cse.json │ ├── authorise-success.json │ ├── authorise3d-success.json │ ├── binlookup │ ├── getcostestimate-error-invalid-data-422.json │ └── getcostestimate-success.json │ ├── cancel-received.json │ ├── cancelOrRefund-received.json │ ├── capture-error-167.json │ ├── capture-success.json │ ├── checkout │ ├── getpaymenlinks-succes.json │ ├── orders-cancel-success.json │ ├── orders-success.json │ ├── paymentcapture-success.json │ ├── paymentlinks-success.json │ ├── paymentmethods-balance-success.json │ ├── paymentmethods-error-forbidden-403.json │ ├── paymentmethods-success.json │ ├── payments-error-invalid-data-422.json │ ├── payments-success.json │ ├── paymentscancel-withoutreference-succes.json │ ├── paymentscancels-success.json │ ├── paymentsdetails-error-invalid-data-422.json │ ├── paymentsdetails-success.json │ ├── paymentsession-error-invalid-data-422.json │ ├── paymentsession-success.json │ ├── paymentsresult-error-invalid-data-payload-422.json │ ├── paymentsresult-success.json │ ├── paymentsreversals-success.json │ ├── sessions-error-invalid-data-422.json │ ├── sessions-success.json │ └── updatepaymentlinks-success.json │ ├── checkoututility │ ├── applepay-sessions-success.json │ └── originkeys-success.json │ ├── configuration │ ├── account-holder-created.json │ ├── balance-account-created.json │ ├── balance-platform-retrieved.json │ ├── business-account-created.json │ ├── payment-instrument-group-created.json │ ├── transaction-rule-retrieved.json │ ├── transfer-limit-created.json │ └── webhook-setting-created.json │ ├── dataProtection │ └── erasure-response.json │ ├── disputes │ ├── post-acceptDispute-accept-dispute-200.json │ ├── post-defendDispute-defend-dispute-200.json │ ├── post-deleteDisputeDefenseDocument-delete-dispute-defense-document-200.json │ ├── post-downloadDisputeDefenseDocument-download-dispute-defense-document-200.json │ ├── post-retrieveApplicableDefenseReasons-retrieve-defense-reasons-200.json │ └── post-supplyDefenseDocument-supply-defense-document-200.json │ ├── legalEntityManagement │ ├── business_line_updated.json │ ├── details_of_trainsfer_instrument.json │ └── individual_legal_entity_created.json │ ├── management │ ├── create_a_user.json │ ├── get_company_account.json │ ├── get_list_of_android_apps.json │ ├── get_list_of_merchant_accounts.json │ ├── no_content.json │ ├── post_me_allowed_origins.json │ └── update_a_store.json │ ├── payout │ ├── confirm-missing-reference.json │ ├── confirm-success.json │ ├── decline-missing-reference.json │ ├── decline-success.json │ ├── storeDetail-success.json │ ├── storeDetailAndSubmit-bank-success.json │ ├── storeDetailAndSubmit-card-success.json │ ├── storeDetailAndSubmit-invalid-iban.json │ ├── storeDetailAndSubmit-missing-payment.json │ ├── submit-invalid-reference.json │ ├── submit-missing-reference.json │ └── submit-success.json │ ├── recurring │ ├── disable-error-803.json │ ├── disable-success.json │ └── listRecurringDetails-success.json │ ├── refund-received.json │ ├── sessionAuthentication │ └── authentication-session-created.json │ ├── storedValue │ ├── activate-giftcards.json │ ├── check-balance.json │ ├── issue-giftcard.json │ ├── load-funds.json │ ├── merge-balance.json │ └── undo-transaction.json │ ├── terminal │ ├── assignTerminals-422.json │ ├── assignTerminals.json │ ├── findTerminal-422.json │ ├── findTerminal.json │ ├── getStoresUnderAccount.json │ ├── getTerminalDetails-422.json │ ├── getTerminalDetails.json │ ├── getTerminalsUnderAccount-store.json │ └── getTerminalsUnderAccount.json │ ├── transfers │ ├── get-all-transactions.json │ ├── get-transaction.json │ └── make-transfer-response.json │ └── util │ ├── backslash_notification.json │ ├── colon_notification.json │ ├── forwardslash_notification.json │ └── mixed_notification.json └── tox.ini /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/label_new_issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/.github/workflows/label_new_issues.yml -------------------------------------------------------------------------------- /.github/workflows/labeler_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/.github/workflows/labeler_workflow.yml -------------------------------------------------------------------------------- /.github/workflows/pypipublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/.github/workflows/pypipublish.yml -------------------------------------------------------------------------------- /.github/workflows/python-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/.github/workflows/python-ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/.gitignore -------------------------------------------------------------------------------- /Adyen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/__init__.py -------------------------------------------------------------------------------- /Adyen/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/client.py -------------------------------------------------------------------------------- /Adyen/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/exceptions.py -------------------------------------------------------------------------------- /Adyen/httpclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/httpclient.py -------------------------------------------------------------------------------- /Adyen/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/__init__.py -------------------------------------------------------------------------------- /Adyen/services/balanceControl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balanceControl/__init__.py -------------------------------------------------------------------------------- /Adyen/services/balanceControl/balance_control_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balanceControl/balance_control_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/__init__.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/account_holders_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/account_holders_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/authorized_card_users_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/authorized_card_users_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/balance_accounts_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/balance_accounts_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/balances_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/balances_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/bank_account_validation_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/bank_account_validation_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/card_orders_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/card_orders_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/grant_accounts_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/grant_accounts_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/grant_offers_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/grant_offers_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/manage_card_pin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/manage_card_pin_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/manage_sca_devices_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/manage_sca_devices_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/network_tokens_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/network_tokens_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/payment_instrument_groups_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/payment_instrument_groups_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/payment_instruments_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/payment_instruments_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/platform_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/platform_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/transaction_rules_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/transaction_rules_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/transfer_limits_balance_account_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/transfer_limits_balance_account_level_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/transfer_limits_balance_platform_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/transfer_limits_balance_platform_level_api.py -------------------------------------------------------------------------------- /Adyen/services/balancePlatform/transfer_routes_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/balancePlatform/transfer_routes_api.py -------------------------------------------------------------------------------- /Adyen/services/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/base.py -------------------------------------------------------------------------------- /Adyen/services/binlookup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/binlookup/__init__.py -------------------------------------------------------------------------------- /Adyen/services/binlookup/bin_lookup_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/binlookup/bin_lookup_api.py -------------------------------------------------------------------------------- /Adyen/services/checkout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/checkout/__init__.py -------------------------------------------------------------------------------- /Adyen/services/checkout/donations_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/checkout/donations_api.py -------------------------------------------------------------------------------- /Adyen/services/checkout/modifications_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/checkout/modifications_api.py -------------------------------------------------------------------------------- /Adyen/services/checkout/orders_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/checkout/orders_api.py -------------------------------------------------------------------------------- /Adyen/services/checkout/payment_links_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/checkout/payment_links_api.py -------------------------------------------------------------------------------- /Adyen/services/checkout/payments_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/checkout/payments_api.py -------------------------------------------------------------------------------- /Adyen/services/checkout/recurring_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/checkout/recurring_api.py -------------------------------------------------------------------------------- /Adyen/services/checkout/utility_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/checkout/utility_api.py -------------------------------------------------------------------------------- /Adyen/services/dataProtection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/dataProtection/__init__.py -------------------------------------------------------------------------------- /Adyen/services/dataProtection/data_protection_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/dataProtection/data_protection_api.py -------------------------------------------------------------------------------- /Adyen/services/disputes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/disputes/__init__.py -------------------------------------------------------------------------------- /Adyen/services/disputes/disputes_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/disputes/disputes_api.py -------------------------------------------------------------------------------- /Adyen/services/legalEntityManagement/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/legalEntityManagement/__init__.py -------------------------------------------------------------------------------- /Adyen/services/legalEntityManagement/business_lines_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/legalEntityManagement/business_lines_api.py -------------------------------------------------------------------------------- /Adyen/services/legalEntityManagement/documents_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/legalEntityManagement/documents_api.py -------------------------------------------------------------------------------- /Adyen/services/legalEntityManagement/hosted_onboarding_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/legalEntityManagement/hosted_onboarding_api.py -------------------------------------------------------------------------------- /Adyen/services/legalEntityManagement/legal_entities_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/legalEntityManagement/legal_entities_api.py -------------------------------------------------------------------------------- /Adyen/services/legalEntityManagement/pci_questionnaires_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/legalEntityManagement/pci_questionnaires_api.py -------------------------------------------------------------------------------- /Adyen/services/legalEntityManagement/tax_e_delivery_consent_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/legalEntityManagement/tax_e_delivery_consent_api.py -------------------------------------------------------------------------------- /Adyen/services/legalEntityManagement/terms_of_service_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/legalEntityManagement/terms_of_service_api.py -------------------------------------------------------------------------------- /Adyen/services/legalEntityManagement/transfer_instruments_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/legalEntityManagement/transfer_instruments_api.py -------------------------------------------------------------------------------- /Adyen/services/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/__init__.py -------------------------------------------------------------------------------- /Adyen/services/management/account_company_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/account_company_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/account_merchant_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/account_merchant_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/account_store_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/account_store_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/allowed_origins_company_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/allowed_origins_company_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/allowed_origins_merchant_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/allowed_origins_merchant_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/android_files_company_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/android_files_company_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/api_credentials_company_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/api_credentials_company_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/api_credentials_merchant_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/api_credentials_merchant_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/api_key_company_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/api_key_company_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/api_key_merchant_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/api_key_merchant_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/client_key_company_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/client_key_company_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/client_key_merchant_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/client_key_merchant_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/my_api_credential_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/my_api_credential_api.py -------------------------------------------------------------------------------- /Adyen/services/management/payment_methods_merchant_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/payment_methods_merchant_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/payout_settings_merchant_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/payout_settings_merchant_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/split_configuration_merchant_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/split_configuration_merchant_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/terminal_actions_company_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/terminal_actions_company_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/terminal_actions_terminal_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/terminal_actions_terminal_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/terminal_orders_company_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/terminal_orders_company_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/terminal_orders_merchant_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/terminal_orders_merchant_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/terminal_settings_company_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/terminal_settings_company_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/terminal_settings_merchant_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/terminal_settings_merchant_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/terminal_settings_store_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/terminal_settings_store_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/terminal_settings_terminal_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/terminal_settings_terminal_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/terminals_terminal_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/terminals_terminal_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/users_company_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/users_company_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/users_merchant_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/users_merchant_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/webhooks_company_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/webhooks_company_level_api.py -------------------------------------------------------------------------------- /Adyen/services/management/webhooks_merchant_level_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/management/webhooks_merchant_level_api.py -------------------------------------------------------------------------------- /Adyen/services/payments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/payments/__init__.py -------------------------------------------------------------------------------- /Adyen/services/payments/modifications_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/payments/modifications_api.py -------------------------------------------------------------------------------- /Adyen/services/payments/payments_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/payments/payments_api.py -------------------------------------------------------------------------------- /Adyen/services/paymentsApp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/paymentsApp/__init__.py -------------------------------------------------------------------------------- /Adyen/services/paymentsApp/payments_app_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/paymentsApp/payments_app_api.py -------------------------------------------------------------------------------- /Adyen/services/payouts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/payouts/__init__.py -------------------------------------------------------------------------------- /Adyen/services/payouts/initialization_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/payouts/initialization_api.py -------------------------------------------------------------------------------- /Adyen/services/payouts/instant_payouts_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/payouts/instant_payouts_api.py -------------------------------------------------------------------------------- /Adyen/services/payouts/reviewing_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/payouts/reviewing_api.py -------------------------------------------------------------------------------- /Adyen/services/posMobile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/posMobile/__init__.py -------------------------------------------------------------------------------- /Adyen/services/posMobile/pos_mobile_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/posMobile/pos_mobile_api.py -------------------------------------------------------------------------------- /Adyen/services/recurring/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/recurring/__init__.py -------------------------------------------------------------------------------- /Adyen/services/recurring/recurring_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/recurring/recurring_api.py -------------------------------------------------------------------------------- /Adyen/services/sessionAuthentication/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/sessionAuthentication/__init__.py -------------------------------------------------------------------------------- /Adyen/services/sessionAuthentication/session_authentication_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/sessionAuthentication/session_authentication_api.py -------------------------------------------------------------------------------- /Adyen/services/storedValue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/storedValue/__init__.py -------------------------------------------------------------------------------- /Adyen/services/storedValue/stored_value_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/storedValue/stored_value_api.py -------------------------------------------------------------------------------- /Adyen/services/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/terminal.py -------------------------------------------------------------------------------- /Adyen/services/transfers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/transfers/__init__.py -------------------------------------------------------------------------------- /Adyen/services/transfers/capital_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/transfers/capital_api.py -------------------------------------------------------------------------------- /Adyen/services/transfers/transactions_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/transfers/transactions_api.py -------------------------------------------------------------------------------- /Adyen/services/transfers/transfers_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/services/transfers/transfers_api.py -------------------------------------------------------------------------------- /Adyen/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/settings.py -------------------------------------------------------------------------------- /Adyen/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Adyen/util.py -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 14.0.0 2 | -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/Vagrantfile -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/renovate.json -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/setup.py -------------------------------------------------------------------------------- /templates/api-single.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/templates/api-single.mustache -------------------------------------------------------------------------------- /templates/api-small.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/templates/api-small.mustache -------------------------------------------------------------------------------- /templates/api-test-single.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/templates/api-test-single.mustache -------------------------------------------------------------------------------- /templates/api-test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/templates/api-test.mustache -------------------------------------------------------------------------------- /templates/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/templates/api.mustache -------------------------------------------------------------------------------- /templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/templates/config.yaml -------------------------------------------------------------------------------- /test/BalancePlatformTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/BalancePlatformTest.py -------------------------------------------------------------------------------- /test/BaseTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/BaseTest.py -------------------------------------------------------------------------------- /test/BinLookupTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/BinLookupTest.py -------------------------------------------------------------------------------- /test/CheckoutTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/CheckoutTest.py -------------------------------------------------------------------------------- /test/CheckoutUtilityTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/CheckoutUtilityTest.py -------------------------------------------------------------------------------- /test/ClientTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/ClientTest.py -------------------------------------------------------------------------------- /test/DataProtectionTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/DataProtectionTest.py -------------------------------------------------------------------------------- /test/DetermineEndpointTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/DetermineEndpointTest.py -------------------------------------------------------------------------------- /test/DisputesTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/DisputesTest.py -------------------------------------------------------------------------------- /test/LegalEntityManagementTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/LegalEntityManagementTest.py -------------------------------------------------------------------------------- /test/ManagementTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/ManagementTest.py -------------------------------------------------------------------------------- /test/ModificationTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/ModificationTest.py -------------------------------------------------------------------------------- /test/PaymentTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/PaymentTest.py -------------------------------------------------------------------------------- /test/RecurringTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/RecurringTest.py -------------------------------------------------------------------------------- /test/SessionAuthenticationTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/SessionAuthenticationTest.py -------------------------------------------------------------------------------- /test/StoredValueTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/StoredValueTest.py -------------------------------------------------------------------------------- /test/TerminalTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/TerminalTest.py -------------------------------------------------------------------------------- /test/ThirdPartyPayoutTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/ThirdPartyPayoutTest.py -------------------------------------------------------------------------------- /test/TransfersTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/TransfersTest.py -------------------------------------------------------------------------------- /test/UtilTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/UtilTest.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/methodNamesTests/checkoutTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/methodNamesTests/checkoutTest.py -------------------------------------------------------------------------------- /test/mocks/adjust-authorisation-received.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/adjust-authorisation-received.json -------------------------------------------------------------------------------- /test/mocks/authorise-error-010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/authorise-error-010.json -------------------------------------------------------------------------------- /test/mocks/authorise-error-cvc-declined.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/authorise-error-cvc-declined.json -------------------------------------------------------------------------------- /test/mocks/authorise-error-expired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/authorise-error-expired.json -------------------------------------------------------------------------------- /test/mocks/authorise-success-3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/authorise-success-3d.json -------------------------------------------------------------------------------- /test/mocks/authorise-success-cse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/authorise-success-cse.json -------------------------------------------------------------------------------- /test/mocks/authorise-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/authorise-success.json -------------------------------------------------------------------------------- /test/mocks/authorise3d-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/authorise3d-success.json -------------------------------------------------------------------------------- /test/mocks/binlookup/getcostestimate-error-invalid-data-422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/binlookup/getcostestimate-error-invalid-data-422.json -------------------------------------------------------------------------------- /test/mocks/binlookup/getcostestimate-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/binlookup/getcostestimate-success.json -------------------------------------------------------------------------------- /test/mocks/cancel-received.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/cancel-received.json -------------------------------------------------------------------------------- /test/mocks/cancelOrRefund-received.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/cancelOrRefund-received.json -------------------------------------------------------------------------------- /test/mocks/capture-error-167.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/capture-error-167.json -------------------------------------------------------------------------------- /test/mocks/capture-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/capture-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/getpaymenlinks-succes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/getpaymenlinks-succes.json -------------------------------------------------------------------------------- /test/mocks/checkout/orders-cancel-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/orders-cancel-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/orders-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/orders-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentcapture-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentcapture-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentlinks-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentlinks-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentmethods-balance-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentmethods-balance-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentmethods-error-forbidden-403.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentmethods-error-forbidden-403.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentmethods-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentmethods-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/payments-error-invalid-data-422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/payments-error-invalid-data-422.json -------------------------------------------------------------------------------- /test/mocks/checkout/payments-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/payments-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentscancel-withoutreference-succes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentscancel-withoutreference-succes.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentscancels-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentscancels-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentsdetails-error-invalid-data-422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentsdetails-error-invalid-data-422.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentsdetails-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentsdetails-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentsession-error-invalid-data-422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentsession-error-invalid-data-422.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentsession-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentsession-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentsresult-error-invalid-data-payload-422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentsresult-error-invalid-data-payload-422.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentsresult-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentsresult-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/paymentsreversals-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/paymentsreversals-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/sessions-error-invalid-data-422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/sessions-error-invalid-data-422.json -------------------------------------------------------------------------------- /test/mocks/checkout/sessions-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/sessions-success.json -------------------------------------------------------------------------------- /test/mocks/checkout/updatepaymentlinks-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkout/updatepaymentlinks-success.json -------------------------------------------------------------------------------- /test/mocks/checkoututility/applepay-sessions-success.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": "BASE_64_ENCODED_DATA" 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/checkoututility/originkeys-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/checkoututility/originkeys-success.json -------------------------------------------------------------------------------- /test/mocks/configuration/account-holder-created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/configuration/account-holder-created.json -------------------------------------------------------------------------------- /test/mocks/configuration/balance-account-created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/configuration/balance-account-created.json -------------------------------------------------------------------------------- /test/mocks/configuration/balance-platform-retrieved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/configuration/balance-platform-retrieved.json -------------------------------------------------------------------------------- /test/mocks/configuration/business-account-created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/configuration/business-account-created.json -------------------------------------------------------------------------------- /test/mocks/configuration/payment-instrument-group-created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/configuration/payment-instrument-group-created.json -------------------------------------------------------------------------------- /test/mocks/configuration/transaction-rule-retrieved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/configuration/transaction-rule-retrieved.json -------------------------------------------------------------------------------- /test/mocks/configuration/transfer-limit-created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/configuration/transfer-limit-created.json -------------------------------------------------------------------------------- /test/mocks/configuration/webhook-setting-created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/configuration/webhook-setting-created.json -------------------------------------------------------------------------------- /test/mocks/dataProtection/erasure-response.json: -------------------------------------------------------------------------------- 1 | { 2 | "result": "SUCCESS" 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/disputes/post-acceptDispute-accept-dispute-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/disputes/post-acceptDispute-accept-dispute-200.json -------------------------------------------------------------------------------- /test/mocks/disputes/post-defendDispute-defend-dispute-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/disputes/post-defendDispute-defend-dispute-200.json -------------------------------------------------------------------------------- /test/mocks/disputes/post-deleteDisputeDefenseDocument-delete-dispute-defense-document-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/disputes/post-deleteDisputeDefenseDocument-delete-dispute-defense-document-200.json -------------------------------------------------------------------------------- /test/mocks/disputes/post-downloadDisputeDefenseDocument-download-dispute-defense-document-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/disputes/post-downloadDisputeDefenseDocument-download-dispute-defense-document-200.json -------------------------------------------------------------------------------- /test/mocks/disputes/post-retrieveApplicableDefenseReasons-retrieve-defense-reasons-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/disputes/post-retrieveApplicableDefenseReasons-retrieve-defense-reasons-200.json -------------------------------------------------------------------------------- /test/mocks/disputes/post-supplyDefenseDocument-supply-defense-document-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/disputes/post-supplyDefenseDocument-supply-defense-document-200.json -------------------------------------------------------------------------------- /test/mocks/legalEntityManagement/business_line_updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/legalEntityManagement/business_line_updated.json -------------------------------------------------------------------------------- /test/mocks/legalEntityManagement/details_of_trainsfer_instrument.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/legalEntityManagement/details_of_trainsfer_instrument.json -------------------------------------------------------------------------------- /test/mocks/legalEntityManagement/individual_legal_entity_created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/legalEntityManagement/individual_legal_entity_created.json -------------------------------------------------------------------------------- /test/mocks/management/create_a_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/management/create_a_user.json -------------------------------------------------------------------------------- /test/mocks/management/get_company_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/management/get_company_account.json -------------------------------------------------------------------------------- /test/mocks/management/get_list_of_android_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/management/get_list_of_android_apps.json -------------------------------------------------------------------------------- /test/mocks/management/get_list_of_merchant_accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/management/get_list_of_merchant_accounts.json -------------------------------------------------------------------------------- /test/mocks/management/no_content.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /test/mocks/management/post_me_allowed_origins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/management/post_me_allowed_origins.json -------------------------------------------------------------------------------- /test/mocks/management/update_a_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/management/update_a_store.json -------------------------------------------------------------------------------- /test/mocks/payout/confirm-missing-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/payout/confirm-missing-reference.json -------------------------------------------------------------------------------- /test/mocks/payout/confirm-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/payout/confirm-success.json -------------------------------------------------------------------------------- /test/mocks/payout/decline-missing-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/payout/decline-missing-reference.json -------------------------------------------------------------------------------- /test/mocks/payout/decline-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/payout/decline-success.json -------------------------------------------------------------------------------- /test/mocks/payout/storeDetail-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/payout/storeDetail-success.json -------------------------------------------------------------------------------- /test/mocks/payout/storeDetailAndSubmit-bank-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/payout/storeDetailAndSubmit-bank-success.json -------------------------------------------------------------------------------- /test/mocks/payout/storeDetailAndSubmit-card-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/payout/storeDetailAndSubmit-card-success.json -------------------------------------------------------------------------------- /test/mocks/payout/storeDetailAndSubmit-invalid-iban.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/payout/storeDetailAndSubmit-invalid-iban.json -------------------------------------------------------------------------------- /test/mocks/payout/storeDetailAndSubmit-missing-payment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/payout/storeDetailAndSubmit-missing-payment.json -------------------------------------------------------------------------------- /test/mocks/payout/submit-invalid-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/payout/submit-invalid-reference.json -------------------------------------------------------------------------------- /test/mocks/payout/submit-missing-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/payout/submit-missing-reference.json -------------------------------------------------------------------------------- /test/mocks/payout/submit-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/payout/submit-success.json -------------------------------------------------------------------------------- /test/mocks/recurring/disable-error-803.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/recurring/disable-error-803.json -------------------------------------------------------------------------------- /test/mocks/recurring/disable-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/recurring/disable-success.json -------------------------------------------------------------------------------- /test/mocks/recurring/listRecurringDetails-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/recurring/listRecurringDetails-success.json -------------------------------------------------------------------------------- /test/mocks/refund-received.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/refund-received.json -------------------------------------------------------------------------------- /test/mocks/sessionAuthentication/authentication-session-created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/sessionAuthentication/authentication-session-created.json -------------------------------------------------------------------------------- /test/mocks/storedValue/activate-giftcards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/storedValue/activate-giftcards.json -------------------------------------------------------------------------------- /test/mocks/storedValue/check-balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/storedValue/check-balance.json -------------------------------------------------------------------------------- /test/mocks/storedValue/issue-giftcard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/storedValue/issue-giftcard.json -------------------------------------------------------------------------------- /test/mocks/storedValue/load-funds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/storedValue/load-funds.json -------------------------------------------------------------------------------- /test/mocks/storedValue/merge-balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/storedValue/merge-balance.json -------------------------------------------------------------------------------- /test/mocks/storedValue/undo-transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/storedValue/undo-transaction.json -------------------------------------------------------------------------------- /test/mocks/terminal/assignTerminals-422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/terminal/assignTerminals-422.json -------------------------------------------------------------------------------- /test/mocks/terminal/assignTerminals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/terminal/assignTerminals.json -------------------------------------------------------------------------------- /test/mocks/terminal/findTerminal-422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/terminal/findTerminal-422.json -------------------------------------------------------------------------------- /test/mocks/terminal/findTerminal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/terminal/findTerminal.json -------------------------------------------------------------------------------- /test/mocks/terminal/getStoresUnderAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/terminal/getStoresUnderAccount.json -------------------------------------------------------------------------------- /test/mocks/terminal/getTerminalDetails-422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/terminal/getTerminalDetails-422.json -------------------------------------------------------------------------------- /test/mocks/terminal/getTerminalDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/terminal/getTerminalDetails.json -------------------------------------------------------------------------------- /test/mocks/terminal/getTerminalsUnderAccount-store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/terminal/getTerminalsUnderAccount-store.json -------------------------------------------------------------------------------- /test/mocks/terminal/getTerminalsUnderAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/terminal/getTerminalsUnderAccount.json -------------------------------------------------------------------------------- /test/mocks/transfers/get-all-transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/transfers/get-all-transactions.json -------------------------------------------------------------------------------- /test/mocks/transfers/get-transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/transfers/get-transaction.json -------------------------------------------------------------------------------- /test/mocks/transfers/make-transfer-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/transfers/make-transfer-response.json -------------------------------------------------------------------------------- /test/mocks/util/backslash_notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/util/backslash_notification.json -------------------------------------------------------------------------------- /test/mocks/util/colon_notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/util/colon_notification.json -------------------------------------------------------------------------------- /test/mocks/util/forwardslash_notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/util/forwardslash_notification.json -------------------------------------------------------------------------------- /test/mocks/util/mixed_notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/test/mocks/util/mixed_notification.json -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adyen/adyen-python-api-library/HEAD/tox.ini --------------------------------------------------------------------------------