alibabacloud-agency20221216 1.2.0__tar.gz → 1.4.0__tar.gz

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.
Files changed (18) hide show
  1. alibabacloud_agency20221216-1.4.0/ChangeLog.md +26 -0
  2. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/PKG-INFO +1 -1
  3. alibabacloud_agency20221216-1.4.0/alibabacloud_agency20221216/__init__.py +1 -0
  4. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/alibabacloud_agency20221216/client.py +4 -0
  5. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/alibabacloud_agency20221216/models.py +36 -0
  6. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/alibabacloud_agency20221216.egg-info/PKG-INFO +1 -1
  7. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/setup.py +1 -1
  8. alibabacloud_agency20221216-1.2.0/ChangeLog.md +0 -12
  9. alibabacloud_agency20221216-1.2.0/alibabacloud_agency20221216/__init__.py +0 -1
  10. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/LICENSE +0 -0
  11. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/MANIFEST.in +0 -0
  12. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/README-CN.md +0 -0
  13. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/README.md +0 -0
  14. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/alibabacloud_agency20221216.egg-info/SOURCES.txt +0 -0
  15. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/alibabacloud_agency20221216.egg-info/dependency_links.txt +0 -0
  16. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/alibabacloud_agency20221216.egg-info/requires.txt +0 -0
  17. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/alibabacloud_agency20221216.egg-info/top_level.txt +0 -0
  18. {alibabacloud_agency20221216-1.2.0 → alibabacloud_agency20221216-1.4.0}/setup.cfg +0 -0
@@ -0,0 +1,26 @@
1
+ 2024-03-08 Version: 1.3.0
2
+ - Support API CustomerQuotaRecordList.
3
+ - Support API ExportCustomerQuotaRecord.
4
+ - Support API ListCouponUsage.
5
+ - Support API QuotaListExportPaged.
6
+
7
+
8
+ 2024-02-27 Version: 1.2.0
9
+ - Support API CustomerQuotaRecordList.
10
+ - Support API ExportCustomerQuotaRecord.
11
+ - Support API ListCouponUsage.
12
+ - Support API QuotaListExportPaged.
13
+
14
+
15
+ 2024-02-27 Version: 1.1.0
16
+ - Support API CustomerQuotaRecordList.
17
+ - Support API ExportCustomerQuotaRecord.
18
+ - Support API QuotaListExportPaged.
19
+
20
+
21
+ 2023-12-22 Version: 1.0.1
22
+ - Generated python 2022-12-16 for Agency.
23
+
24
+ 2023-10-13 Version: 1.0.0
25
+ - Generated python 2022-12-16 for Agency.
26
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_agency20221216
3
- Version: 1.2.0
3
+ Version: 1.4.0
4
4
  Summary: Alibaba Cloud Agency (20221216) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -0,0 +1 @@
1
+ __version__ = '1.4.0'
@@ -1734,6 +1734,8 @@ class Client(OpenApiClient):
1734
1734
  query = {}
1735
1735
  if not UtilClient.is_unset(request.account_nickname):
1736
1736
  query['AccountNickname'] = request.account_nickname
1737
+ if not UtilClient.is_unset(request.customer_bd):
1738
+ query['CustomerBd'] = request.customer_bd
1737
1739
  if not UtilClient.is_unset(request.remark):
1738
1740
  query['Remark'] = request.remark
1739
1741
  if not UtilClient.is_unset(request.uid):
@@ -1766,6 +1768,8 @@ class Client(OpenApiClient):
1766
1768
  query = {}
1767
1769
  if not UtilClient.is_unset(request.account_nickname):
1768
1770
  query['AccountNickname'] = request.account_nickname
1771
+ if not UtilClient.is_unset(request.customer_bd):
1772
+ query['CustomerBd'] = request.customer_bd
1769
1773
  if not UtilClient.is_unset(request.remark):
1770
1774
  query['Remark'] = request.remark
1771
1775
  if not UtilClient.is_unset(request.uid):
@@ -1336,8 +1336,12 @@ class GetAccountInfoResponseBodyAccountInfoListAccountInfo(TeaModel):
1336
1336
  aliyun_id: str = None,
