alibabacloud-aimiaobi20230801 1.8.1__py3-none-any.whl → 1.8.3__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.3'
@@ -7289,9 +7289,11 @@ class GetTopicSelectionPerspectiveAnalysisTaskResponseBodyDataHotViewPointsResul
7289
7289
  def __init__(
7290
7290
  self,
7291
7291
  content: str = None,
7292
+ create_time: str = None,
7292
7293
  doc_id: str = None,
7293
7294
  doc_uuid: str = None,
7294
7295
  image_urls: List[str] = None,
7296
+ pub_time: str = None,
7295
7297
  source: str = None,
7296
7298
  summary: str = None,
7297
7299
  tags: List[str] = None,
@@ -7300,9 +7302,11 @@ class GetTopicSelectionPerspectiveAnalysisTaskResponseBodyDataHotViewPointsResul
7300
7302
  url: str = None,
7301
7303
  ):
7302
7304
  self.content = content
7305
+ self.create_time = create_time
7303
7306
  self.doc_id = doc_id
7304
7307
  self.doc_uuid = doc_uuid
7305
7308
  self.image_urls = image_urls
7309
+ self.pub_time = pub_time
7306
7310
  self.source = source
7307
7311
  self.summary = summary
7308
7312
  self.tags = tags
@@ -7321,12 +7325,16 @@ class GetTopicSelectionPerspectiveAnalysisTaskResponseBodyDataHotViewPointsResul
7321
7325
  result = dict()
7322
7326
  if self.content is not None:
7323
7327
  result['Content'] = self.content
7328
+ if self.create_time is not None:
7329
+ result['CreateTime'] = self.create_time
7324
7330
  if self.doc_id is not None:
7325
7331
  result['DocId'] = self.doc_id
7326
7332
  if self.doc_uuid is not None:
7327
7333
  result['DocUuid'] = self.doc_uuid
7328
7334
  if self.image_urls is not None:
7329
7335
  result['ImageUrls'] = self.image_urls
7336
+ if self.pub_time is not None:
7337
+ result['PubTime'] = self.pub_time
7330
7338
  if self.source is not None:
7331
7339
  result['Source'] = self.source
7332
7340
  if self.summary is not None:
@@ -7345,12 +7353,16 @@ class GetTopicSelectionPerspectiveAnalysisTaskResponseBodyDataHotViewPointsResul
7345
7353
  m = m or dict()
7346
7354
  if m.get('Content') is not None:
7347
7355
  self.content = m.get('Content')
7356
+ if m.get('CreateTime') is not None:
7357
+ self.create_time = m.get('CreateTime')
7348
7358
  if m.get('DocId') is not None:
7349
7359
  self.doc_id = m.get('DocId')
7350
7360
  if m.get('DocUuid') is not None:
7351
7361
  self.doc_uuid = m.get('DocUuid')
7352
7362
  if m.get('ImageUrls') is not None:
7353
7363
  self.image_urls = m.get('ImageUrls')
7364
+ if m.get('PubTime') is not None:
7365
+ self.pub_time = m.get('PubTime')
7354
7366
  if m.get('Source') is not None:
7355
7367
  self.source = m.get('Source')
7356
7368
  if m.get('Summary') is not None:
@@ -23839,10 +23851,44 @@ class SubmitDocClusterTaskResponse(TeaModel):
23839
23851
  return self
23840
23852
 
23841
23853
 
23854
+ class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocumentsComments(TeaModel):
23855
+ def __init__(
23856
+ self,
23857
+ text: str = None,
23858
+ username: str = None,
23859
+ ):
23860
+ self.text = text
23861
+ self.username = username
23862
+
23863
+ def validate(self):
23864
+ pass
23865
+
23866
+ def to_map(self):
23867
+ _map = super().to_map()
23868
+ if _map is not None:
23869
+ return _map
23870
+
23871
+ result = dict()
23872
+ if self.text is not None:
23873
+ result['Text'] = self.text
23874
+ if self.username is not None:
23875
+ result['Username'] = self.username
23876
+ return result
23877
+
23878
+ def from_map(self, m: dict = None):
23879
+ m = m or dict()
23880
+ if m.get('Text') is not None:
23881
+ self.text = m.get('Text')
23882
+ if m.get('Username') is not None:
23883
+ self.username = m.get('Username')
23884
+ return self
23885
+
23886
+
23842
23887
  class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocuments(TeaModel):
23843
23888
  def __init__(
23844
23889
  self,
23845
23890
  author: str = None,
23891
+ comments: List[SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocumentsComments] = None,
23846
23892
  content: str = None,
23847
23893
  pub_time: str = None,
23848
23894
  source: str = None,
@@ -23851,6 +23897,7 @@ class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocuments(TeaModel):
23851
23897
  url: str = None,
23852
23898
  ):
23853
23899
  self.author = author
23900
+ self.comments = comments
23854
23901
  # This parameter is required.
23855
23902
  self.content = content
23856
23903
  self.pub_time = pub_time
@@ -23860,7 +23907,10 @@ class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocuments(TeaModel):
23860
23907
  self.url = url
23861
23908
 
23862
23909
  def validate(self):
23863
- pass
23910
+ if self.comments:
23911
+ for k in self.comments:
23912
+ if k:
23913
+ k.validate()
23864
23914
 
23865
23915
  def to_map(self):
23866
23916
  _map = super().to_map()
@@ -23870,6 +23920,10 @@ class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocuments(TeaModel):
23870
23920
  result = dict()
23871
23921
  if self.author is not None:
23872
23922
  result['Author'] = self.author
23923
+ result['Comments'] = []
23924
+ if self.comments is not None:
23925
+ for k in self.comments:
23926
+ result['Comments'].append(k.to_map() if k else None)
23873
23927
  if self.content is not None:
23874
23928
  result['Content'] = self.content
23875
23929
  if self.pub_time is not None:
@@ -23888,6 +23942,11 @@ class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocuments(TeaModel):
23888
23942
  m = m or dict()
23889
23943
  if m.get('Author') is not None:
23890
23944
  self.author = m.get('Author')
23945
+ self.comments = []
23946
+ if m.get('Comments') is not None:
23947
+ for k in m.get('Comments'):
23948
+ temp_model = SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocumentsComments()
23949
+ self.comments.append(temp_model.from_map(k))
23891
23950
  if m.get('Content') is not None:
23892
23951
  self.content = m.get('Content')
23893
23952
  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.3
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=DOtzaIR7Y05YroOBC_FH3acXS4FvsvIA1K19M5mvtyg,21
2
+ alibabacloud_aimiaobi20230801/client.py,sha256=SIK3IOcZOAmbgsAET8mtSuFPu71hLEz8Ue17zQQhasY,395512
3
+ alibabacloud_aimiaobi20230801/models.py,sha256=S8uIGOovXpvcrpofrhArZ8Ya_ojKhBrJHTTjaU02wdQ,797071
4
+ alibabacloud_aimiaobi20230801-1.8.3.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
+ alibabacloud_aimiaobi20230801-1.8.3.dist-info/METADATA,sha256=LlpGGf4NMo8u0FwuYM2Z6coXE3WoLZhBtojZ6WJDYLc,2347
6
+ alibabacloud_aimiaobi20230801-1.8.3.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
7
+ alibabacloud_aimiaobi20230801-1.8.3.dist-info/top_level.txt,sha256=8_10N8zQLrK-NI6L5TUyufvojDqjPl1Q-dHKwoC_b5Q,30
8
+ alibabacloud_aimiaobi20230801-1.8.3.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,,