alibabacloud-aimiaobi20230801 1.8.1__py3-none-any.whl → 1.8.2__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.
@@ -1 +1 @@
1
- __version__ = '1.8.1'
1
+ __version__ = '1.8.2'
@@ -23839,10 +23839,44 @@ class SubmitDocClusterTaskResponse(TeaModel):
23839
23839
  return self
23840
23840
 
23841
23841
 
23842
+ class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocumentsComments(TeaModel):
23843
+ def __init__(
23844
+ self,
23845
+ text: str = None,
23846
+ username: str = None,
23847
+ ):
23848
+ self.text = text
23849
+ self.username = username
23850
+
23851
+ def validate(self):
23852
+ pass
23853
+
23854
+ def to_map(self):
23855
+ _map = super().to_map()
23856
+ if _map is not None:
23857
+ return _map
23858
+
23859
+ result = dict()
23860
+ if self.text is not None:
23861
+ result['Text'] = self.text
23862
+ if self.username is not None:
23863
+ result['Username'] = self.username
23864
+ return result
23865
+
23866
+ def from_map(self, m: dict = None):
23867
+ m = m or dict()
23868
+ if m.get('Text') is not None:
23869
+ self.text = m.get('Text')
23870
+ if m.get('Username') is not None:
23871
+ self.username = m.get('Username')
23872
+ return self
23873
+
23874
+
23842
23875
  class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocuments(TeaModel):
23843
23876
  def __init__(
23844
23877
  self,
23845
23878
  author: str = None,
23879
+ comments: List[SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocumentsComments] = None,
23846
23880
  content: str = None,
23847
23881
  pub_time: str = None,
23848
23882
  source: str = None,
@@ -23851,6 +23885,7 @@ class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocuments(TeaModel):
23851
23885
  url: str = None,
23852
23886
  ):
23853
23887
  self.author = author
23888
+ self.comments = comments
23854
23889
  # This parameter is required.
23855
23890
  self.content = content
23856
23891
  self.pub_time = pub_time
@@ -23860,7 +23895,10 @@ class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocuments(TeaModel):
23860
23895
  self.url = url
23861
23896
 
23862
23897
  def validate(self):
23863
- pass
23898
+ if self.comments:
23899
+ for k in self.comments:
23900
+ if k:
23901
+ k.validate()
23864
23902
 
23865
23903
  def to_map(self):
23866
23904
  _map = super().to_map()
@@ -23870,6 +23908,10 @@ class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocuments(TeaModel):
23870
23908
  result = dict()
23871
23909
  if self.author is not None:
23872
23910
  result['Author'] = self.author
23911
+ result['Comments'] = []
23912
+ if self.comments is not None:
23913
+ for k in self.comments:
23914
+ result['Comments'].append(k.to_map() if k else None)
23873
23915
  if self.content is not None:
23874
23916
  result['Content'] = self.content
23875
23917
  if self.pub_time is not None:
@@ -23888,6 +23930,11 @@ class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocuments(TeaModel):
23888
23930
  m = m or dict()
23889
23931
  if m.get('Author') is not None:
23890
23932
  self.author = m.get('Author')
23933
+ self.comments = []
23934
+ if m.get('Comments') is not None:
23935
+ for k in m.get('Comments'):
23936
+ temp_model = SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocumentsComments()
23937
+ self.comments.append(temp_model.from_map(k))
23891
23938
  if m.get('Content') is not None:
23892
23939
  self.content = m.get('Content')
23893
23940
  if m.get('PubTime') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-aimiaobi20230801
3
- Version: 1.8.1
3
+ Version: 1.8.2
4
4
  Summary: Alibaba Cloud AiMiaoBi (20230801) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -23,7 +23,7 @@ Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
24
  Requires-Dist: alibabacloud-endpoint-util (<1.0.0,>=0.0.3)
25
25
  Requires-Dist: alibabacloud-openapi-util (<1.0.0,>=0.2.1)
26
- Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.3.11)
26
+ Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.3.12)
27
27
  Requires-Dist: alibabacloud-tea-util (<1.0.0,>=0.3.13)
28
28
 
29
29
  English | [简体中文](README-CN.md)
@@ -33,7 +33,7 @@ English | [简体中文](README-CN.md)
33
33
 
34
34
  ## Requirements
35
35
 
36
- - Python >= 3.6
36
+ - Python >= 3.7
37
37
 
38
38
  ## Installation
39
39
 
@@ -0,0 +1,8 @@
1
+ alibabacloud_aimiaobi20230801/__init__.py,sha256=rC5r8a57tNS8iEsH9-9wBJhgkqTnEUlOLtqdDToxtfM,21
2
+ alibabacloud_aimiaobi20230801/client.py,sha256=SIK3IOcZOAmbgsAET8mtSuFPu71hLEz8Ue17zQQhasY,395512
3
+ alibabacloud_aimiaobi20230801/models.py,sha256=stoz_xqWGsFUAASr-jHiEFLrrBJmqeRLGtmEdNzfGTs,796578
4
+ alibabacloud_aimiaobi20230801-1.8.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
+ alibabacloud_aimiaobi20230801-1.8.2.dist-info/METADATA,sha256=0qZgtNzxM0ErC1aAQZ-X7OUT55K7xKDeDKEES3ydeC0,2347
6
+ alibabacloud_aimiaobi20230801-1.8.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
7
+ alibabacloud_aimiaobi20230801-1.8.2.dist-info/top_level.txt,sha256=8_10N8zQLrK-NI6L5TUyufvojDqjPl1Q-dHKwoC_b5Q,30
8
+ alibabacloud_aimiaobi20230801-1.8.2.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- alibabacloud_aimiaobi20230801/__init__.py,sha256=VeCo3jG4eMq5JgUgBBkmfX0RYN_MfWUdUGiQ16h2kPg,21
2
- alibabacloud_aimiaobi20230801/client.py,sha256=SIK3IOcZOAmbgsAET8mtSuFPu71hLEz8Ue17zQQhasY,395512
3
- alibabacloud_aimiaobi20230801/models.py,sha256=7pby0zmfIJrYFoYHX5HXrwDCHYheiRHrj58JcKwkBVk,795057
4
- alibabacloud_aimiaobi20230801-1.8.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
- alibabacloud_aimiaobi20230801-1.8.1.dist-info/METADATA,sha256=w8Sv2sE-XKKibx_oLzkiz86aL_c_B4yzqCNQN3yx3MU,2347
6
- alibabacloud_aimiaobi20230801-1.8.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
7
- alibabacloud_aimiaobi20230801-1.8.1.dist-info/top_level.txt,sha256=8_10N8zQLrK-NI6L5TUyufvojDqjPl1Q-dHKwoC_b5Q,30
8
- alibabacloud_aimiaobi20230801-1.8.1.dist-info/RECORD,,