1337
1337
  association_success_time: str = None,
1338
1338
  cid: int = None,
1339
+ customer_bd: str = None,
1340
+ delay_amount: str = None,
1341
+ delay_status: str = None,
1339
1342
  email: str = None,
1340
1343
  mobile: str = None,
1344
+ new_buy_status: str = None,
1341
1345
  remark: str = None,
1342
1346
  sub_account_type: int = None,
1343
1347
  uid: int = None,
@@ -1352,10 +1356,14 @@ class GetAccountInfoResponseBodyAccountInfoListAccountInfo(TeaModel):
1352
1356
  self.association_success_time = association_success_time
1353
1357
  # Account CID of Distribution Customer.
1354
1358
  self.cid = cid
1359
+ self.customer_bd = customer_bd
1360
+ self.delay_amount = delay_amount
1361
+ self.delay_status = delay_status
1355
1362
  # The E-mail of Distribution Customer.
1356
1363
  self.email = email
1357
1364
  # Valid mobile number of Distribution Customer.
1358
1365
  self.mobile = mobile
1366
+ self.new_buy_status = new_buy_status
1359
1367
  # Description of Distribution Customer.
1360
1368
  self.remark = remark
1361
1369
  # Account Type:
@@ -1386,10 +1394,18 @@ class GetAccountInfoResponseBodyAccountInfoListAccountInfo(TeaModel):
1386
1394
  result['AssociationSuccessTime'] = self.association_success_time
1387
1395
  if self.cid is not None:
1388
1396
  result['Cid'] = self.cid
1397
+ if self.customer_bd is not None:
1398
+ result['CustomerBd'] = self.customer_bd
1399
+ if self.delay_amount is not None:
1400
+ result['DelayAmount'] = self.delay_amount
1401
+ if self.delay_status is not None:
1402
+ result['DelayStatus'] = self.delay_status
1389
1403
  if self.email is not None:
1390
1404
  result['Email'] = self.email
1391
1405
  if self.mobile is not None:
1392
1406
  result['Mobile'] = self.mobile
1407
+ if self.new_buy_status is not None:
1408
+ result['NewBuyStatus'] = self.new_buy_status
1393
1409
  if self.remark is not None:
1394
1410
  result['Remark'] = self.remark
1395
1411
  if self.sub_account_type is not None:
@@ -1408,10 +1424,18 @@ class GetAccountInfoResponseBodyAccountInfoListAccountInfo(TeaModel):
1408
1424
  self.association_success_time = m.get('AssociationSuccessTime')
1409
1425
  if m.get('Cid') is not None:
1410
1426
  self.cid = m.get('Cid')
1427
+ if m.get('CustomerBd') is not None:
1428
+ self.customer_bd = m.get('CustomerBd')
1429
+ if m.get('DelayAmount') is not None:
1430
+ self.delay_amount = m.get('DelayAmount')
1431
+ if m.get('DelayStatus') is not None:
1432
+ self.delay_status = m.get('DelayStatus')
1411
1433
  if m.get('Email') is not None:
1412
1434
  self.email = m.get('Email')
1413
1435
  if m.get('Mobile') is not None:
1414
1436
  self.mobile = m.get('Mobile')
1437
+ if m.get('NewBuyStatus') is not None:
1438
+ self.new_buy_status = m.get('NewBuyStatus')
1415
1439
  if m.get('Remark') is not None:
1416
1440
  self.remark = m.get('Remark')
1417
1441
  if m.get('SubAccountType') is not None:
@@ -2891,6 +2915,7 @@ class InviteSubAccountRequestAccountInfoList(TeaModel):
2891
2915
  self,
2892
2916
  account_nickname: str = None,
2893
2917
  credit_line: str = None,
2918
+ customer_bd: str = None,
2894
2919
  customer_id: str = None,
2895
2920
  email_address: str = None,
2896
2921
  new_buy_status: str = None,
@@ -2904,6 +2929,7 @@ class InviteSubAccountRequestAccountInfoList(TeaModel):
2904
2929
  self.account_nickname = account_nickname
2905
2930
  # The total budget Credit of Sub Account that distributed by Partner.
2906
2931
  self.credit_line = credit_line
