tencentcloud-sdk-python-ess 3.1.47__tar.gz → 3.1.53__tar.gz

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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/setup.py +1 -1
  3. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/tencentcloud/ess/v20201111/models.py +107 -10
  5. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/tencentcloud_sdk_python_ess.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_ess-3.1.53/tencentcloud_sdk_python_ess.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_ess-3.1.47/tencentcloud_sdk_python_ess.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/README.rst +0 -0
  9. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/tencentcloud/ess/__init__.py +0 -0
  11. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/tencentcloud/ess/v20201111/__init__.py +0 -0
  12. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/tencentcloud/ess/v20201111/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/tencentcloud/ess/v20201111/ess_client.py +0 -0
  14. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/tencentcloud/ess/v20201111/ess_client_async.py +0 -0
  15. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/tencentcloud_sdk_python_ess.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/tencentcloud_sdk_python_ess.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_ess-3.1.47 → tencentcloud_sdk_python_ess-3.1.53}/tencentcloud_sdk_python_ess.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-ess
3
- Version: 3.1.47
3
+ Version: 3.1.53
4
4
  Summary: Tencent Cloud Ess SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.47
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.53
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-ess',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.47,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.53,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Ess SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.47'
17
+ __version__ = '3.1.53'
@@ -3384,12 +3384,25 @@ class ComparisonDetail(AbstractModel):
3384
3384
  :type OriginText: str
3385
3385
  :param _DiffText: 对比文本。
3386
3386
  :type DiffText: str
3387
+ :param _FormatType: 合同文本的格式类型。
3388
+ 类型如下:
3389
+ <ul><li> **0**:段落(正文)</li>
3390
+ <li> **1**:标点符号</li>
3391
+ <li> **2**:页眉页脚</li>
3392
+ <li> **3**:目录</li>
3393
+ <li> **4**:印章</li>
3394
+ <li> **5**:序号</li>
3395
+ <li> **6**:水印</li>
3396
+ <li> **7**:下划线内容(填写区)</li>
3397
+ </ul>
3398
+ :type FormatType: int
3387
3399
  """
3388
3400
  self._ComparisonPointId = None
3389
3401
  self._ComparisonType = None
3390
3402
  self._ContentType = None
3391
3403
  self._OriginText = None
3392
3404
  self._DiffText = None
3405
+ self._FormatType = None
3393
3406
 
3394
3407
  @property
3395
3408
  def ComparisonPointId(self):
@@ -3454,6 +3467,27 @@ class ComparisonDetail(AbstractModel):
3454
3467
  def DiffText(self, DiffText):
3455
3468
  self._DiffText = DiffText
3456
3469
 
3470
+ @property
3471
+ def FormatType(self):
3472
+ r"""合同文本的格式类型。
3473
+ 类型如下:
3474
+ <ul><li> **0**:段落(正文)</li>
3475
+ <li> **1**:标点符号</li>
3476
+ <li> **2**:页眉页脚</li>
3477
+ <li> **3**:目录</li>
3478
+ <li> **4**:印章</li>
3479
+ <li> **5**:序号</li>
3480
+ <li> **6**:水印</li>
3481
+ <li> **7**:下划线内容(填写区)</li>
3482
+ </ul>
3483
+ :rtype: int
3484
+ """
3485
+ return self._FormatType
3486
+
3487
+ @FormatType.setter
3488
+ def FormatType(self, FormatType):
3489
+ self._FormatType = FormatType
3490
+
3457
3491
 
3458
3492
  def _deserialize(self, params):
3459
3493
  self._ComparisonPointId = params.get("ComparisonPointId")
@@ -3461,6 +3495,7 @@ class ComparisonDetail(AbstractModel):
3461
3495
  self._ContentType = params.get("ContentType")
3462
3496
  self._OriginText = params.get("OriginText")
3463
3497
  self._DiffText = params.get("DiffText")
3498
+ self._FormatType = params.get("FormatType")
3464
3499
  memeber_set = set(params.keys())
3465
3500
  for name, value in vars(self).items():
3466
3501
  property_name = name[1:]
@@ -23159,10 +23194,27 @@ class DescribeContractComparisonTaskRequest(AbstractModel):
23159
23194
  :param _ShowDetail: 是否返回详细的对比结果。为 true时,响应中将包含详细的对比信息,如相似度、文本差异具体内容等;为 false时,仅返回任务基本状态信息。
23160
23195
  注:`详细结果数据量可能较大,请按需开启。`
23161
23196
  :type ShowDetail: bool
23197
+ :param _Filters: 搜索条件,具体参考Filter结构体。本接口取值:
23198
+
23199
+ 1. **format-type:**
23200
+ 按照【 合同文本格式类型 】进行过滤;
23201
+ 类型:String;
23202
+ 是否必填项:否;
23203
+ 类型如下:
23204
+ <ul><li> **0**:段落(正文)</li>
23205
+ <li> **1**:标点符号</li>
23206
+ <li> **2**:页眉页脚</li>
23207
+ <li> **3**:目录</li>
23208
+ <li> **4**:印章</li>
23209
+ <li> **5**:序号</li>
23210
+ <li> **7**:下划线内容(填写区)</li>
23211
+ </ul>
23212
+ :type Filters: list of Filter
23162
23213
  """
