tencentcloud-sdk-ess 3.0.1110 → 3.0.1115
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201111/client.rb +55 -1
- data/lib/v20201111/models.rb +351 -86
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5eaf3679eb3e2f88cff50eefd220d0dae4175e0c
|
4
|
+
data.tar.gz: d0715780f7be165db5fe05386ffd650c1ad57fc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8b2f6f21b15f5741ca70e3e9fe87298973649e1a942c010d5433ce4733ceb0b2ca38e99e30b03dde0d33405cded63d95f3be3d51f4bc6b22d816d39e6b54f73
|
7
|
+
data.tar.gz: 47d82d0309f72711f7ac9fb8e19b5c3f905fb67fa5c7df2df6c4845e6bc1e5cb6b5f89ecd78ff26effa3248d3c8046d7c84bbdd7fa6ba5bdf2ca15a7149b4c91
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1115
|
data/lib/v20201111/client.rb
CHANGED
@@ -222,6 +222,36 @@ module TencentCloud
|
|
222
222
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
223
223
|
end
|
224
224
|
|
225
|
+
# 此接口(CreateBatchContractReviewTask)用来通过上传后的PDF资源编号来批量创建合同智能审查任务。
|
226
|
+
|
227
|
+
# 适用场景:根据合同内容识别出合同的风险信息。审查结果由AI生成,仅供参考。请结合相关法律法规和公司制度要求综合判断。
|
228
|
+
|
229
|
+
# 注:
|
230
|
+
# 1. PDF格式限制大小为10M以下
|
231
|
+
# 2. 仅支持5个PDF文件批量发起
|
232
|
+
|
233
|
+
# @param request: Request instance for CreateBatchContractReviewTask.
|
234
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::CreateBatchContractReviewTaskRequest`
|
235
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::CreateBatchContractReviewTaskResponse`
|
236
|
+
def CreateBatchContractReviewTask(request)
|
237
|
+
body = send_request('CreateBatchContractReviewTask', request.serialize)
|
238
|
+
response = JSON.parse(body)
|
239
|
+
if response['Response'].key?('Error') == false
|
240
|
+
model = CreateBatchContractReviewTaskResponse.new
|
241
|
+
model.deserialize(response['Response'])
|
242
|
+
model
|
243
|
+
else
|
244
|
+
code = response['Response']['Error']['Code']
|
245
|
+
message = response['Response']['Error']['Message']
|
246
|
+
reqid = response['Response']['RequestId']
|
247
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
248
|
+
end
|
249
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
250
|
+
raise e
|
251
|
+
rescue StandardError => e
|
252
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
253
|
+
end
|
254
|
+
|
225
255
|
# 此接口(CreateBatchInformationExtractionTask)用来通过上传后的PDF资源编号来批量创建合同智能审查任务。<br/>
|
226
256
|
|
227
257
|
# 适用场景:根据合同关键词(字段名称)来提取PDF合同文件的字段结果信息。
|
@@ -2164,7 +2194,7 @@ module TencentCloud
|
|
2164
2194
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2165
2195
|
end
|
2166
2196
|
|
2167
|
-
#
|
2197
|
+
# 生成个人用户实名认证链接,个人用户点击此链接进入实名流程(若用户已完成实名认证,则直接进入成功页面)。用户点击此接口生成的链接完成实名认证后,其数据将通过[企业引导个人实名认证后回调](https://qian.tencent.com/developers/company/callback_types_staffs/#%E5%8D%81%E4%BA%8C-%E4%BC%81%E4%B8%9A%E5%BC%95%E5%AF%BC%E4%B8%AA%E4%BA%BA%E5%AE%9E%E5%90%8D%E8%AE%A4%E8%AF%81%E5%90%8E%E5%9B%9E%E8%B0%83)返回
|
2168
2198
|
|
2169
2199
|
# 注: 调用此接口需要购买<font color="red"><b>单独的实名套餐包</b></font>。使用前请联系对接的客户经理沟通。
|
2170
2200
|
|
@@ -2536,6 +2566,30 @@ module TencentCloud
|
|
2536
2566
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2537
2567
|
end
|
2538
2568
|
|
2569
|
+
# 本接口(DescribeContractReviewTask)用于获取合同审查任务详情,包括任务的状态和识别出的风险信息。
|
2570
|
+
|
2571
|
+
# @param request: Request instance for DescribeContractReviewTask.
|
2572
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::DescribeContractReviewTaskRequest`
|
2573
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::DescribeContractReviewTaskResponse`
|
2574
|
+
def DescribeContractReviewTask(request)
|
2575
|
+
body = send_request('DescribeContractReviewTask', request.serialize)
|
2576
|
+
response = JSON.parse(body)
|
2577
|
+
if response['Response'].key?('Error') == false
|
2578
|
+
model = DescribeContractReviewTaskResponse.new
|
2579
|
+
model.deserialize(response['Response'])
|
2580
|
+
model
|
2581
|
+
else
|
2582
|
+
code = response['Response']['Error']['Code']
|
2583
|
+
message = response['Response']['Error']['Message']
|
2584
|
+
reqid = response['Response']['RequestId']
|
2585
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2586
|
+
end
|
2587
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2588
|
+
raise e
|
2589
|
+
rescue StandardError => e
|
2590
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2591
|
+
end
|
2592
|
+
|
2539
2593
|
# 查询企业扩展服务的授权详情(列表),当前支持查询以下内容:
|
2540
2594
|
# 1. 企业自动签(本企业授权、集团企业授权、合作企业授权)
|
2541
2595
|
# 2. 批量签署能力
|
data/lib/v20201111/models.rb
CHANGED
@@ -51,12 +51,12 @@ module TencentCloud
|
|
51
51
|
|
52
52
|
attr_accessor :AppId, :ProxyAppId, :ProxyOrganizationId, :ProxyOperator
|
53
53
|
extend Gem::Deprecate
|
54
|
-
deprecate :AppId, :none, 2025,
|
55
|
-
deprecate :AppId=, :none, 2025,
|
56
|
-
deprecate :ProxyAppId, :none, 2025,
|
57
|
-
deprecate :ProxyAppId=, :none, 2025,
|
58
|
-
deprecate :ProxyOperator, :none, 2025,
|
59
|
-
deprecate :ProxyOperator=, :none, 2025,
|
54
|
+
deprecate :AppId, :none, 2025, 8
|
55
|
+
deprecate :AppId=, :none, 2025, 8
|
56
|
+
deprecate :ProxyAppId, :none, 2025, 8
|
57
|
+
deprecate :ProxyAppId=, :none, 2025, 8
|
58
|
+
deprecate :ProxyOperator, :none, 2025, 8
|
59
|
+
deprecate :ProxyOperator=, :none, 2025, 8
|
60
60
|
|
61
61
|
def initialize(appid=nil, proxyappid=nil, proxyorganizationid=nil, proxyoperator=nil)
|
62
62
|
@AppId = appid
|
@@ -693,8 +693,8 @@ module TencentCloud
|
|
693
693
|
|
694
694
|
attr_accessor :UserInfo, :CertInfoCallback, :UserDefineSeal, :SealImgCallback, :CallbackUrl, :VerifyChannels, :LicenseType, :JumpUrl
|
695
695
|
extend Gem::Deprecate
|
696
|
-
deprecate :CallbackUrl, :none, 2025,
|
697
|
-
deprecate :CallbackUrl=, :none, 2025,
|
696
|
+
deprecate :CallbackUrl, :none, 2025, 8
|
697
|
+
deprecate :CallbackUrl=, :none, 2025, 8
|
698
698
|
|
699
699
|
def initialize(userinfo=nil, certinfocallback=nil, userdefineseal=nil, sealimgcallback=nil, callbackurl=nil, verifychannels=nil, licensetype=nil, jumpurl=nil)
|
700
700
|
@UserInfo = userinfo
|
@@ -936,8 +936,8 @@ module TencentCloud
|
|
936
936
|
|
937
937
|
attr_accessor :CallbackUrl, :Token, :CallbackKey, :CallbackToken
|
938
938
|
extend Gem::Deprecate
|
939
|
-
deprecate :Token, :none, 2025,
|
940
|
-
deprecate :Token=, :none, 2025,
|
939
|
+
deprecate :Token, :none, 2025, 8
|
940
|
+
deprecate :Token=, :none, 2025, 8
|
941
941
|
|
942
942
|
def initialize(callbackurl=nil, token=nil, callbackkey=nil, callbacktoken=nil)
|
943
943
|
@CallbackUrl = callbackurl
|
@@ -967,12 +967,12 @@ module TencentCloud
|
|
967
967
|
|
968
968
|
attr_accessor :ApplicationId, :OrganizationId, :OperatorId, :SubOrganizationId
|
969
969
|
extend Gem::Deprecate
|
970
|
-
deprecate :ApplicationId, :none, 2025,
|
971
|
-
deprecate :ApplicationId=, :none, 2025,
|
972
|
-
deprecate :OrganizationId, :none, 2025,
|
973
|
-
deprecate :OrganizationId=, :none, 2025,
|
974
|
-
deprecate :SubOrganizationId, :none, 2025,
|
975
|
-
deprecate :SubOrganizationId=, :none, 2025,
|
970
|
+
deprecate :ApplicationId, :none, 2025, 8
|
971
|
+
deprecate :ApplicationId=, :none, 2025, 8
|
972
|
+
deprecate :OrganizationId, :none, 2025, 8
|
973
|
+
deprecate :OrganizationId=, :none, 2025, 8
|
974
|
+
deprecate :SubOrganizationId, :none, 2025, 8
|
975
|
+
deprecate :SubOrganizationId=, :none, 2025, 8
|
976
976
|
|
977
977
|
def initialize(applicationid=nil, organizationid=nil, operatorid=nil, suborganizationid=nil)
|
978
978
|
@ApplicationId = applicationid
|
@@ -1668,6 +1668,86 @@ module TencentCloud
|
|
1668
1668
|
end
|
1669
1669
|
end
|
1670
1670
|
|
1671
|
+
# CreateBatchContractReviewTask请求参数结构体
|
1672
|
+
class CreateBatchContractReviewTaskRequest < TencentCloud::Common::AbstractModel
|
1673
|
+
# @param Operator: 执行合同审查任务的员工信息。
|
1674
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
1675
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
1676
|
+
# @param ResourceIds: 合同审查的PDF文件资源编号列表,通过[UploadFiles](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口获取PDF文件资源编号。
|
1677
|
+
|
1678
|
+
# 注: `目前,此接口仅支持5个文件发起。每个文件限制在10M以下,文件必须是PDF格式`
|
1679
|
+
# @type ResourceIds: Array
|
1680
|
+
# @param PolicyType: 合同审查的审查立场方。
|
1681
|
+
|
1682
|
+
# 审查立场方如下:
|
1683
|
+
# <ul>
|
1684
|
+
# <li>**0** - 【严格】以保护己方利益为核心,对合同条款进行严格把控,尽可能争取对己方有利的条款,同时对对方提出的不合理条款可进行坚决修改或删除。</li>
|
1685
|
+
# <li>**1** - 【中立】以公平合理为原则,平衡双方的权利义务,既不过分强调己方利益,也不过度让步,力求达成双方均可接受的条款。</li>
|
1686
|
+
# <li>**2** - 【宽松】以促成交易为核心,对合同条款的修改要求较为宽松,倾向于接受对方提出的条款,以尽快达成合作。</li>
|
1687
|
+
# </ul>
|
1688
|
+
# @type PolicyType: Integer
|
1689
|
+
# @param Role: 合同审查中的角色信息,通过明确入参角色的名称和描述,可以提高合同审查的效率和准确性。
|
1690
|
+
# @type Role: :class:`Tencentcloud::Ess.v20201111.models.RiskIdentificationRoleInfo`
|
1691
|
+
# @param ChecklistId: 用户配置的审查清单ID,基于此清单ID批量创建合同审查任务,为32位字符串。
|
1692
|
+
# [点击查看审查清单ID在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/2c6588549e28ca49bd8bb7f4a072b19e.png)
|
1693
|
+
# @type ChecklistId: String
|
1694
|
+
# @param Agent: 代理企业和员工的信息。
|
1695
|
+
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
1696
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1697
|
+
|
1698
|
+
attr_accessor :Operator, :ResourceIds, :PolicyType, :Role, :ChecklistId, :Agent
|
1699
|
+
|
1700
|
+
def initialize(operator=nil, resourceids=nil, policytype=nil, role=nil, checklistid=nil, agent=nil)
|
1701
|
+
@Operator = operator
|
1702
|
+
@ResourceIds = resourceids
|
1703
|
+
@PolicyType = policytype
|
1704
|
+
@Role = role
|
1705
|
+
@ChecklistId = checklistid
|
1706
|
+
@Agent = agent
|
1707
|
+
end
|
1708
|
+
|
1709
|
+
def deserialize(params)
|
1710
|
+
unless params['Operator'].nil?
|
1711
|
+
@Operator = UserInfo.new
|
1712
|
+
@Operator.deserialize(params['Operator'])
|
1713
|
+
end
|
1714
|
+
@ResourceIds = params['ResourceIds']
|
1715
|
+
@PolicyType = params['PolicyType']
|
1716
|
+
unless params['Role'].nil?
|
1717
|
+
@Role = RiskIdentificationRoleInfo.new
|
1718
|
+
@Role.deserialize(params['Role'])
|
1719
|
+
end
|
1720
|
+
@ChecklistId = params['ChecklistId']
|
1721
|
+
unless params['Agent'].nil?
|
1722
|
+
@Agent = Agent.new
|
1723
|
+
@Agent.deserialize(params['Agent'])
|
1724
|
+
end
|
1725
|
+
end
|
1726
|
+
end
|
1727
|
+
|
1728
|
+
# CreateBatchContractReviewTask返回参数结构体
|
1729
|
+
class CreateBatchContractReviewTaskResponse < TencentCloud::Common::AbstractModel
|
1730
|
+
# @param TaskIds: 合同审查的任务ID列表,每个任务ID为32位字符串。
|
1731
|
+
# 建议开发者保存此任务ID,后续[查询合同审查任务取详情](https://qian.tencent.com/developers/companyApis/%E5%90%88%E5%90%8C%E6%99%BA%E8%83%BD%E7%9B%B8%E5%85%B3%E6%8E%A5%E5%8F%A3/DescribeContractReviewTask/)需要此任务ID。
|
1732
|
+
|
1733
|
+
# 注意:`返回的索引和ResourceIds数组一致`
|
1734
|
+
# @type TaskIds: Array
|
1735
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1736
|
+
# @type RequestId: String
|
1737
|
+
|
1738
|
+
attr_accessor :TaskIds, :RequestId
|
1739
|
+
|
1740
|
+
def initialize(taskids=nil, requestid=nil)
|
1741
|
+
@TaskIds = taskids
|
1742
|
+
@RequestId = requestid
|
1743
|
+
end
|
1744
|
+
|
1745
|
+
def deserialize(params)
|
1746
|
+
@TaskIds = params['TaskIds']
|
1747
|
+
@RequestId = params['RequestId']
|
1748
|
+
end
|
1749
|
+
end
|
1750
|
+
|
1671
1751
|
# CreateBatchInformationExtractionTask请求参数结构体
|
1672
1752
|
class CreateBatchInformationExtractionTaskRequest < TencentCloud::Common::AbstractModel
|
1673
1753
|
# @param Operator: 执行合同智能提取的员工信息。
|
@@ -2431,8 +2511,8 @@ module TencentCloud
|
|
2431
2511
|
|
2432
2512
|
attr_accessor :ResourceType, :ResourceName, :ResourceId, :Operator, :Agent, :Organization
|
2433
2513
|
extend Gem::Deprecate
|
2434
|
-
deprecate :Organization, :none, 2025,
|
2435
|
-
deprecate :Organization=, :none, 2025,
|
2514
|
+
deprecate :Organization, :none, 2025, 8
|
2515
|
+
deprecate :Organization=, :none, 2025, 8
|
2436
2516
|
|
2437
2517
|
def initialize(resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, agent=nil, organization=nil)
|
2438
2518
|
@ResourceType = resourcetype
|
@@ -3506,8 +3586,8 @@ module TencentCloud
|
|
3506
3586
|
|
3507
3587
|
attr_accessor :ReportId, :Status, :ReportUrl, :RequestId
|
3508
3588
|
extend Gem::Deprecate
|
3509
|
-
deprecate :ReportUrl, :none, 2025,
|
3510
|
-
deprecate :ReportUrl=, :none, 2025,
|
3589
|
+
deprecate :ReportUrl, :none, 2025, 8
|
3590
|
+
deprecate :ReportUrl=, :none, 2025, 8
|
3511
3591
|
|
3512
3592
|
def initialize(reportid=nil, status=nil, reporturl=nil, requestid=nil)
|
3513
3593
|
@ReportId = reportid
|
@@ -4178,10 +4258,10 @@ module TencentCloud
|
|
4178
4258
|
|
4179
4259
|
attr_accessor :Operator, :FlowName, :Approvers, :FlowDescription, :FlowType, :ClientToken, :DeadLine, :RemindedOn, :UserData, :Unordered, :CustomShowMap, :NeedSignReview, :Agent, :CcInfos, :AutoSignScene, :RelatedFlowId, :CallbackUrl, :FlowDisplayType
|
4180
4260
|
extend Gem::Deprecate
|
4181
|
-
deprecate :RelatedFlowId, :none, 2025,
|
4182
|
-
deprecate :RelatedFlowId=, :none, 2025,
|
4183
|
-
deprecate :CallbackUrl, :none, 2025,
|
4184
|
-
deprecate :CallbackUrl=, :none, 2025,
|
4261
|
+
deprecate :RelatedFlowId, :none, 2025, 8
|
4262
|
+
deprecate :RelatedFlowId=, :none, 2025, 8
|
4263
|
+
deprecate :CallbackUrl, :none, 2025, 8
|
4264
|
+
deprecate :CallbackUrl=, :none, 2025, 8
|
4185
4265
|
|
4186
4266
|
def initialize(operator=nil, flowname=nil, approvers=nil, flowdescription=nil, flowtype=nil, clienttoken=nil, deadline=nil, remindedon=nil, userdata=nil, unordered=nil, customshowmap=nil, needsignreview=nil, agent=nil, ccinfos=nil, autosignscene=nil, relatedflowid=nil, callbackurl=nil, flowdisplaytype=nil)
|
4187
4267
|
@Operator = operator
|
@@ -4390,8 +4470,8 @@ module TencentCloud
|
|
4390
4470
|
|
4391
4471
|
attr_accessor :FlowId, :Operator, :Agent, :FlowApproverInfos, :Organization, :JumpUrl, :UrlType
|
4392
4472
|
extend Gem::Deprecate
|
4393
|
-
deprecate :Organization, :none, 2025,
|
4394
|
-
deprecate :Organization=, :none, 2025,
|
4473
|
+
deprecate :Organization, :none, 2025, 8
|
4474
|
+
deprecate :Organization=, :none, 2025, 8
|
4395
4475
|
|
4396
4476
|
def initialize(flowid=nil, operator=nil, agent=nil, flowapproverinfos=nil, organization=nil, jumpurl=nil, urltype=nil)
|
4397
4477
|
@FlowId = flowid
|
@@ -4808,8 +4888,8 @@ module TencentCloud
|
|
4808
4888
|
|
4809
4889
|
attr_accessor :Operator, :Agent, :Organization
|
4810
4890
|
extend Gem::Deprecate
|
4811
|
-
deprecate :Organization, :none, 2025,
|
4812
|
-
deprecate :Organization=, :none, 2025,
|
4891
|
+
deprecate :Organization, :none, 2025, 8
|
4892
|
+
deprecate :Organization=, :none, 2025, 8
|
4813
4893
|
|
4814
4894
|
def initialize(operator=nil, agent=nil, organization=nil)
|
4815
4895
|
@Operator = operator
|
@@ -5121,10 +5201,10 @@ module TencentCloud
|
|
5121
5201
|
|
5122
5202
|
attr_accessor :Operator, :TemplateId, :FlowName, :MaxFlowNum, :QrEffectiveDay, :FlowEffectiveDay, :Restrictions, :UserData, :CallbackUrl, :Agent, :ApproverRestrictions, :ApproverComponentLimitTypes, :ForbidPersonalMultipleSign, :FlowNameAppendScannerInfo
|
5123
5203
|
extend Gem::Deprecate
|
5124
|
-
deprecate :CallbackUrl, :none, 2025,
|
5125
|
-
deprecate :CallbackUrl=, :none, 2025,
|
5126
|
-
deprecate :ApproverRestrictions, :none, 2025,
|
5127
|
-
deprecate :ApproverRestrictions=, :none, 2025,
|
5204
|
+
deprecate :CallbackUrl, :none, 2025, 8
|
5205
|
+
deprecate :CallbackUrl=, :none, 2025, 8
|
5206
|
+
deprecate :ApproverRestrictions, :none, 2025, 8
|
5207
|
+
deprecate :ApproverRestrictions=, :none, 2025, 8
|
5128
5208
|
|
5129
5209
|
def initialize(operator=nil, templateid=nil, flowname=nil, maxflownum=nil, qreffectiveday=nil, floweffectiveday=nil, restrictions=nil, userdata=nil, callbackurl=nil, agent=nil, approverrestrictions=nil, approvercomponentlimittypes=nil, forbidpersonalmultiplesign=nil, flownameappendscannerinfo=nil)
|
5130
5210
|
@Operator = operator
|
@@ -6010,8 +6090,8 @@ module TencentCloud
|
|
6010
6090
|
|
6011
6091
|
attr_accessor :Operator, :ResourceId, :FlowName, :ResourceType, :Unordered, :Deadline, :UserFlowTypeId, :FlowType, :Approvers, :IntelligentStatus, :Components, :FlowOption, :NeedSignReview, :NeedCreateReview, :UserData, :CcInfos, :FlowId, :Agent, :InitiatorComponents, :FlowDisplayType, :SignComponentConfig
|
6012
6092
|
extend Gem::Deprecate
|
6013
|
-
deprecate :SignComponentConfig, :none, 2025,
|
6014
|
-
deprecate :SignComponentConfig=, :none, 2025,
|
6093
|
+
deprecate :SignComponentConfig, :none, 2025, 8
|
6094
|
+
deprecate :SignComponentConfig=, :none, 2025, 8
|
6015
6095
|
|
6016
6096
|
def initialize(operator=nil, resourceid=nil, flowname=nil, resourcetype=nil, unordered=nil, deadline=nil, userflowtypeid=nil, flowtype=nil, approvers=nil, intelligentstatus=nil, components=nil, flowoption=nil, needsignreview=nil, needcreatereview=nil, userdata=nil, ccinfos=nil, flowid=nil, agent=nil, initiatorcomponents=nil, flowdisplaytype=nil, signcomponentconfig=nil)
|
6017
6097
|
@Operator = operator
|
@@ -6180,8 +6260,8 @@ module TencentCloud
|
|
6180
6260
|
|
6181
6261
|
attr_accessor :UserName, :IdCardNumber, :SealName, :Operator, :IdCardType, :SealImage, :SealImageCompress, :Mobile, :EnableAutoSign, :SealColor, :ProcessSeal, :FileId, :Agent, :LicenseType, :SceneKey
|
6182
6262
|
extend Gem::Deprecate
|
6183
|
-
deprecate :SealImage, :none, 2025,
|
6184
|
-
deprecate :SealImage=, :none, 2025,
|
6263
|
+
deprecate :SealImage, :none, 2025, 8
|
6264
|
+
deprecate :SealImage=, :none, 2025, 8
|
6185
6265
|
|
6186
6266
|
def initialize(username=nil, idcardnumber=nil, sealname=nil, operator=nil, idcardtype=nil, sealimage=nil, sealimagecompress=nil, mobile=nil, enableautosign=nil, sealcolor=nil, processseal=nil, fileid=nil, agent=nil, licensetype=nil, scenekey=nil)
|
6187
6267
|
@UserName = username
|
@@ -8178,6 +8258,117 @@ module TencentCloud
|
|
8178
8258
|
end
|
8179
8259
|
end
|
8180
8260
|
|
8261
|
+
# DescribeContractReviewTask请求参数结构体
|
8262
|
+
class DescribeContractReviewTaskRequest < TencentCloud::Common::AbstractModel
|
8263
|
+
# @param Operator: 执行本接口操作的员工信息。
|
8264
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
8265
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
8266
|
+
# @param TaskId: 合同审查任务ID,该参数通过调用接口[批量创建合同审查任务](https://qian.tencent.com/developers/companyApis/%E5%90%88%E5%90%8C%E6%99%BA%E8%83%BD%E7%9B%B8%E5%85%B3%E6%8E%A5%E5%8F%A3/CreateBatchContractReviewTask)获取。
|
8267
|
+
# @type TaskId: String
|
8268
|
+
# @param Agent: 代理企业和员工的信息。
|
8269
|
+
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
8270
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
8271
|
+
|
8272
|
+
attr_accessor :Operator, :TaskId, :Agent
|
8273
|
+
|
8274
|
+
def initialize(operator=nil, taskid=nil, agent=nil)
|
8275
|
+
@Operator = operator
|
8276
|
+
@TaskId = taskid
|
8277
|
+
@Agent = agent
|
8278
|
+
end
|
8279
|
+
|
8280
|
+
def deserialize(params)
|
8281
|
+
unless params['Operator'].nil?
|
8282
|
+
@Operator = UserInfo.new
|
8283
|
+
@Operator.deserialize(params['Operator'])
|
8284
|
+
end
|
8285
|
+
@TaskId = params['TaskId']
|
8286
|
+
unless params['Agent'].nil?
|
8287
|
+
@Agent = Agent.new
|
8288
|
+
@Agent.deserialize(params['Agent'])
|
8289
|
+
end
|
8290
|
+
end
|
8291
|
+
end
|
8292
|
+
|
8293
|
+
# DescribeContractReviewTask返回参数结构体
|
8294
|
+
class DescribeContractReviewTaskResponse < TencentCloud::Common::AbstractModel
|
8295
|
+
# @param ChecklistId: 用于审查任务的审查清单ID。
|
8296
|
+
# @type ChecklistId: String
|
8297
|
+
# @param CreatedOn: 合同审查任务创建时间。
|
8298
|
+
# @type CreatedOn: Integer
|
8299
|
+
# @param FinishedOn: 合同审查任务完成时间。
|
8300
|
+
# @type FinishedOn: Integer
|
8301
|
+
# @param PolicyType: 合同审查的审查立场方。
|
8302
|
+
|
8303
|
+
# 审查立场方如下:
|
8304
|
+
# <ul>
|
8305
|
+
# <li>**0** - 【严格】以保护己方利益为核心,对合同条款进行严格把控,尽可能争取对己方有利的条款,同时对对方提出的不合理条款可进行坚决修改或删除。</li>
|
8306
|
+
# <li>**1** - 【中立】以公平合理为原则,平衡双方的权利义务,既不过分强调己方利益,也不过度让步,力求达成双方均可接受的条款。</li>
|
8307
|
+
# <li>**2** - 【宽松】以促成交易为核心,对合同条款的修改要求较为宽松,倾向于接受对方提出的条款,以尽快达成合作。</li>
|
8308
|
+
# </ul>
|
8309
|
+
# @type PolicyType: Integer
|
8310
|
+
# @param ResourceId: 合同审查的PDF文件资源ID。
|
8311
|
+
# @type ResourceId: String
|
8312
|
+
# @param Risks: 合同审查识别出的PDF文件风险信息,如果是空数组表示无风险。
|
8313
|
+
|
8314
|
+
# 注意:`审查结果由AI生成,仅供参考。请结合相关法律法规和公司制度要求综合判断。`
|
8315
|
+
# @type Risks: Array
|
8316
|
+
# @param Role: 合同审查中的角色信息。
|
8317
|
+
# @type Role: :class:`Tencentcloud::Ess.v20201111.models.RiskIdentificationRoleInfo`
|
8318
|
+
# @param Status: 合同审查任务状态。
|
8319
|
+
# 状态如下:
|
8320
|
+
# <ul>
|
8321
|
+
# <li>**1** - 合同审查任务创建成功</li>
|
8322
|
+
# <li>**2** - 合同审查任务排队中</li>
|
8323
|
+
# <li>**3** - 合同审查任务执行中</li>
|
8324
|
+
# <li>**4** - 合同审查任务执行成功</li>
|
8325
|
+
# <li>**4** - 合同审查任务执行失败</li>
|
8326
|
+
# </ul>
|
8327
|
+
# @type Status: Integer
|
8328
|
+
# @param TaskId: 合同审查任务ID
|
8329
|
+
# @type TaskId: String
|
8330
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8331
|
+
# @type RequestId: String
|
8332
|
+
|
8333
|
+
attr_accessor :ChecklistId, :CreatedOn, :FinishedOn, :PolicyType, :ResourceId, :Risks, :Role, :Status, :TaskId, :RequestId
|
8334
|
+
|
8335
|
+
def initialize(checklistid=nil, createdon=nil, finishedon=nil, policytype=nil, resourceid=nil, risks=nil, role=nil, status=nil, taskid=nil, requestid=nil)
|
8336
|
+
@ChecklistId = checklistid
|
8337
|
+
@CreatedOn = createdon
|
8338
|
+
@FinishedOn = finishedon
|
8339
|
+
@PolicyType = policytype
|
8340
|
+
@ResourceId = resourceid
|
8341
|
+
@Risks = risks
|
8342
|
+
@Role = role
|
8343
|
+
@Status = status
|
8344
|
+
@TaskId = taskid
|
8345
|
+
@RequestId = requestid
|
8346
|
+
end
|
8347
|
+
|
8348
|
+
def deserialize(params)
|
8349
|
+
@ChecklistId = params['ChecklistId']
|
8350
|
+
@CreatedOn = params['CreatedOn']
|
8351
|
+
@FinishedOn = params['FinishedOn']
|
8352
|
+
@PolicyType = params['PolicyType']
|
8353
|
+
@ResourceId = params['ResourceId']
|
8354
|
+
unless params['Risks'].nil?
|
8355
|
+
@Risks = []
|
8356
|
+
params['Risks'].each do |i|
|
8357
|
+
outputrisk_tmp = OutputRisk.new
|
8358
|
+
outputrisk_tmp.deserialize(i)
|
8359
|
+
@Risks << outputrisk_tmp
|
8360
|
+
end
|
8361
|
+
end
|
8362
|
+
unless params['Role'].nil?
|
8363
|
+
@Role = RiskIdentificationRoleInfo.new
|
8364
|
+
@Role.deserialize(params['Role'])
|
8365
|
+
end
|
8366
|
+
@Status = params['Status']
|
8367
|
+
@TaskId = params['TaskId']
|
8368
|
+
@RequestId = params['RequestId']
|
8369
|
+
end
|
8370
|
+
end
|
8371
|
+
|
8181
8372
|
# DescribeExtendedServiceAuthDetail请求参数结构体
|
8182
8373
|
class DescribeExtendedServiceAuthDetailRequest < TencentCloud::Common::AbstractModel
|
8183
8374
|
# @param Operator: 执行本接口操作的员工信息。
|
@@ -8421,10 +8612,10 @@ module TencentCloud
|
|
8421
8612
|
|
8422
8613
|
attr_accessor :Operator, :BusinessType, :BusinessIds, :FileName, :FileType, :Offset, :Limit, :UrlTtl, :CcToken, :Scene, :Agent
|
8423
8614
|
extend Gem::Deprecate
|
8424
|
-
deprecate :CcToken, :none, 2025,
|
8425
|
-
deprecate :CcToken=, :none, 2025,
|
8426
|
-
deprecate :Scene, :none, 2025,
|
8427
|
-
deprecate :Scene=, :none, 2025,
|
8615
|
+
deprecate :CcToken, :none, 2025, 8
|
8616
|
+
deprecate :CcToken=, :none, 2025, 8
|
8617
|
+
deprecate :Scene, :none, 2025, 8
|
8618
|
+
deprecate :Scene=, :none, 2025, 8
|
8428
8619
|
|
8429
8620
|
def initialize(operator=nil, businesstype=nil, businessids=nil, filename=nil, filetype=nil, offset=nil, limit=nil, urlttl=nil, cctoken=nil, scene=nil, agent=nil)
|
8430
8621
|
@Operator = operator
|
@@ -8805,12 +8996,12 @@ module TencentCloud
|
|
8805
8996
|
|
8806
8997
|
attr_accessor :Operator, :Agent, :ContentType, :Filters, :Offset, :Limit, :ApplicationId, :IsChannel, :Organization, :GenerateSource, :WithPreviewUrl
|
8807
8998
|
extend Gem::Deprecate
|
8808
|
-
deprecate :IsChannel, :none, 2025,
|
8809
|
-
deprecate :IsChannel=, :none, 2025,
|
8810
|
-
deprecate :Organization, :none, 2025,
|
8811
|
-
deprecate :Organization=, :none, 2025,
|
8812
|
-
deprecate :GenerateSource, :none, 2025,
|
8813
|
-
deprecate :GenerateSource=, :none, 2025,
|
8999
|
+
deprecate :IsChannel, :none, 2025, 8
|
9000
|
+
deprecate :IsChannel=, :none, 2025, 8
|
9001
|
+
deprecate :Organization, :none, 2025, 8
|
9002
|
+
deprecate :Organization=, :none, 2025, 8
|
9003
|
+
deprecate :GenerateSource, :none, 2025, 8
|
9004
|
+
deprecate :GenerateSource=, :none, 2025, 8
|
8814
9005
|
|
8815
9006
|
def initialize(operator=nil, agent=nil, contenttype=nil, filters=nil, offset=nil, limit=nil, applicationid=nil, ischannel=nil, organization=nil, generatesource=nil, withpreviewurl=nil)
|
8816
9007
|
@Operator = operator
|
@@ -9380,8 +9571,8 @@ module TencentCloud
|
|
9380
9571
|
|
9381
9572
|
attr_accessor :Total, :JoinedTotal, :ActivedTotal, :ExportUrl, :List, :ActivatedTotal, :RequestId
|
9382
9573
|
extend Gem::Deprecate
|
9383
|
-
deprecate :ActivedTotal, :none, 2025,
|
9384
|
-
deprecate :ActivedTotal=, :none, 2025,
|
9574
|
+
deprecate :ActivedTotal, :none, 2025, 8
|
9575
|
+
deprecate :ActivedTotal=, :none, 2025, 8
|
9385
9576
|
|
9386
9577
|
def initialize(total=nil, joinedtotal=nil, activedtotal=nil, exporturl=nil, list=nil, activatedtotal=nil, requestid=nil)
|
9387
9578
|
@Total = total
|
@@ -10609,8 +10800,8 @@ module TencentCloud
|
|
10609
10800
|
|
10610
10801
|
attr_accessor :ApproveMessage, :ApproveName, :ApproveStatus, :ReceiptId, :CustomUserId, :Mobile, :SignOrder, :ApproveTime, :ApproveType, :ApproverSource, :CustomApproverTag, :OrganizationId, :OrganizationName, :SignId, :ApproverRoleName, :RecipientId
|
10611
10802
|
extend Gem::Deprecate
|
10612
|
-
deprecate :ReceiptId, :none, 2025,
|
10613
|
-
deprecate :ReceiptId=, :none, 2025,
|
10803
|
+
deprecate :ReceiptId, :none, 2025, 8
|
10804
|
+
deprecate :ReceiptId=, :none, 2025, 8
|
10614
10805
|
|
10615
10806
|
def initialize(approvemessage=nil, approvename=nil, approvestatus=nil, receiptid=nil, customuserid=nil, mobile=nil, signorder=nil, approvetime=nil, approvetype=nil, approversource=nil, customapprovertag=nil, organizationid=nil, organizationname=nil, signid=nil, approverrolename=nil, recipientid=nil)
|
10616
10807
|
@ApproveMessage = approvemessage
|
@@ -10997,8 +11188,8 @@ module TencentCloud
|
|
10997
11188
|
|
10998
11189
|
attr_accessor :ApproverType, :OrganizationName, :ApproverName, :ApproverMobile, :ApproverIdCardType, :ApproverIdCardNumber, :RecipientId, :VerifyChannel, :NotifyType, :IsFullText, :PreReadTime, :UserId, :Required, :ApproverSource, :CustomApproverTag, :RegisterInfo, :ApproverOption, :JumpUrl, :SignId, :ApproverNeedSignReview, :SignComponents, :Components, :ComponentLimitType, :ApproverVerifyTypes, :ApproverSignTypes, :SignTypeSelector, :Deadline, :Intention, :SignEndpoints
|
10999
11190
|
extend Gem::Deprecate
|
11000
|
-
deprecate :JumpUrl, :none, 2025,
|
11001
|
-
deprecate :JumpUrl=, :none, 2025,
|
11191
|
+
deprecate :JumpUrl, :none, 2025, 8
|
11192
|
+
deprecate :JumpUrl=, :none, 2025, 8
|
11002
11193
|
|
11003
11194
|
def initialize(approvertype=nil, organizationname=nil, approvername=nil, approvermobile=nil, approveridcardtype=nil, approveridcardnumber=nil, recipientid=nil, verifychannel=nil, notifytype=nil, isfulltext=nil, prereadtime=nil, userid=nil, required=nil, approversource=nil, customapprovertag=nil, registerinfo=nil, approveroption=nil, jumpurl=nil, signid=nil, approverneedsignreview=nil, signcomponents=nil, components=nil, componentlimittype=nil, approververifytypes=nil, approversigntypes=nil, signtypeselector=nil, deadline=nil, intention=nil, signendpoints=nil)
|
11004
11195
|
@ApproverType = approvertype
|
@@ -11313,8 +11504,8 @@ module TencentCloud
|
|
11313
11504
|
|
11314
11505
|
attr_accessor :FlowName, :Approvers, :FileIds, :TemplateId, :FlowType, :FlowDescription, :Deadline, :CallbackUrl, :UserData, :Unordered, :Components, :NeedSignReview, :AutoSignScene, :FlowDisplayType
|
11315
11506
|
extend Gem::Deprecate
|
11316
|
-
deprecate :CallbackUrl, :none, 2025,
|
11317
|
-
deprecate :CallbackUrl=, :none, 2025,
|
11507
|
+
deprecate :CallbackUrl, :none, 2025, 8
|
11508
|
+
deprecate :CallbackUrl=, :none, 2025, 8
|
11318
11509
|
|
11319
11510
|
def initialize(flowname=nil, approvers=nil, fileids=nil, templateid=nil, flowtype=nil, flowdescription=nil, deadline=nil, callbackurl=nil, userdata=nil, unordered=nil, components=nil, needsignreview=nil, autosignscene=nil, flowdisplaytype=nil)
|
11320
11511
|
@FlowName = flowname
|
@@ -11986,8 +12177,8 @@ module TencentCloud
|
|
11986
12177
|
|
11987
12178
|
attr_accessor :TaskId, :Operator, :Agent, :Organization
|
11988
12179
|
extend Gem::Deprecate
|
11989
|
-
deprecate :Organization, :none, 2025,
|
11990
|
-
deprecate :Organization=, :none, 2025,
|
12180
|
+
deprecate :Organization, :none, 2025, 8
|
12181
|
+
deprecate :Organization=, :none, 2025, 8
|
11991
12182
|
|
11992
12183
|
def initialize(taskid=nil, operator=nil, agent=nil, organization=nil)
|
11993
12184
|
@TaskId = taskid
|
@@ -13349,16 +13540,16 @@ module TencentCloud
|
|
13349
13540
|
|
13350
13541
|
attr_accessor :OrganizationId, :Channel, :OrganizationOpenId, :ClientIp, :ProxyIp
|
13351
13542
|
extend Gem::Deprecate
|
13352
|
-
deprecate :OrganizationId, :none, 2025,
|
13353
|
-
deprecate :OrganizationId=, :none, 2025,
|
13354
|
-
deprecate :Channel, :none, 2025,
|
13355
|
-
deprecate :Channel=, :none, 2025,
|
13356
|
-
deprecate :OrganizationOpenId, :none, 2025,
|
13357
|
-
deprecate :OrganizationOpenId=, :none, 2025,
|
13358
|
-
deprecate :ClientIp, :none, 2025,
|
13359
|
-
deprecate :ClientIp=, :none, 2025,
|
13360
|
-
deprecate :ProxyIp, :none, 2025,
|
13361
|
-
deprecate :ProxyIp=, :none, 2025,
|
13543
|
+
deprecate :OrganizationId, :none, 2025, 8
|
13544
|
+
deprecate :OrganizationId=, :none, 2025, 8
|
13545
|
+
deprecate :Channel, :none, 2025, 8
|
13546
|
+
deprecate :Channel=, :none, 2025, 8
|
13547
|
+
deprecate :OrganizationOpenId, :none, 2025, 8
|
13548
|
+
deprecate :OrganizationOpenId=, :none, 2025, 8
|
13549
|
+
deprecate :ClientIp, :none, 2025, 8
|
13550
|
+
deprecate :ClientIp=, :none, 2025, 8
|
13551
|
+
deprecate :ProxyIp, :none, 2025, 8
|
13552
|
+
deprecate :ProxyIp=, :none, 2025, 8
|
13362
13553
|
|
13363
13554
|
def initialize(organizationid=nil, channel=nil, organizationopenid=nil, clientip=nil, proxyip=nil)
|
13364
13555
|
@OrganizationId = organizationid
|
@@ -13377,6 +13568,56 @@ module TencentCloud
|
|
13377
13568
|
end
|
13378
13569
|
end
|
13379
13570
|
|
13571
|
+
# 合同审查任务识别出的风险结果信息
|
13572
|
+
class OutputRisk < TencentCloud::Common::AbstractModel
|
13573
|
+
# @param RiskId: 合同审查风险结果ID
|
13574
|
+
# @type RiskId: String
|
13575
|
+
# @param RiskName: 风险名称
|
13576
|
+
# @type RiskName: String
|
13577
|
+
# @param RiskDescription: 风险描述
|
13578
|
+
# @type RiskDescription: String
|
13579
|
+
# @param RiskLevel: 风险等级。
|
13580
|
+
|
13581
|
+
# 等级描述如下:
|
13582
|
+
# <ul>
|
13583
|
+
# <li>**HIGH** - 高风险</li>
|
13584
|
+
# <li>**NORMAL** - 风险</li>
|
13585
|
+
# </ul>
|
13586
|
+
# @type RiskLevel: String
|
13587
|
+
# @param RiskAdvice: 风险建议
|
13588
|
+
# @type RiskAdvice: String
|
13589
|
+
# @param RiskPresentation: 风险评估
|
13590
|
+
# @type RiskPresentation: Array
|
13591
|
+
# @param Content: PDF风险原文内容
|
13592
|
+
# @type Content: String
|
13593
|
+
# @param RiskBasis: 审查依据
|
13594
|
+
# @type RiskBasis: String
|
13595
|
+
|
13596
|
+
attr_accessor :RiskId, :RiskName, :RiskDescription, :RiskLevel, :RiskAdvice, :RiskPresentation, :Content, :RiskBasis
|
13597
|
+
|
13598
|
+
def initialize(riskid=nil, riskname=nil, riskdescription=nil, risklevel=nil, riskadvice=nil, riskpresentation=nil, content=nil, riskbasis=nil)
|
13599
|
+
@RiskId = riskid
|
13600
|
+
@RiskName = riskname
|
13601
|
+
@RiskDescription = riskdescription
|
13602
|
+
@RiskLevel = risklevel
|
13603
|
+
@RiskAdvice = riskadvice
|
13604
|
+
@RiskPresentation = riskpresentation
|
13605
|
+
@Content = content
|
13606
|
+
@RiskBasis = riskbasis
|
13607
|
+
end
|
13608
|
+
|
13609
|
+
def deserialize(params)
|
13610
|
+
@RiskId = params['RiskId']
|
13611
|
+
@RiskName = params['RiskName']
|
13612
|
+
@RiskDescription = params['RiskDescription']
|
13613
|
+
@RiskLevel = params['RiskLevel']
|
13614
|
+
@RiskAdvice = params['RiskAdvice']
|
13615
|
+
@RiskPresentation = params['RiskPresentation']
|
13616
|
+
@Content = params['Content']
|
13617
|
+
@RiskBasis = params['RiskBasis']
|
13618
|
+
end
|
13619
|
+
end
|
13620
|
+
|
13380
13621
|
# 合同文件验签单个结果结构体
|
13381
13622
|
class PdfVerifyResult < TencentCloud::Common::AbstractModel
|
13382
13623
|
# @param VerifyResult: 验签结果。0-签名域未签名;1-验签成功; 3-验签失败;4-未找到签名域:文件内没有签名域;5-签名值格式不正确。
|
@@ -13745,10 +13986,10 @@ module TencentCloud
|
|
13745
13986
|
|
13746
13987
|
attr_accessor :LegalName, :Uscc, :UnifiedSocialCreditCode, :AuthorizationTypes, :AuthorizationType
|
13747
13988
|
extend Gem::Deprecate
|
13748
|
-
deprecate :Uscc, :none, 2025,
|
13749
|
-
deprecate :Uscc=, :none, 2025,
|
13750
|
-
deprecate :AuthorizationTypes, :none, 2025,
|
13751
|
-
deprecate :AuthorizationTypes=, :none, 2025,
|
13989
|
+
deprecate :Uscc, :none, 2025, 8
|
13990
|
+
deprecate :Uscc=, :none, 2025, 8
|
13991
|
+
deprecate :AuthorizationTypes, :none, 2025, 8
|
13992
|
+
deprecate :AuthorizationTypes=, :none, 2025, 8
|
13752
13993
|
|
13753
13994
|
def initialize(legalname=nil, uscc=nil, unifiedsocialcreditcode=nil, authorizationtypes=nil, authorizationtype=nil)
|
13754
13995
|
@LegalName = legalname
|
@@ -13882,8 +14123,8 @@ module TencentCloud
|
|
13882
14123
|
|
13883
14124
|
attr_accessor :Name, :Mobile, :RelievedApproverReceiptId, :ApproverType, :ApproverSignComponentType, :ApproverSignRole, :ApproverSignSealId, :RelievedApproverRecipientId
|
13884
14125
|
extend Gem::Deprecate
|
13885
|
-
deprecate :RelievedApproverReceiptId, :none, 2025,
|
13886
|
-
deprecate :RelievedApproverReceiptId=, :none, 2025,
|
14126
|
+
deprecate :RelievedApproverReceiptId, :none, 2025, 8
|
14127
|
+
deprecate :RelievedApproverReceiptId=, :none, 2025, 8
|
13887
14128
|
|
13888
14129
|
def initialize(name=nil, mobile=nil, relievedapproverreceiptid=nil, approvertype=nil, approversigncomponenttype=nil, approversignrole=nil, approversignsealid=nil, relievedapproverrecipientid=nil)
|
13889
14130
|
@Name = name
|
@@ -14050,6 +14291,30 @@ module TencentCloud
|
|
14050
14291
|
end
|
14051
14292
|
end
|
14052
14293
|
|
14294
|
+
# 用于定义合同风险识别角色信息。
|
14295
|
+
class RiskIdentificationRoleInfo < TencentCloud::Common::AbstractModel
|
14296
|
+
# @param Name: 风险识别角色的名称。用于唯一标识和区分不同的风险识别角色。
|
14297
|
+
|
14298
|
+
# 注意:`最大长度应不超过200个字符`
|
14299
|
+
# @type Name: String
|
14300
|
+
# @param Description: 风险识别角色的详细说明。
|
14301
|
+
|
14302
|
+
# 注意: `最大长度应不超过500个字符`
|
14303
|
+
# @type Description: String
|
14304
|
+
|
14305
|
+
attr_accessor :Name, :Description
|
14306
|
+
|
14307
|
+
def initialize(name=nil, description=nil)
|
14308
|
+
@Name = name
|
14309
|
+
@Description = description
|
14310
|
+
end
|
14311
|
+
|
14312
|
+
def deserialize(params)
|
14313
|
+
@Name = params['Name']
|
14314
|
+
@Description = params['Description']
|
14315
|
+
end
|
14316
|
+
end
|
14317
|
+
|
14053
14318
|
# 模板中指定的印章信息
|
14054
14319
|
class SealInfo < TencentCloud::Common::AbstractModel
|
14055
14320
|
# @param SealId: 印章ID
|
@@ -14283,8 +14548,8 @@ module TencentCloud
|
|
14283
14548
|
|
14284
14549
|
attr_accessor :Operator, :FlowId, :ClientToken, :Agent, :CcNotifyType
|
14285
14550
|
extend Gem::Deprecate
|
14286
|
-
deprecate :ClientToken, :none, 2025,
|
14287
|
-
deprecate :ClientToken=, :none, 2025,
|
14551
|
+
deprecate :ClientToken, :none, 2025, 8
|
14552
|
+
deprecate :ClientToken=, :none, 2025, 8
|
14288
14553
|
|
14289
14554
|
def initialize(operator=nil, flowid=nil, clienttoken=nil, agent=nil, ccnotifytype=nil)
|
14290
14555
|
@Operator = operator
|
@@ -14590,8 +14855,8 @@ module TencentCloud
|
|
14590
14855
|
|
14591
14856
|
attr_accessor :TemplateId, :TemplateName, :Recipients, :Components, :SignComponents, :Description, :DocumentResourceIds, :FileInfos, :AttachmentResourceIds, :SignOrder, :Status, :Creator, :CreatedOn, :Promoter, :TemplateType, :Available, :OrganizationId, :CreatorId, :PreviewUrl, :UserFlowType, :TemplateVersion, :Published, :ShareTemplateId, :TemplateSeals, :Seals
|
14592
14857
|
extend Gem::Deprecate
|
14593
|
-
deprecate :Seals, :none, 2025,
|
14594
|
-
deprecate :Seals=, :none, 2025,
|
14858
|
+
deprecate :Seals, :none, 2025, 8
|
14859
|
+
deprecate :Seals=, :none, 2025, 8
|
14595
14860
|
|
14596
14861
|
def initialize(templateid=nil, templatename=nil, recipients=nil, components=nil, signcomponents=nil, description=nil, documentresourceids=nil, fileinfos=nil, attachmentresourceids=nil, signorder=nil, status=nil, creator=nil, createdon=nil, promoter=nil, templatetype=nil, available=nil, organizationid=nil, creatorid=nil, previewurl=nil, userflowtype=nil, templateversion=nil, published=nil, sharetemplateid=nil, templateseals=nil, seals=nil)
|
14597
14862
|
@TemplateId = templateid
|
@@ -14945,8 +15210,8 @@ module TencentCloud
|
|
14945
15210
|
|
14946
15211
|
attr_accessor :BusinessType, :Caller, :FileInfos, :FileType, :CoverRect, :CustomIds, :FileUrls, :Agent
|
14947
15212
|
extend Gem::Deprecate
|
14948
|
-
deprecate :FileUrls, :none, 2025,
|
14949
|
-
deprecate :FileUrls=, :none, 2025,
|
15213
|
+
deprecate :FileUrls, :none, 2025, 8
|
15214
|
+
deprecate :FileUrls=, :none, 2025, 8
|
14950
15215
|
|
14951
15216
|
def initialize(businesstype=nil, caller=nil, fileinfos=nil, filetype=nil, coverrect=nil, customids=nil, fileurls=nil, agent=nil)
|
14952
15217
|
@BusinessType = businesstype
|
@@ -15049,14 +15314,14 @@ module TencentCloud
|
|
15049
15314
|
|
15050
15315
|
attr_accessor :UserId, :Channel, :OpenId, :ClientIp, :ProxyIp
|
15051
15316
|
extend Gem::Deprecate
|
15052
|
-
deprecate :Channel, :none, 2025,
|
15053
|
-
deprecate :Channel=, :none, 2025,
|
15054
|
-
deprecate :OpenId, :none, 2025,
|
15055
|
-
deprecate :OpenId=, :none, 2025,
|
15056
|
-
deprecate :ClientIp, :none, 2025,
|
15057
|
-
deprecate :ClientIp=, :none, 2025,
|
15058
|
-
deprecate :ProxyIp, :none, 2025,
|
15059
|
-
deprecate :ProxyIp=, :none, 2025,
|
15317
|
+
deprecate :Channel, :none, 2025, 8
|
15318
|
+
deprecate :Channel=, :none, 2025, 8
|
15319
|
+
deprecate :OpenId, :none, 2025, 8
|
15320
|
+
deprecate :OpenId=, :none, 2025, 8
|
15321
|
+
deprecate :ClientIp, :none, 2025, 8
|
15322
|
+
deprecate :ClientIp=, :none, 2025, 8
|
15323
|
+
deprecate :ProxyIp, :none, 2025, 8
|
15324
|
+
deprecate :ProxyIp=, :none, 2025, 8
|
15060
15325
|
|
15061
15326
|
def initialize(userid=nil, channel=nil, openid=nil, clientip=nil, proxyip=nil)
|
15062
15327
|
@UserId = userid
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ess
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1115
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|