Skip to content

Commit 254e389

Browse files
committed
Update API RunMarketingInformationWriting: add response parameters Body.payload.output.reasonContent.
1 parent 0a0677f commit 254e389

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

quanmiaolightapp-20240801/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-05-30 Version: 2.9.3
2+
- Update API RunMarketingInformationWriting: add response parameters Body.payload.output.reasonContent.
3+
4+
15
2025-05-29 Version: 2.9.2
26
- Update API RunHotTopicChat: add response parameters Body.payload.output.category.
37
- Update API RunHotTopicChat: add response parameters Body.payload.output.keyword.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.9.2'
1+
__version__ = '2.9.3'

quanmiaolightapp-20240801/alibabacloud_quanmiaolightapp20240801/models.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6203,8 +6203,10 @@ def from_map(self, m: dict = None):
62036203
class RunMarketingInformationWritingResponseBodyPayloadOutput(TeaModel):
62046204
def __init__(
62056205
self,
6206+
reason_content: str = None,
62066207
text: str = None,
62076208
):
6209+
self.reason_content = reason_content
62086210
self.text = text
62096211

62106212
def validate(self):
@@ -6216,12 +6218,16 @@ def to_map(self):
62166218
return _map
62176219

62186220
result = dict()
6221+
if self.reason_content is not None:
6222+
result['reasonContent'] = self.reason_content
62196223
if self.text is not None:
62206224
result['text'] = self.text
62216225
return result
62226226

62236227
def from_map(self, m: dict = None):
62246228
m = m or dict()
6229+
if m.get('reasonContent') is not None:
6230+
self.reason_content = m.get('reasonContent')
62256231
if m.get('text') is not None:
62266232
self.text = m.get('text')
62276233
return self

quanmiaolightapp-20240801/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"""
2525
setup module for alibabacloud_quanmiaolightapp20240801.
2626
27-
Created on 29/05/2025
27+
Created on 30/05/2025
2828
2929
@author: Alibaba Cloud SDK
3030
"""

0 commit comments

Comments
 (0)