Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions Adyen/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class AdyenRecurring(AdyenServiceBase):

API calls currently implemented: listRecurringDetails and disable. Please
refer to the Recurring Manual for specifics around the API.
https://docs.adyen.com/developers/recurring-manual
https://docs.adyen.com/online-payments/tokenization

Args:
client (AdyenAPIClient, optional): An API client for the service to
Expand Down Expand Up @@ -69,7 +69,7 @@ class AdyenHPP(AdyenServiceBase):
This currently only implements the directory_lookup request which will
return the list of payment methods available for given shopper. Please
refer to the HPP manual and the directory lookup section for the specifics.
https://docs.adyen.com/developers/hpp-manual#directorylookup
https://docs.adyen.com/online-payments/classic-integrations/hosted-payment-pages/directory-lookup

Args:
client (AdyenAPIClient, optional): An API client for the service to
Expand Down Expand Up @@ -133,8 +133,8 @@ class AdyenPayment(AdyenServiceBase):
capture
refund
cancelOrRefund
Please refer to the Recurring Manual for specifics around the API.
https://docs.adyen.com/developers/recurring-manual
Please refer to our API Explorer for specifics around these APIs.
https://docs.adyen.com/api-explorer/

The AdyenPayment class, is accessible as adyen.payment.method(args)

Expand Down Expand Up @@ -225,9 +225,8 @@ def cancel_or_refund(self, request, idempotency_key=None, **kwargs):


class AdyenThirdPartyPayout(AdyenServiceBase):
"""This represents the Adyen API Third Party Payouts Service.

https://docs.adyen.com/developers/api-reference/third-party-payouts-api
"""This represents the Adyen Payouts Service.
https://docs.adyen.com/api-explorer/#/Payout/overview

The AdyenThirdPartyPayout class is accessible as adyen.payout.method(args)

Expand Down Expand Up @@ -281,7 +280,7 @@ class AdyenCheckoutApi(AdyenServiceBase):
originKeys

Please refer to the checkout documentation for specifics around the API.
https://docs.adyen.com/developers/checkout
https://docs.adyen.com/online-payments

The AdyenPayment class, is accessible as adyen.payment.method(args)

Expand Down Expand Up @@ -349,7 +348,7 @@ class AdyenBinLookup(AdyenServiceBase):

API call currently implemented: getCostEstimate.
Please refer to the Bin Lookup Manual for specifics around the API.
https://docs.adyen.com/api-explorer/#/BinLookup/v50/overview
https://docs.adyen.com/api-explorer/#/BinLookup/

Args:
client (AdyenAPIClient, optional): An API client for the service to
Expand Down