tencentcloud-sdk-python-intl-en 3.0.1250__py2.py3-none-any.whl → 3.0.1252__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tencentcloud/__init__.py +1 -1
- tencentcloud/bi/__init__.py +0 -0
- tencentcloud/bi/v20220105/__init__.py +0 -0
- tencentcloud/bi/v20220105/bi_client.py +72 -0
- tencentcloud/bi/v20220105/errorcodes.py +66 -0
- tencentcloud/bi/v20220105/models.py +959 -0
- tencentcloud/cdb/v20170320/models.py +77 -2
- tencentcloud/cfg/v20210820/models.py +30 -0
- tencentcloud/cynosdb/v20190107/models.py +19 -4
- tencentcloud/iai/v20200303/iai_client.py +1 -2
- tencentcloud/iai/v20200303/models.py +2 -2
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +48 -0
- tencentcloud/intlpartnersmgt/v20220928/models.py +720 -0
- {tencentcloud_sdk_python_intl_en-3.0.1250.dist-info → tencentcloud_sdk_python_intl_en-3.0.1252.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1250.dist-info → tencentcloud_sdk_python_intl_en-3.0.1252.dist-info}/RECORD +17 -12
- {tencentcloud_sdk_python_intl_en-3.0.1250.dist-info → tencentcloud_sdk_python_intl_en-3.0.1252.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1250.dist-info → tencentcloud_sdk_python_intl_en-3.0.1252.dist-info}/top_level.txt +0 -0
@@ -410,6 +410,10 @@ class AdjustCdbProxyAddressRequest(AbstractModel):
|
|
410
410
|
:type ConnectionPool: bool
|
411
411
|
:param _ProxyAllocation: Assignment of read/write weights If `system` is passed in for `WeightMode`, only the default weight assigned by the system will take effect.
|
412
412
|
:type ProxyAllocation: list of ProxyAllocation
|
413
|
+
:param _AutoLoadBalance:
|
414
|
+
:type AutoLoadBalance: bool
|
415
|
+
:param _AccessMode:
|
416
|
+
:type AccessMode: str
|
413
417
|
"""
|
414
418
|
self._ProxyGroupId = None
|
415
419
|
self._WeightMode = None
|
@@ -423,6 +427,8 @@ class AdjustCdbProxyAddressRequest(AbstractModel):
|
|
423
427
|
self._TransSplit = None
|
424
428
|
self._ConnectionPool = None
|
425
429
|
self._ProxyAllocation = None
|
430
|
+
self._AutoLoadBalance = None
|
431
|
+
self._AccessMode = None
|
426
432
|
|
427
433
|
@property
|
428
434
|
def ProxyGroupId(self):
|
@@ -556,6 +562,28 @@ class AdjustCdbProxyAddressRequest(AbstractModel):
|
|
556
562
|
def ProxyAllocation(self, ProxyAllocation):
|
557
563
|
self._ProxyAllocation = ProxyAllocation
|
558
564
|
|
565
|
+
@property
|
566
|
+
def AutoLoadBalance(self):
|
567
|
+
"""
|
568
|
+
:rtype: bool
|
569
|
+
"""
|
570
|
+
return self._AutoLoadBalance
|
571
|
+
|
572
|
+
@AutoLoadBalance.setter
|
573
|
+
def AutoLoadBalance(self, AutoLoadBalance):
|
574
|
+
self._AutoLoadBalance = AutoLoadBalance
|
575
|
+
|
576
|
+
@property
|
577
|
+
def AccessMode(self):
|
578
|
+
"""
|
579
|
+
:rtype: str
|
580
|
+
"""
|
581
|
+
return self._AccessMode
|
582
|
+
|
583
|
+
@AccessMode.setter
|
584
|
+
def AccessMode(self, AccessMode):
|
585
|
+
self._AccessMode = AccessMode
|
586
|
+
|
559
587
|
|
560
588
|
def _deserialize(self, params):
|
561
589
|
self._ProxyGroupId = params.get("ProxyGroupId")
|
@@ -575,6 +603,8 @@ class AdjustCdbProxyAddressRequest(AbstractModel):
|
|
575
603
|
obj = ProxyAllocation()
|
576
604
|
obj._deserialize(item)
|
577
605
|
self._ProxyAllocation.append(obj)
|
606
|
+
self._AutoLoadBalance = params.get("AutoLoadBalance")
|
607
|
+
self._AccessMode = params.get("AccessMode")
|
578
608
|
memeber_set = set(params.keys())
|
579
609
|
for name, value in vars(self).items():
|
580
610
|
property_name = name[1:]
|
@@ -5264,6 +5294,10 @@ class CreateCdbProxyAddressRequest(AbstractModel):
|
|
5264
5294
|
:type SecurityGroup: list of str
|
5265
5295
|
:param _ConnectionPoolType: Connection pool type, which will take effect only when `ConnectionPool` is `true`. Valid values: `transaction` (transaction-level), `connection` (session-level).
|
5266
5296
|
:type ConnectionPoolType: str
|
5297
|
+
:param _AutoLoadBalance:
|
5298
|
+
:type AutoLoadBalance: bool
|
5299
|
+
:param _AccessMode:
|
5300
|
+
:type AccessMode: str
|
5267
5301
|
"""
|
5268
5302
|
self._ProxyGroupId = None
|
5269
5303
|
self._WeightMode = None
|
@@ -5283,6 +5317,8 @@ class CreateCdbProxyAddressRequest(AbstractModel):
|
|
5283
5317
|
self._VPort = None
|
5284
5318
|
self._SecurityGroup = None
|
5285
5319
|
self._ConnectionPoolType = None
|
5320
|
+
self._AutoLoadBalance = None
|
5321
|
+
self._AccessMode = None
|
5286
5322
|
|
5287
5323
|
@property
|
5288
5324
|
def ProxyGroupId(self):
|
@@ -5482,6 +5518,28 @@ class CreateCdbProxyAddressRequest(AbstractModel):
|
|
5482
5518
|
def ConnectionPoolType(self, ConnectionPoolType):
|
5483
5519
|
self._ConnectionPoolType = ConnectionPoolType
|
5484
5520
|
|
5521
|
+
@property
|
5522
|
+
def AutoLoadBalance(self):
|
5523
|
+
"""
|
5524
|
+
:rtype: bool
|
5525
|
+
"""
|
5526
|
+
return self._AutoLoadBalance
|
5527
|
+
|
5528
|
+
@AutoLoadBalance.setter
|
5529
|
+
def AutoLoadBalance(self, AutoLoadBalance):
|
5530
|
+
self._AutoLoadBalance = AutoLoadBalance
|
5531
|
+
|
5532
|
+
@property
|
5533
|
+
def AccessMode(self):
|
5534
|
+
"""
|
5535
|
+
:rtype: str
|
5536
|
+
"""
|
5537
|
+
return self._AccessMode
|
5538
|
+
|
5539
|
+
@AccessMode.setter
|
5540
|
+
def AccessMode(self, AccessMode):
|
5541
|
+
self._AccessMode = AccessMode
|
5542
|
+
|
5485
5543
|
|
5486
5544
|
def _deserialize(self, params):
|
5487
5545
|
self._ProxyGroupId = params.get("ProxyGroupId")
|
@@ -5507,6 +5565,8 @@ class CreateCdbProxyAddressRequest(AbstractModel):
|
|
5507
5565
|
self._VPort = params.get("VPort")
|
5508
5566
|
self._SecurityGroup = params.get("SecurityGroup")
|
5509
5567
|
self._ConnectionPoolType = params.get("ConnectionPoolType")
|
5568
|
+
self._AutoLoadBalance = params.get("AutoLoadBalance")
|
5569
|
+
self._AccessMode = params.get("AccessMode")
|
5510
5570
|
memeber_set = set(params.keys())
|
5511
5571
|
for name, value in vars(self).items():
|
5512
5572
|
property_name = name[1:]
|
@@ -13065,7 +13125,7 @@ class DescribeDBPriceRequest(AbstractModel):
|
|
13065
13125
|
r"""
|
13066
13126
|
:param _Period: Instance validity period in months. Value range: 1-36. This field is invalid when querying the prices of pay-as-you-go instances.
|
13067
13127
|
:type Period: int
|
13068
|
-
:param _Zone: AZ information in the format of "ap-guangzhou-
|
13128
|
+
:param _Zone: AZ information in the format of "ap-guangzhou-3". You can use the <a href="https://intl.cloud.tencent.com/document/api/236/17229?from_cn_redirect=1">DescribeDBZoneConfig</a> API to query the configurable values. This parameter is required when `InstanceId` is empty.
|
13069
13129
|
:type Zone: str
|
13070
13130
|
:param _GoodsNum: Number of instances. Value range: 1-100. Default value: 1. This parameter is required when `InstanceId` is empty.
|
13071
13131
|
:type GoodsNum: int
|
@@ -13089,6 +13149,8 @@ class DescribeDBPriceRequest(AbstractModel):
|
|
13089
13149
|
:type InstanceId: str
|
13090
13150
|
:param _Ladder: Tiered pay-as-you-go pricing, which is valid only when `PayType` is set to `HOUR_PAID`. Valid values: `1`, `2`, `3`. For more information on tiered duration, visit https://intl.cloud.tencent.com/document/product/236/18335.?from_cn_redirect=1
|
13091
13151
|
:type Ladder: int
|
13152
|
+
:param _DiskType:
|
13153
|
+
:type DiskType: str
|
13092
13154
|
"""
|
13093
13155
|
self._Period = None
|
13094
13156
|
self._Zone = None
|
@@ -13103,6 +13165,7 @@ class DescribeDBPriceRequest(AbstractModel):
|
|
13103
13165
|
self._Cpu = None
|
13104
13166
|
self._InstanceId = None
|
13105
13167
|
self._Ladder = None
|
13168
|
+
self._DiskType = None
|
13106
13169
|
|
13107
13170
|
@property
|
13108
13171
|
def Period(self):
|
@@ -13117,7 +13180,7 @@ class DescribeDBPriceRequest(AbstractModel):
|
|
13117
13180
|
|
13118
13181
|
@property
|
13119
13182
|
def Zone(self):
|
13120
|
-
"""AZ information in the format of "ap-guangzhou-
|
13183
|
+
"""AZ information in the format of "ap-guangzhou-3". You can use the <a href="https://intl.cloud.tencent.com/document/api/236/17229?from_cn_redirect=1">DescribeDBZoneConfig</a> API to query the configurable values. This parameter is required when `InstanceId` is empty.
|
13121
13184
|
:rtype: str
|
13122
13185
|
"""
|
13123
13186
|
return self._Zone
|
@@ -13247,6 +13310,17 @@ class DescribeDBPriceRequest(AbstractModel):
|
|
13247
13310
|
def Ladder(self, Ladder):
|
13248
13311
|
self._Ladder = Ladder
|
13249
13312
|
|
13313
|
+
@property
|
13314
|
+
def DiskType(self):
|
13315
|
+
"""
|
13316
|
+
:rtype: str
|
13317
|
+
"""
|
13318
|
+
return self._DiskType
|
13319
|
+
|
13320
|
+
@DiskType.setter
|
13321
|
+
def DiskType(self, DiskType):
|
13322
|
+
self._DiskType = DiskType
|
13323
|
+
|
13250
13324
|
|
13251
13325
|
def _deserialize(self, params):
|
13252
13326
|
self._Period = params.get("Period")
|
@@ -13262,6 +13336,7 @@ class DescribeDBPriceRequest(AbstractModel):
|
|
13262
13336
|
self._Cpu = params.get("Cpu")
|
13263
13337
|
self._InstanceId = params.get("InstanceId")
|
13264
13338
|
self._Ladder = params.get("Ladder")
|
13339
|
+
self._DiskType = params.get("DiskType")
|
13265
13340
|
memeber_set = set(params.keys())
|
13266
13341
|
for name, value in vars(self).items():
|
13267
13342
|
property_name = name[1:]
|
@@ -1736,6 +1736,10 @@ class DescribeTaskListRequest(AbstractModel):
|
|
1736
1736
|
:type ApplicationName: list of str
|
1737
1737
|
:param _TaskStatusList: Task status for filtering, supporting multiple states (1001: not started; 1002: in progress; 1003: paused; 1004: ended)
|
1738
1738
|
:type TaskStatusList: list of int non-negative
|
1739
|
+
:param _ArchId:
|
1740
|
+
:type ArchId: str
|
1741
|
+
:param _ArchName:
|
1742
|
+
:type ArchName: str
|
1739
1743
|
"""
|
1740
1744
|
self._Limit = None
|
1741
1745
|
self._Offset = None
|
@@ -1751,6 +1755,8 @@ class DescribeTaskListRequest(AbstractModel):
|
|
1751
1755
|
self._ApplicationId = None
|
1752
1756
|
self._ApplicationName = None
|
1753
1757
|
self._TaskStatusList = None
|
1758
|
+
self._ArchId = None
|
1759
|
+
self._ArchName = None
|
1754
1760
|
|
1755
1761
|
@property
|
1756
1762
|
def Limit(self):
|
@@ -1906,6 +1912,28 @@ class DescribeTaskListRequest(AbstractModel):
|
|
1906
1912
|
def TaskStatusList(self, TaskStatusList):
|
1907
1913
|
self._TaskStatusList = TaskStatusList
|
1908
1914
|
|
1915
|
+
@property
|
1916
|
+
def ArchId(self):
|
1917
|
+
"""
|
1918
|
+
:rtype: str
|
1919
|
+
"""
|
1920
|
+
return self._ArchId
|
1921
|
+
|
1922
|
+
@ArchId.setter
|
1923
|
+
def ArchId(self, ArchId):
|
1924
|
+
self._ArchId = ArchId
|
1925
|
+
|
1926
|
+
@property
|
1927
|
+
def ArchName(self):
|
1928
|
+
"""
|
1929
|
+
:rtype: str
|
1930
|
+
"""
|
1931
|
+
return self._ArchName
|
1932
|
+
|
1933
|
+
@ArchName.setter
|
1934
|
+
def ArchName(self, ArchName):
|
1935
|
+
self._ArchName = ArchName
|
1936
|
+
|
1909
1937
|
|
1910
1938
|
def _deserialize(self, params):
|
1911
1939
|
self._Limit = params.get("Limit")
|
@@ -1932,6 +1960,8 @@ class DescribeTaskListRequest(AbstractModel):
|
|
1932
1960
|
self._ApplicationId = params.get("ApplicationId")
|
1933
1961
|
self._ApplicationName = params.get("ApplicationName")
|
1934
1962
|
self._TaskStatusList = params.get("TaskStatusList")
|
1963
|
+
self._ArchId = params.get("ArchId")
|
1964
|
+
self._ArchName = params.get("ArchName")
|
1935
1965
|
memeber_set = set(params.keys())
|
1936
1966
|
for name, value in vars(self).items():
|
1937
1967
|
property_name = name[1:]
|
@@ -16220,9 +16220,9 @@ class DescribeZonesRequest(AbstractModel):
|
|
16220
16220
|
|
16221
16221
|
def __init__(self):
|
16222
16222
|
r"""
|
16223
|
-
:param _IncludeVirtualZones: Whether the virtual zone is included
|
16223
|
+
:param _IncludeVirtualZones: Whether the virtual zone is included.
|
16224
16224
|
:type IncludeVirtualZones: bool
|
16225
|
-
:param _ShowPermission: Whether to display all AZs in a region and the user
|
16225
|
+
:param _ShowPermission: Whether to display all AZs in a region and the user's permissions in each AZ.
|
16226
16226
|
:type ShowPermission: bool
|
16227
16227
|
"""
|
16228
16228
|
self._IncludeVirtualZones = None
|
@@ -16230,7 +16230,7 @@ class DescribeZonesRequest(AbstractModel):
|
|
16230
16230
|
|
16231
16231
|
@property
|
16232
16232
|
def IncludeVirtualZones(self):
|
16233
|
-
"""Whether the virtual zone is included
|
16233
|
+
"""Whether the virtual zone is included.
|
16234
16234
|
:rtype: bool
|
16235
16235
|
"""
|
16236
16236
|
return self._IncludeVirtualZones
|
@@ -16241,7 +16241,7 @@ class DescribeZonesRequest(AbstractModel):
|
|
16241
16241
|
|
16242
16242
|
@property
|
16243
16243
|
def ShowPermission(self):
|
16244
|
-
"""Whether to display all AZs in a region and the user
|
16244
|
+
"""Whether to display all AZs in a region and the user's permissions in each AZ.
|
16245
16245
|
:rtype: bool
|
16246
16246
|
"""
|
16247
16247
|
return self._ShowPermission
|
@@ -20723,11 +20723,14 @@ class ModifyClusterSlaveZoneRequest(AbstractModel):
|
|
20723
20723
|
:type NewSlaveZone: str
|
20724
20724
|
:param _BinlogSyncWay: Specifies the binlog synchronization mode. the default value is async. valid values are sync, semisync, and async.
|
20725
20725
|
:type BinlogSyncWay: str
|
20726
|
+
:param _SemiSyncTimeout:
|
20727
|
+
:type SemiSyncTimeout: int
|
20726
20728
|
"""
|
20727
20729
|
self._ClusterId = None
|
20728
20730
|
self._OldSlaveZone = None
|
20729
20731
|
self._NewSlaveZone = None
|
20730
20732
|
self._BinlogSyncWay = None
|
20733
|
+
self._SemiSyncTimeout = None
|
20731
20734
|
|
20732
20735
|
@property
|
20733
20736
|
def ClusterId(self):
|
@@ -20773,12 +20776,24 @@ class ModifyClusterSlaveZoneRequest(AbstractModel):
|
|
20773
20776
|
def BinlogSyncWay(self, BinlogSyncWay):
|
20774
20777
|
self._BinlogSyncWay = BinlogSyncWay
|
20775
20778
|
|
20779
|
+
@property
|
20780
|
+
def SemiSyncTimeout(self):
|
20781
|
+
"""
|
20782
|
+
:rtype: int
|
20783
|
+
"""
|
20784
|
+
return self._SemiSyncTimeout
|
20785
|
+
|
20786
|
+
@SemiSyncTimeout.setter
|
20787
|
+
def SemiSyncTimeout(self, SemiSyncTimeout):
|
20788
|
+
self._SemiSyncTimeout = SemiSyncTimeout
|
20789
|
+
|
20776
20790
|
|
20777
20791
|
def _deserialize(self, params):
|
20778
20792
|
self._ClusterId = params.get("ClusterId")
|
20779
20793
|
self._OldSlaveZone = params.get("OldSlaveZone")
|
20780
20794
|
self._NewSlaveZone = params.get("NewSlaveZone")
|
20781
20795
|
self._BinlogSyncWay = params.get("BinlogSyncWay")
|
20796
|
+
self._SemiSyncTimeout = params.get("SemiSyncTimeout")
|
20782
20797
|
memeber_set = set(params.keys())
|
20783
20798
|
for name, value in vars(self).items():
|
20784
20799
|
property_name = name[1:]
|
@@ -29,8 +29,7 @@ class IaiClient(AbstractClient):
|
|
29
29
|
def AnalyzeFace(self, request):
|
30
30
|
"""This API is used to perform facial feature localization (aka facial keypoint localization) on a given image and calculate 90 facial keypoints that make up the contour of the face, including eyebrows (8 points on the left and 8 on the right), eyes (8 points on the left and 8 on the right), nose (13 points), mouth (22 points), face contour (21 points), and eyeballs or pupils (2 points).
|
31
31
|
|
32
|
-
|
33
|
-
- Please use the signature algorithm v3 to calculate the signature in the common parameters, that is, set the `SignatureMethod` parameter to `TC3-HMAC-SHA256`.
|
32
|
+
>- Please use the signature algorithm v3 to calculate the signature in the common parameters, that is, set the `SignatureMethod` parameter to `TC3-HMAC-SHA256`.
|
34
33
|
|
35
34
|
:param request: Request instance for AnalyzeFace.
|
36
35
|
:type request: :class:`tencentcloud.iai.v20200303.models.AnalyzeFaceRequest`
|
@@ -159,7 +159,7 @@ class AnalyzeFaceResponse(AbstractModel):
|
|
159
159
|
:type FaceShapeSet: list of FaceShape
|
160
160
|
:param _FaceModelVersion: Algorithm model version used for face recognition.
|
161
161
|
:type FaceModelVersion: str
|
162
|
-
:param _RequestId: The unique request ID,
|
162
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
163
163
|
:type RequestId: str
|
164
164
|
"""
|
165
165
|
self._ImageWidth = None
|
@@ -214,7 +214,7 @@ class AnalyzeFaceResponse(AbstractModel):
|
|
214
214
|
|
215
215
|
@property
|
216
216
|
def RequestId(self):
|
217
|
-
"""The unique request ID,
|
217
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
218
218
|
:rtype: str
|
219
219
|
"""
|
220
220
|
return self._RequestId
|
@@ -450,6 +450,30 @@ class IntlpartnersmgtClient(AbstractClient):
|
|
450
450
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
451
451
|
|
452
452
|
|
453
|
+
def DescribeCustomerOwnVoucherList(self, request):
|
454
|
+
"""This API is used to query the voucher list by Customer.
|
455
|
+
Callable roles: Customer.
|
456
|
+
|
457
|
+
:param request: Request instance for DescribeCustomerOwnVoucherList.
|
458
|
+
:type request: :class:`tencentcloud.intlpartnersmgt.v20220928.models.DescribeCustomerOwnVoucherListRequest`
|
459
|
+
:rtype: :class:`tencentcloud.intlpartnersmgt.v20220928.models.DescribeCustomerOwnVoucherListResponse`
|
460
|
+
|
461
|
+
"""
|
462
|
+
try:
|
463
|
+
params = request._serialize()
|
464
|
+
headers = request.headers
|
465
|
+
body = self.call("DescribeCustomerOwnVoucherList", params, headers=headers)
|
466
|
+
response = json.loads(body)
|
467
|
+
model = models.DescribeCustomerOwnVoucherListResponse()
|
468
|
+
model._deserialize(response["Response"])
|
469
|
+
return model
|
470
|
+
except Exception as e:
|
471
|
+
if isinstance(e, TencentCloudSDKException):
|
472
|
+
raise
|
473
|
+
else:
|
474
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
475
|
+
|
476
|
+
|
453
477
|
def DescribeCustomerUin(self, request):
|
454
478
|
"""This API is used to query the list of customer UINs.
|
455
479
|
|
@@ -473,6 +497,30 @@ class IntlpartnersmgtClient(AbstractClient):
|
|
473
497
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
474
498
|
|
475
499
|
|
500
|
+
def DescribeCustomerVoucherList(self, request):
|
501
|
+
"""This API is used to query the customer voucher list by Reseller, Second-level Reseller or Distributor.
|
502
|
+
Callable roles: Reseller, Second-level Reseller or Distributor.
|
503
|
+
|
504
|
+
:param request: Request instance for DescribeCustomerVoucherList.
|
505
|
+
:type request: :class:`tencentcloud.intlpartnersmgt.v20220928.models.DescribeCustomerVoucherListRequest`
|
506
|
+
:rtype: :class:`tencentcloud.intlpartnersmgt.v20220928.models.DescribeCustomerVoucherListResponse`
|
507
|
+
|
508
|
+
"""
|
509
|
+
try:
|
510
|
+
params = request._serialize()
|
511
|
+
headers = request.headers
|
512
|
+
body = self.call("DescribeCustomerVoucherList", params, headers=headers)
|
513
|
+
response = json.loads(body)
|
514
|
+
model = models.DescribeCustomerVoucherListResponse()
|
515
|
+
model._deserialize(response["Response"])
|
516
|
+
return model
|
517
|
+
except Exception as e:
|
518
|
+
if isinstance(e, TencentCloudSDKException):
|
519
|
+
raise
|
520
|
+
else:
|
521
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
522
|
+
|
523
|
+
|
476
524
|
def DescribeRebateDownloadUrl(self, request):
|
477
525
|
"""This API is used to download the commission bill file by resellers/agents. The file URL is returned.
|
478
526
|
Resellers/Agents can call this API.
|