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 May 29, 2024
1 parent fe04a6b commit 2fa2b85
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Adyen/services/management/android_files_company_level_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ def list_android_certificates(self, companyId, idempotency_key=None, **kwargs):
method = "GET"
return self.client.call_adyen_api(None, self.service, method, endpoint, idempotency_key, **kwargs)

def reprocess_android_app(self, companyId, id, idempotency_key=None, **kwargs):
"""
Reprocess Android App
"""
endpoint = self.baseUrl + f"/companies/{companyId}/androidApps/{id}"
method = "PATCH"
return self.client.call_adyen_api(None, self.service, method, endpoint, idempotency_key, **kwargs)

def upload_android_app(self, companyId, idempotency_key=None, **kwargs):
"""
Upload Android App
Expand Down

0 comments on commit 2fa2b85

Please sign in to comment.