2932
+ self.customer_bd = customer_bd
2907
2933
  # Customer ID, Returning ID from CreateCustomer API.
2908
2934
  self.customer_id = customer_id
2909
2935
  # The email address of End User, which will receive the invitation email.
@@ -2939,6 +2965,8 @@ class InviteSubAccountRequestAccountInfoList(TeaModel):
2939
2965
  result['AccountNickname'] = self.account_nickname
2940
2966
  if self.credit_line is not None:
2941
2967
  result['CreditLine'] = self.credit_line
2968
+ if self.customer_bd is not None:
2969
+ result['CustomerBd'] = self.customer_bd
2942
2970
  if self.customer_id is not None:
2943
2971
  result['CustomerId'] = self.customer_id
2944
2972
  if self.email_address is not None:
@@ -2959,6 +2987,8 @@ class InviteSubAccountRequestAccountInfoList(TeaModel):
2959
2987
  self.account_nickname = m.get('AccountNickname')
2960
2988
  if m.get('CreditLine') is not None:
2961
2989
  self.credit_line = m.get('CreditLine')
2990
+ if m.get('CustomerBd') is not None:
2991
+ self.customer_bd = m.get('CustomerBd')
2962
2992
  if m.get('CustomerId') is not None:
2963
2993
  self.customer_id = m.get('CustomerId')
2964
2994
  if m.get('EmailAddress') is not None:
@@ -3973,6 +4003,7 @@ class SetAccountInfoRequest(TeaModel):
3973
4003
  def __init__(
3974
4004
  self,
3975
4005
  account_nickname: str = None,
4006
+ customer_bd: str = None,
3976
4007
  remark: str = None,
3977
4008
  uid: int = None,
3978
4009
  ):
@@ -3980,6 +4011,7 @@ class SetAccountInfoRequest(TeaModel):
3980
4011
  # * Use the official name of Company, if Sub Account is an enterprise.
3981
4012
  # * Use the official name of Partner, if Sub Account is a T2 reseller.
3982
4013
  self.account_nickname = account_nickname
4014
+ self.customer_bd = customer_bd
3983
4015
  # Description of Sub Account.
3984
4016
  self.remark = remark
3985
4017
  # The UID of Sub Account.
@@ -3996,6 +4028,8 @@ class SetAccountInfoRequest(TeaModel):
3996
4028
  result = dict()
3997
4029
  if self.account_nickname is not None:
3998
4030
  result['AccountNickname'] = self.account_nickname
4031
+ if self.customer_bd is not None:
4032
+ result['CustomerBd'] = self.customer_bd
3999
4033
  if self.remark is not None:
4000
4034
  result['Remark'] = self.remark
4001
4035
  if self.uid is not None:
@@ -4006,6 +4040,8 @@ class SetAccountInfoRequest(TeaModel):
4006
4040
  m = m or dict()
4007
4041
  if m.get('AccountNickname') is not None:
4008
4042
  self.account_nickname = m.get('AccountNickname')
4043
+ if m.get('CustomerBd') is not None:
4044
+ self.customer_bd = m.get('CustomerBd')
4009
4045
  if m.get('Remark') is not None:
4010
4046
  self.remark = m.get('Remark')
4011
4047
  if m.get('Uid') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-agency20221216
3
- Version: 1.2.0
3
+ Version: 1.4.0
4
4
  Summary: Alibaba Cloud Agency (20221216) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
24
24
  """
25
25
  setup module for alibabacloud_agency20221216.
26
26
 
27
- Created on 27/02/2024
27
+ Created on 18/04/2024
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -1,12 +0,0 @@
1
- 2024-02-27 Version: 1.1.0
2
- - Support API CustomerQuotaRecordList.
3
- - Support API ExportCustomerQuotaRecord.
4
- - Support API QuotaListExportPaged.
5
-
6
-
7
- 2023-12-22 Version: 1.0.1
8
- - Generated python 2022-12-16 for Agency.
9
-
10
- 2023-10-13 Version: 1.0.0
11
- - Generated python 2022-12-16 for Agency.
12
-
@@ -1 +0,0 @@
1
- __version__ = '1.2.0'