File tree Expand file tree Collapse file tree 4 files changed +12
-2
lines changed
quanmiaolightapp-20240801
alibabacloud_quanmiaolightapp20240801 Expand file tree Collapse file tree 4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change
1
+ 2025-05-30 Version: 2.9.3
2
+ - Update API RunMarketingInformationWriting: add response parameters Body.payload.output.reasonContent.
3
+
4
+
1
5
2025-05-29 Version: 2.9.2
2
6
- Update API RunHotTopicChat: add response parameters Body.payload.output.category.
3
7
- Update API RunHotTopicChat: add response parameters Body.payload.output.keyword.
Original file line number Diff line number Diff line change 1
- __version__ = '2.9.2 '
1
+ __version__ = '2.9.3 '
Original file line number Diff line number Diff line change @@ -6203,8 +6203,10 @@ def from_map(self, m: dict = None):
6203
6203
class RunMarketingInformationWritingResponseBodyPayloadOutput (TeaModel ):
6204
6204
def __init__ (
6205
6205
self ,
6206
+ reason_content : str = None ,
6206
6207
text : str = None ,
6207
6208
):
6209
+ self .reason_content = reason_content
6208
6210
self .text = text
6209
6211
6210
6212
def validate (self ):
@@ -6216,12 +6218,16 @@ def to_map(self):
6216
6218
return _map
6217
6219
6218
6220
result = dict ()
6221
+ if self .reason_content is not None :
6222
+ result ['reasonContent' ] = self .reason_content
6219
6223
if self .text is not None :
6220
6224
result ['text' ] = self .text
6221
6225
return result
6222
6226
6223
6227
def from_map (self , m : dict = None ):
6224
6228
m = m or dict ()
6229
+ if m .get ('reasonContent' ) is not None :
6230
+ self .reason_content = m .get ('reasonContent' )
6225
6231
if m .get ('text' ) is not None :
6226
6232
self .text = m .get ('text' )
6227
6233
return self
Original file line number Diff line number Diff line change 24
24
"""
25
25
setup module for alibabacloud_quanmiaolightapp20240801.
26
26
27
- Created on 29 /05/2025
27
+ Created on 30 /05/2025
28
28
29
29
@author: Alibaba Cloud SDK
30
30
"""
You can’t perform that action at this time.
0 commit comments