23163
23214
  self._Operator = None
23164
23215
  self._TaskId = None
23165
23216
  self._ShowDetail = None
23217
+ self._Filters = None
23166
23218
 
23167
23219
  @property
23168
23220
  def Operator(self):
@@ -23199,6 +23251,31 @@ class DescribeContractComparisonTaskRequest(AbstractModel):
23199
23251
  def ShowDetail(self, ShowDetail):
23200
23252
  self._ShowDetail = ShowDetail
23201
23253
 
23254
+ @property
23255
+ def Filters(self):
23256
+ r"""搜索条件,具体参考Filter结构体。本接口取值:
23257
+
23258
+ 1. **format-type:**
23259
+ 按照【 合同文本格式类型 】进行过滤;
23260
+ 类型:String;
23261
+ 是否必填项:否;
23262
+ 类型如下:
23263
+ <ul><li> **0**:段落(正文)</li>
23264
+ <li> **1**:标点符号</li>
23265
+ <li> **2**:页眉页脚</li>
23266
+ <li> **3**:目录</li>
23267
+ <li> **4**:印章</li>
23268
+ <li> **5**:序号</li>
23269
+ <li> **7**:下划线内容(填写区)</li>
23270
+ </ul>
23271
+ :rtype: list of Filter
23272
+ """
23273
+ return self._Filters
23274
+
23275
+ @Filters.setter
23276
+ def Filters(self, Filters):
23277
+ self._Filters = Filters
23278
+
23202
23279
 
23203
23280
  def _deserialize(self, params):
23204
23281
  if params.get("Operator") is not None:
@@ -23206,6 +23283,12 @@ class DescribeContractComparisonTaskRequest(AbstractModel):
23206
23283
  self._Operator._deserialize(params.get("Operator"))
23207
23284
  self._TaskId = params.get("TaskId")
23208
23285
  self._ShowDetail = params.get("ShowDetail")
23286
+ if params.get("Filters") is not None:
23287
+ self._Filters = []
23288
+ for item in params.get("Filters"):
23289
+ obj = Filter()
23290
+ obj._deserialize(item)
23291
+ self._Filters.append(obj)
23209
23292
  memeber_set = set(params.keys())
23210
23293
  for name, value in vars(self).items():
23211
23294
  property_name = name[1:]
@@ -29892,7 +29975,7 @@ class ExportContractReviewResultRequest(AbstractModel):
29892
29975
  :type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
29893
29976
  :param _TaskId: 合同审查任务ID
29894
29977
  :type TaskId: str
