Skip to content

Commit 0a17947

Browse files
committed
Update API GetSubPartnerOrderList: add response parameters Body.Data.$.CustomerClassification.
1 parent 5b77319 commit 0a17947

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

agency-20250227/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-05-29 Version: 1.0.5
2+
- Update API GetSubPartnerOrderList: add response parameters Body.Data.$.CustomerClassification.
3+
4+
15
2025-04-23 Version: 1.0.4
26
- Update API GetCommissionDetailFileList: add request parameters OssAccessKeyId.
37
- Update API GetCommissionDetailFileList: add request parameters OssAccessKeySecret.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.4'
1+
__version__ = '1.0.5'

agency-20250227/alibabacloud_agency20250227/models.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1819,6 +1819,7 @@ def __init__(
18191819
amount_discount: float = None,
18201820
amount_due: float = None,
18211821
created_at: str = None,
1822+
customer_classification: str = None,
18221823
deducted_amount_by_coupons: float = None,
18231824
discounted_price: float = None,
18241825
order_id: int = None,
@@ -1836,6 +1837,7 @@ def __init__(
18361837
self.amount_discount = amount_discount
18371838
self.amount_due = amount_due
18381839
self.created_at = created_at
1840+
self.customer_classification = customer_classification
18391841
self.deducted_amount_by_coupons = deducted_amount_by_coupons
18401842
self.discounted_price = discounted_price
18411843
self.order_id = order_id
@@ -1865,6 +1867,8 @@ def to_map(self):
18651867
result['AmountDue'] = self.amount_due
18661868
if self.created_at is not None:
18671869
result['CreatedAt'] = self.created_at
1870+
if self.customer_classification is not None:
1871+
result['CustomerClassification'] = self.customer_classification
18681872
if self.deducted_amount_by_coupons is not None:
18691873
result['DeductedAmountByCoupons'] = self.deducted_amount_by_coupons
18701874
if self.discounted_price is not None:
@@ -1901,6 +1905,8 @@ def from_map(self, m: dict = None):
19011905
self.amount_due = m.get('AmountDue')
19021906
if m.get('CreatedAt') is not None:
19031907
self.created_at = m.get('CreatedAt')
1908+
if m.get('CustomerClassification') is not None:
1909+
self.customer_classification = m.get('CustomerClassification')
19041910
if m.get('DeductedAmountByCoupons') is not None:
19051911
self.deducted_amount_by_coupons = m.get('DeductedAmountByCoupons')
19061912
if m.get('DiscountedPrice') is not None:

agency-20250227/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"""
2525
setup module for alibabacloud_agency20250227.
2626
27-
Created on 23/04/2025
27+
Created on 29/05/2025
2828
2929
@author: Alibaba Cloud SDK
3030
"""
@@ -38,7 +38,7 @@
3838
VERSION = __import__(PACKAGE).__version__
3939
REQUIRES = [
4040
"alibabacloud_tea_util>=0.3.13, <1.0.0",
41-
"alibabacloud_tea_openapi>=0.3.14, <1.0.0",
41+
"alibabacloud_tea_openapi>=0.3.15, <1.0.0",
4242
"alibabacloud_openapi_util>=0.2.2, <1.0.0",
4343
"alibabacloud_endpoint_util>=0.0.3, <1.0.0"
4444
]

0 commit comments

Comments
 (0)