Skip to content

Commit a2c2cd2

Browse files
false[adyen-sdk-automation] automated change (#301)
1 parent de2ca57 commit a2c2cd2

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

Adyen/services/checkout/utility_api.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,11 @@ def origin_keys(self, request, idempotency_key=None, **kwargs):
2929
method = "POST"
3030
return self.client.call_adyen_api(request, self.service, method, endpoint, idempotency_key, **kwargs)
3131

32+
def updates_order_for_paypal_express_checkout(self, request, idempotency_key=None, **kwargs):
33+
"""
34+
Updates the order for PayPal Express Checkout
35+
"""
36+
endpoint = self.baseUrl + f"/paypal/updateOrder"
37+
method = "POST"
38+
return self.client.call_adyen_api(request, self.service, method, endpoint, idempotency_key, **kwargs)
39+

Adyen/services/management/android_files_company_level_api.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,11 @@ def upload_android_app(self, companyId, idempotency_key=None, **kwargs):
4545
method = "POST"
4646
return self.client.call_adyen_api(None, self.service, method, endpoint, idempotency_key, **kwargs)
4747

48+
def upload_android_certificate(self, companyId, idempotency_key=None, **kwargs):
49+
"""
50+
Upload Android Certificate
51+
"""
52+
endpoint = self.baseUrl + f"/companies/{companyId}/androidCertificates"
53+
method = "POST"
54+
return self.client.call_adyen_api(None, self.service, method, endpoint, idempotency_key, **kwargs)
55+

0 commit comments

Comments
 (0)