29895
- :param _FileType: 导出文件类型。1 = 带风险批注文件; 2 = 审查结果&摘要(.xIsx
29978
+ :param _FileType: 导出文件类型。1 = 带风险批注文件; 2 = 审查结果&摘要(.xIsx); 3 = 不带批注文件
29896
29979
  :type FileType: int
29897
29980
  :param _Agent: 代理企业和员工的信息。
29898
29981
  在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
@@ -29928,7 +30011,7 @@ class ExportContractReviewResultRequest(AbstractModel):
29928
30011
 
29929
30012
  @property
29930
30013
  def FileType(self):
29931
- r"""导出文件类型。1 = 带风险批注文件; 2 = 审查结果&摘要(.xIsx
30014
+ r"""导出文件类型。1 = 带风险批注文件; 2 = 审查结果&摘要(.xIsx); 3 = 不带批注文件
29932
30015
  :rtype: int
29933
30016
  """
29934
30017
  return self._FileType
@@ -30166,8 +30249,15 @@ class ExtendScene(AbstractModel):
30166
30249
  def __init__(self):
30167
30250
  r"""
30168
30251
  :param _GenerateType: 印章来源类型
30252
+ 印章来源类型包括下面几种:
30253
+ <ul>
30254
+ <li>CREATE-客户上传图片创建</li>
30255
+ <li>GENERATE-系统模版印章生成</li>
30256
+ <li>SIST_SEAL-深圳电子印章</li>
30257
+ </ul>
30169
30258
  :type GenerateType: str
30170
30259
  :param _GenerateTypeDesc: 印章来源类型描述
30260
+
30171
30261
  :type GenerateTypeDesc: str
30172
30262
  :param _GenerateTypeLogo: 印章来源logo
30173
30263
  :type GenerateTypeLogo: str
@@ -30179,6 +30269,12 @@ class ExtendScene(AbstractModel):
30179
30269
  @property
30180
30270
  def GenerateType(self):
30181
30271
  r"""印章来源类型
30272
+ 印章来源类型包括下面几种:
30273
+ <ul>
30274
+ <li>CREATE-客户上传图片创建</li>
30275
+ <li>GENERATE-系统模版印章生成</li>
30276
+ <li>SIST_SEAL-深圳电子印章</li>
30277
+ </ul>
30182
30278
  :rtype: str
30183
30279
  """
30184
30280
  return self._GenerateType
@@ -30190,6 +30286,7 @@ class ExtendScene(AbstractModel):
30190
30286
  @property
30191
30287
  def GenerateTypeDesc(self):
30192
30288
  r"""印章来源类型描述
30289
+
30193
30290
  :rtype: str
30194
30291
  """
30195
30292
  return self._GenerateTypeDesc
@@ -40016,13 +40113,13 @@ class PositionInfo(AbstractModel):
40016
40113
 
40017
40114
  def __init__(self):
40018
40115
  r"""
40019
- :param _X: PDF文件页X坐标位置,以PDF单页左上角为坐标原点
40116
+ :param _X: PDF文件页X坐标位置,以PDF单页左上角为坐标原点,单位是 “点”(Point,简称 pt)
40020
40117
  :type X: float
40021
- :param _Y: PDF文件页Y坐标位置,以PDF单页左上角为坐标原点
40118
+ :param _Y: PDF文件页Y坐标位置,以PDF单页左上角为坐标原点,单位是 “点”(Point,简称 pt)
40022
40119
  :type Y: float
40023
- :param _Width: 距离X坐标的宽度,用于在PDF文件进行画框。
40120
+ :param _Width: 距离X坐标的宽度,用于在PDF文件进行画框,单位是 “点”(Point,简称 pt)
40024
40121
  :type Width: float
40025
- :param _Height: 距离Y坐标的高度,用于在PDF文件进行画框。
40122
+ :param _Height: 距离Y坐标的高度,用于在PDF文件进行画框,单位是 “点”(Point,简称 pt)
40026
40123
  :type Height: float
40027
40124
  :param _PageIndex: PDF文件页码索引,此值加1就是对应PDF文件的页码。
40028
40125
  :type PageIndex: int
@@ -40047,7 +40144,7 @@ class PositionInfo(AbstractModel):
40047
40144
 
40048
40145
  @property
40049
40146
  def X(self):
40050
- r"""PDF文件页X坐标位置,以PDF单页左上角为坐标原点
40147
+ r"""PDF文件页X坐标位置,以PDF单页左上角为坐标原点,单位是 “点”(Point,简称 pt)
40051
40148
  :rtype: float
40052
40149
  """
40053
40150
  return self._X
@@ -40058,7 +40155,7 @@ class PositionInfo(AbstractModel):
40058
40155
 
40059
40156
  @property
40060
40157
  def Y(self):
40061
- r"""PDF文件页Y坐标位置,以PDF单页左上角为坐标原点
40158
+ r"""PDF文件页Y坐标位置,以PDF单页左上角为坐标原点,单位是 “点”(Point,简称 pt)
40062
40159
  :rtype: float
40063
40160
  """
40064
40161
  return self._Y
@@ -40069,7 +40166,7 @@ class PositionInfo(AbstractModel):
40069
40166
 
40070
40167
  @property
40071
40168
  def Width(self):
40072
- r"""距离X坐标的宽度,用于在PDF文件进行画框。
40169
+ r"""距离X坐标的宽度,用于在PDF文件进行画框,单位是 “点”(Point,简称 pt)
40073
40170
  :rtype: float
40074
40171
  """
40075
40172
  return self._Width
@@ -40080,7 +40177,7 @@ class PositionInfo(AbstractModel):
40080
40177
 
40081
40178
  @property
40082
40179
  def Height(self):
40083
- r"""距离Y坐标的高度,用于在PDF文件进行画框。
40180
+ r"""距离Y坐标的高度,用于在PDF文件进行画框,单位是 “点”(Point,简称 pt)
40084
40181
  :rtype: float
40085
40182
  """
40086
40183
  return self._Height
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-ess
3
- Version: 3.1.47
3
+ Version: 3.1.53
4
4
  Summary: Tencent Cloud Ess SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.47
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.53
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.53
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.47