From ccf2c97c21c02a196927ab5b0e2155127dc28610 Mon Sep 17 00:00:00 2001 From: mouad deraoui Date: Sat, 25 Jan 2025 18:53:13 +0100 Subject: [PATCH] Create AliexpressAffiliateProductShippingInfoGetRequest.py --- ...sAffiliateProductShippingInfoGetRequest.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 aliexpress_api/skd/api/rest/AliexpressAffiliateProductShippingInfoGetRequest.py diff --git a/aliexpress_api/skd/api/rest/AliexpressAffiliateProductShippingInfoGetRequest.py b/aliexpress_api/skd/api/rest/AliexpressAffiliateProductShippingInfoGetRequest.py new file mode 100644 index 0000000..b5751d9 --- /dev/null +++ b/aliexpress_api/skd/api/rest/AliexpressAffiliateProductShippingInfoGetRequest.py @@ -0,0 +1,20 @@ +""" +Created by mouad on 2025.01.21 +""" +from ..base import RestApi + + +class AliexpressAffiliateProductShippingInfoGetRequest(RestApi): + def __init__(self, domain="api-sg.aliexpress.com", port=80): + RestApi.__init__(self, domain, port) + self.app_signature = None + self.product_id = None + self.sku_id = None + self.ship_to_country = None + self.target_currency = None + self.target_sale_price = None + self.target_language = None + self.tax_rate = None + + def getapiname(self): + return "aliexpress.affiliate.product.shipping.get"