Skip to content

Commit

Permalink
false[adyen-sdk-automation] automated change
Browse files Browse the repository at this point in the history
  • Loading branch information
AdyenAutomationBot committed Jun 17, 2024
1 parent c8b379a commit 44ce2fa
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Adyen/services/recurring.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ def disable_permit(self, request, idempotency_key=None, **kwargs):
method = "POST"
return self.client.call_adyen_api(request, self.service, method, endpoint, idempotency_key, **kwargs)

def forward(self, request, idempotency_key=None, **kwargs):
"""
Ask 3rd party processor to process the request and send back the response
"""
endpoint = self.baseUrl + f"/forward"
method = "POST"
return self.client.call_adyen_api(request, self.service, method, endpoint, idempotency_key, **kwargs)

def list_recurring_details(self, request, idempotency_key=None, **kwargs):
"""
Get stored payment details
Expand Down

0 comments on commit 44ce2fa

Please sign in to comment.