tencentcloud-sdk-ess 3.0.1165 → 3.0.1171
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 +64 -1
- data/lib/v20201111/models.rb +361 -14
- 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: ca069a5c2903e3a720e1c5bfd3ae2d1595328ac4
|
|
4
|
+
data.tar.gz: 80727deaf73d406e4048bcf8226b2db618539326
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 292b5a25194ce3e98c7c7d9d234513c53cd9fe3527af6b4616e07bd18a01c145c2f6dced66b7a595bfdf809b17317bfeb3bd0bc41a400f621bd85980b165e66a
|
|
7
|
+
data.tar.gz: da8cf649fc129e89cd463d742b09703ab06036dd35b76b6fd7c4fc61f9f2887e3a8e67c4fcfa19be67a33582efe01aa49c05c3cd593835d9c583d63c75809ab6
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1171
|
data/lib/v20201111/client.rb
CHANGED
|
@@ -180,6 +180,69 @@ module TencentCloud
|
|
|
180
180
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
181
181
|
end
|
|
182
182
|
|
|
183
|
+
# 本接口(CreateBatchAdminChangeInvitations)用于批量创建企业超管信息变更。
|
|
184
|
+
# 该接口为提交任务接口,如果需要获得链接, 需要使用接口创建超管变更链接(CreateBatchAdminChangeInvitationsUrl)。
|
|
185
|
+
|
|
186
|
+
# 批量创建链接有以下限制:
|
|
187
|
+
|
|
188
|
+
# 1. 单次最多创建10个企业的超管变更。
|
|
189
|
+
# 2. 同一批创建的企业不能重复,唯一值为企业 Id。
|
|
190
|
+
|
|
191
|
+
# 注意:
|
|
192
|
+
# 此接口创建的超管变更企业,必须是以下两种企业。
|
|
193
|
+
# 1. 集团子企业,调用方必须是主企业。
|
|
194
|
+
# 2. 代认证企业,此企业是由[创建企业认证链接](https://qian.tencent.com/developers/companyApis/organizations/CreateOrganizationAuthUrl)创建的
|
|
195
|
+
|
|
196
|
+
# @param request: Request instance for CreateBatchAdminChangeInvitations.
|
|
197
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::CreateBatchAdminChangeInvitationsRequest`
|
|
198
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::CreateBatchAdminChangeInvitationsResponse`
|
|
199
|
+
def CreateBatchAdminChangeInvitations(request)
|
|
200
|
+
body = send_request('CreateBatchAdminChangeInvitations', request.serialize)
|
|
201
|
+
response = JSON.parse(body)
|
|
202
|
+
if response['Response'].key?('Error') == false
|
|
203
|
+
model = CreateBatchAdminChangeInvitationsResponse.new
|
|
204
|
+
model.deserialize(response['Response'])
|
|
205
|
+
model
|
|
206
|
+
else
|
|
207
|
+
code = response['Response']['Error']['Code']
|
|
208
|
+
message = response['Response']['Error']['Message']
|
|
209
|
+
reqid = response['Response']['RequestId']
|
|
210
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
211
|
+
end
|
|
212
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
213
|
+
raise e
|
|
214
|
+
rescue StandardError => e
|
|
215
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
216
|
+
end
|
|
217
|
+
|
|
218
|
+
# 此接口用于获取企业批量变更超管链接,包含多条超管变更任务。
|
|
219
|
+
# 一次性最多获取 500 条任务。
|
|
220
|
+
|
|
221
|
+
# 前提条件:已调用 [CreateBatchAdminChangeInvitations生成批量变更超管任务接口](https://qian.tencent.com/developers/companyApis/organizations/CreateBatchAdminChangeInvitations) 确保任务提交。
|
|
222
|
+
# 此链接包含多条超管变更流程,使用该链接可以批量的对企业进行超管变更。
|
|
223
|
+
|
|
224
|
+
# @param request: Request instance for CreateBatchAdminChangeInvitationsUrl.
|
|
225
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::CreateBatchAdminChangeInvitationsUrlRequest`
|
|
226
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::CreateBatchAdminChangeInvitationsUrlResponse`
|
|
227
|
+
def CreateBatchAdminChangeInvitationsUrl(request)
|
|
228
|
+
body = send_request('CreateBatchAdminChangeInvitationsUrl', request.serialize)
|
|
229
|
+
response = JSON.parse(body)
|
|
230
|
+
if response['Response'].key?('Error') == false
|
|
231
|
+
model = CreateBatchAdminChangeInvitationsUrlResponse.new
|
|
232
|
+
model.deserialize(response['Response'])
|
|
233
|
+
model
|
|
234
|
+
else
|
|
235
|
+
code = response['Response']['Error']['Code']
|
|
236
|
+
message = response['Response']['Error']['Message']
|
|
237
|
+
reqid = response['Response']['RequestId']
|
|
238
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
239
|
+
end
|
|
240
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
241
|
+
raise e
|
|
242
|
+
rescue StandardError => e
|
|
243
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
244
|
+
end
|
|
245
|
+
|
|
183
246
|
# 指定需要批量撤回的签署流程Id,以获取批量撤销链接。
|
|
184
247
|
# 客户需指定要撤回的签署流程Id,最多可指定100个,超过100则不处理。
|
|
185
248
|
# 接口调用成功后,将返回批量撤回合同的链接。通过点击链接,可跳转至电子签小程序完成批量撤回操作。
|
|
@@ -424,7 +487,7 @@ module TencentCloud
|
|
|
424
487
|
# 注意事项:
|
|
425
488
|
# - 使用此接口生成链接,需要贵企业先开通 <font color="red">个人签署方仅校验手机号 </font>功能。您可以在 <b>【腾讯电子签网页端控制台】->【更多】->【高级签署能力】</b>中找到该功能。
|
|
426
489
|
# - 生成批量签署链接时,<font color="red">合同目标参与方的状态必须为<b>待签署</b>状态</font>。签署人点击链接后需要输入短信验证码才能查看合同内容。
|
|
427
|
-
# -
|
|
490
|
+
# - 企业员工批量签署链接:需要传入签署方所在企业名称,用户名字和手机号(或者身份证件信息)参数来生成签署链接。
|
|
428
491
|
# - 个人批量签署链接:需要传入签署方用户名字和手机号(或者身份证件信息)参数来生成签署链接。个人批量签署进行的合同的签名区, 全部变成<font color="red">手写签名</font>(不管合同里边设置的签名限制)来进行。
|
|
429
492
|
# - 不支持签署方含有签批控件,或设置了签署方在签署时自行添加签署控件功能的合同进行批量签署。
|
|
430
493
|
# - 进行小程序批量签署必须指定待签署的流程id,<font color="red">接口中FlowIds参数必传。</font>
|
data/lib/v20201111/models.rb
CHANGED
|
@@ -38,6 +38,60 @@ module TencentCloud
|
|
|
38
38
|
end
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
+
# 企业变更超管信息。
|
|
42
|
+
class AdminChangeInvitationInfo < TencentCloud::Common::AbstractModel
|
|
43
|
+
# @param ChangeAdminOrganizationId: 要变更的企业Id。
|
|
44
|
+
# 使用接口进行变更,所支持的企业有两种。
|
|
45
|
+
# 1. 集团主企业替子企业进行超管变更。
|
|
46
|
+
# 子企业的企业 Id 可在更多-组织管理-集团组织管理处获取。如图位置
|
|
47
|
+
# 2. 使用接口[创建企业认证链接](https://qian.tencent.com/developers/companyApis/organizations/CreateOrganizationAuthUrl) 创建的企业,企业 Id 可以从回调[企业引导企业实名认证后回调](https://qian.tencent.com/developers/company/callback_types_staffs#%E5%8D%81%E4%B8%80-%E4%BC%81%E4%B8%9A%E5%BC%95%E5%AF%BC%E4%BC%81%E4%B8%9A%E5%AE%9E%E5%90%8D%E8%AE%A4%E8%AF%81%E5%90%8E%E5%9B%9E%E8%B0%83)得到。
|
|
48
|
+
# @type ChangeAdminOrganizationId: String
|
|
49
|
+
# @param NewAdminName: 组织机构要变更的超管姓名。
|
|
50
|
+
# 跟超管变更的操作人保持一致。
|
|
51
|
+
# @type NewAdminName: String
|
|
52
|
+
# @param AuthFiles: 授权书(PNG或JPG或PDF) base64格式, 大小不超过8M 。
|
|
53
|
+
# p.s. 如果上传授权书 ,需遵循以下条件
|
|
54
|
+
# 1. 超管的信息(超管姓名,超管手机号)必须为必填参数。
|
|
55
|
+
# @type AuthFiles: Array
|
|
56
|
+
# @param NewAdminMobile: 组织机构要变更的超管手机号。
|
|
57
|
+
# 跟超管变更的操作人保持一致。
|
|
58
|
+
# 超管变更的手机号和超管变更的证件号,必须要传递一个。
|
|
59
|
+
# @type NewAdminMobile: String
|
|
60
|
+
# @param NewAdminIdCardType: 组织机构要变更的超管证件类型支持以下类型
|
|
61
|
+
# - ID_CARD : 中国大陆居民身份证 (默认值)
|
|
62
|
+
# - HONGKONG_AND_MACAO : 中国港澳居民来往内地通行证
|
|
63
|
+
# - HONGKONG_MACAO_AND_TAIWAN : 中国港澳台居民居住证(格式同中国大陆居民身份证)
|
|
64
|
+
|
|
65
|
+
# 跟超管变更的操作人保持一致。
|
|
66
|
+
# @type NewAdminIdCardType: String
|
|
67
|
+
# @param NewAdminIdCardNumber: 组织机构新超管证件号。
|
|
68
|
+
|
|
69
|
+
# 跟超管变更的操作人保持一致。
|
|
70
|
+
|
|
71
|
+
# 超管变更的手机号和超管变更的证件号,必须要传递一个。
|
|
72
|
+
# @type NewAdminIdCardNumber: String
|
|
73
|
+
|
|
74
|
+
attr_accessor :ChangeAdminOrganizationId, :NewAdminName, :AuthFiles, :NewAdminMobile, :NewAdminIdCardType, :NewAdminIdCardNumber
|
|
75
|
+
|
|
76
|
+
def initialize(changeadminorganizationid=nil, newadminname=nil, authfiles=nil, newadminmobile=nil, newadminidcardtype=nil, newadminidcardnumber=nil)
|
|
77
|
+
@ChangeAdminOrganizationId = changeadminorganizationid
|
|
78
|
+
@NewAdminName = newadminname
|
|
79
|
+
@AuthFiles = authfiles
|
|
80
|
+
@NewAdminMobile = newadminmobile
|
|
81
|
+
@NewAdminIdCardType = newadminidcardtype
|
|
82
|
+
@NewAdminIdCardNumber = newadminidcardnumber
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
def deserialize(params)
|
|
86
|
+
@ChangeAdminOrganizationId = params['ChangeAdminOrganizationId']
|
|
87
|
+
@NewAdminName = params['NewAdminName']
|
|
88
|
+
@AuthFiles = params['AuthFiles']
|
|
89
|
+
@NewAdminMobile = params['NewAdminMobile']
|
|
90
|
+
@NewAdminIdCardType = params['NewAdminIdCardType']
|
|
91
|
+
@NewAdminIdCardNumber = params['NewAdminIdCardNumber']
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
41
95
|
# 代理相关应用信息,如集团主企业代子企业操作
|
|
42
96
|
class Agent < TencentCloud::Common::AbstractModel
|
|
43
97
|
# @param AppId: 代理机构的应用编号,32位字符串,一般不用传
|
|
@@ -1650,6 +1704,194 @@ module TencentCloud
|
|
|
1650
1704
|
end
|
|
1651
1705
|
end
|
|
1652
1706
|
|
|
1707
|
+
# 合同审查个性化参数,用于控制页面的展示内容
|
|
1708
|
+
class ContractReviewWebUrlOption < TencentCloud::Common::AbstractModel
|
|
1709
|
+
# @param DisableTemporaryStore: 禁用暂存。 默认 false,设置为 true 会隐藏界面上的临时保存按钮
|
|
1710
|
+
# @type DisableTemporaryStore: Boolean
|
|
1711
|
+
# @param DisableExport: 禁用导出。默认 false,设置为 true 会隐藏界面上的导出按钮
|
|
1712
|
+
# @type DisableExport: Boolean
|
|
1713
|
+
# @param DisableReviewAgain: 禁用重新审查。默认 false,设置为 true 会隐藏界面上的重新审查按钮
|
|
1714
|
+
# @type DisableReviewAgain: Boolean
|
|
1715
|
+
# @param DisableWxQrcode: 禁用二维码分享。默认 false,设置为 true 会隐藏界面上的分享二维码
|
|
1716
|
+
# @type DisableWxQrcode: Boolean
|
|
1717
|
+
|
|
1718
|
+
attr_accessor :DisableTemporaryStore, :DisableExport, :DisableReviewAgain, :DisableWxQrcode
|
|
1719
|
+
|
|
1720
|
+
def initialize(disabletemporarystore=nil, disableexport=nil, disablereviewagain=nil, disablewxqrcode=nil)
|
|
1721
|
+
@DisableTemporaryStore = disabletemporarystore
|
|
1722
|
+
@DisableExport = disableexport
|
|
1723
|
+
@DisableReviewAgain = disablereviewagain
|
|
1724
|
+
@DisableWxQrcode = disablewxqrcode
|
|
1725
|
+
end
|
|
1726
|
+
|
|
1727
|
+
def deserialize(params)
|
|
1728
|
+
@DisableTemporaryStore = params['DisableTemporaryStore']
|
|
1729
|
+
@DisableExport = params['DisableExport']
|
|
1730
|
+
@DisableReviewAgain = params['DisableReviewAgain']
|
|
1731
|
+
@DisableWxQrcode = params['DisableWxQrcode']
|
|
1732
|
+
end
|
|
1733
|
+
end
|
|
1734
|
+
|
|
1735
|
+
# CreateBatchAdminChangeInvitations请求参数结构体
|
|
1736
|
+
class CreateBatchAdminChangeInvitationsRequest < TencentCloud::Common::AbstractModel
|
|
1737
|
+
# @param Operator: 执行本接口操作的员工信息。
|
|
1738
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
1739
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
|
1740
|
+
# @param AdminChangeInvitationInfos: 组织机构超管变更信息。
|
|
1741
|
+
# 一次最多支持10条超管变更信息。
|
|
1742
|
+
# @type AdminChangeInvitationInfos: Array
|
|
1743
|
+
# @param Agent: 代理企业和员工的信息。
|
|
1744
|
+
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
1745
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
|
1746
|
+
|
|
1747
|
+
attr_accessor :Operator, :AdminChangeInvitationInfos, :Agent
|
|
1748
|
+
|
|
1749
|
+
def initialize(operator=nil, adminchangeinvitationinfos=nil, agent=nil)
|
|
1750
|
+
@Operator = operator
|
|
1751
|
+
@AdminChangeInvitationInfos = adminchangeinvitationinfos
|
|
1752
|
+
@Agent = agent
|
|
1753
|
+
end
|
|
1754
|
+
|
|
1755
|
+
def deserialize(params)
|
|
1756
|
+
unless params['Operator'].nil?
|
|
1757
|
+
@Operator = UserInfo.new
|
|
1758
|
+
@Operator.deserialize(params['Operator'])
|
|
1759
|
+
end
|
|
1760
|
+
unless params['AdminChangeInvitationInfos'].nil?
|
|
1761
|
+
@AdminChangeInvitationInfos = []
|
|
1762
|
+
params['AdminChangeInvitationInfos'].each do |i|
|
|
1763
|
+
adminchangeinvitationinfo_tmp = AdminChangeInvitationInfo.new
|
|
1764
|
+
adminchangeinvitationinfo_tmp.deserialize(i)
|
|
1765
|
+
@AdminChangeInvitationInfos << adminchangeinvitationinfo_tmp
|
|
1766
|
+
end
|
|
1767
|
+
end
|
|
1768
|
+
unless params['Agent'].nil?
|
|
1769
|
+
@Agent = Agent.new
|
|
1770
|
+
@Agent.deserialize(params['Agent'])
|
|
1771
|
+
end
|
|
1772
|
+
end
|
|
1773
|
+
end
|
|
1774
|
+
|
|
1775
|
+
# CreateBatchAdminChangeInvitations返回参数结构体
|
|
1776
|
+
class CreateBatchAdminChangeInvitationsResponse < TencentCloud::Common::AbstractModel
|
|
1777
|
+
# @param ErrorMessages: 批量生成企业认证链接的详细错误信息,
|
|
1778
|
+
# 顺序与输入参数保持一致。
|
|
1779
|
+
# 若企业认证均成功生成,则不返回错误信息;
|
|
1780
|
+
# 若存在任何错误,则返回具体的错误描述。
|
|
1781
|
+
# @type ErrorMessages: Array
|
|
1782
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1783
|
+
# @type RequestId: String
|
|
1784
|
+
|
|
1785
|
+
attr_accessor :ErrorMessages, :RequestId
|
|
1786
|
+
|
|
1787
|
+
def initialize(errormessages=nil, requestid=nil)
|
|
1788
|
+
@ErrorMessages = errormessages
|
|
1789
|
+
@RequestId = requestid
|
|
1790
|
+
end
|
|
1791
|
+
|
|
1792
|
+
def deserialize(params)
|
|
1793
|
+
@ErrorMessages = params['ErrorMessages']
|
|
1794
|
+
@RequestId = params['RequestId']
|
|
1795
|
+
end
|
|
1796
|
+
end
|
|
1797
|
+
|
|
1798
|
+
# CreateBatchAdminChangeInvitationsUrl请求参数结构体
|
|
1799
|
+
class CreateBatchAdminChangeInvitationsUrlRequest < TencentCloud::Common::AbstractModel
|
|
1800
|
+
# @param Operator: 执行本接口操作的员工信息。
|
|
1801
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
1802
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
|
1803
|
+
# @param NewAdminName: 组织机构要变更的超管姓名。 在超管变更流程中,必须是超管本人进行操作,需要更当前操作人的姓名保持一致。
|
|
1804
|
+
# @type NewAdminName: String
|
|
1805
|
+
# @param NewAdminMobile: 组织机构要变更的超管手机号。
|
|
1806
|
+
# 在超管变更流程中,必须是超管本人进行操作,需要更当前操作人的手机号保持一致。
|
|
1807
|
+
|
|
1808
|
+
# 超管手机号 和超管证件号 二选一 必填。
|
|
1809
|
+
|
|
1810
|
+
# 注意:
|
|
1811
|
+
# 1. 如果新超管的个人身份在电子签进行了手机号的变更,之前提交的超管变更任务将无法获取。
|
|
1812
|
+
# @type NewAdminMobile: String
|
|
1813
|
+
# @param NewAdminIdCardType: 组织机构要变更的超管证件类型支持以下类型
|
|
1814
|
+
# - ID_CARD : 中国大陆居民身份证 (默认值)
|
|
1815
|
+
# - HONGKONG_AND_MACAO : 中国港澳居民来往内地通行证
|
|
1816
|
+
# - HONGKONG_MACAO_AND_TAIWAN : 中国港澳台居民居住证(格式同中国大陆居民身份证)
|
|
1817
|
+
# 需要更当前操作人的证件类型保持一致。
|
|
1818
|
+
# @type NewAdminIdCardType: String
|
|
1819
|
+
# @param NewAdminIdCardNumber: 组织机构要变更的超管证件号。
|
|
1820
|
+
# 在超管变更流程中,必须是超管本人进行操作,需要更当前操作人的证件号保持一致。
|
|
1821
|
+
|
|
1822
|
+
# 超管手机号和超管证件号 二选一必填。
|
|
1823
|
+
# @type NewAdminIdCardNumber: String
|
|
1824
|
+
# @param NotifyType: 通知方式。
|
|
1825
|
+
# NONE(默认)
|
|
1826
|
+
# SMS - 如果使用这个方式,则会给即将变更的超管发信息。
|
|
1827
|
+
# 注意:
|
|
1828
|
+
# 发送信息的手机号,是用户传递的手机号。
|
|
1829
|
+
# 如果用户同时传递了证件号,手机号会被用户在电子签注册的手机号进行覆盖。
|
|
1830
|
+
# @type NotifyType: String
|
|
1831
|
+
# @param Endpoint: 要跳转的链接类型
|
|
1832
|
+
# <ul>
|
|
1833
|
+
# <li> **HTTP**:跳转电子签小程序的http_url,短信通知或者H5跳转适合此类型 ,此时返回长链 (默认类型)。</li><li>**HTTP_SHORT_URL**:跳转电子签小程序的http_url,短信通知或者H5跳转适合此类型,此时返回短链。</li><li>**APP**: 第三方APP或小程序跳转电子签小程序的path,APP或者小程序跳转适合此类型。</li>
|
|
1834
|
+
# <li>**QR_CODE**: 跳转电子签小程序的http_url的二维码形式,可以在页面展示适合此类型。</li>
|
|
1835
|
+
# </ul>
|
|
1836
|
+
# @type Endpoint: String
|
|
1837
|
+
|
|
1838
|
+
attr_accessor :Operator, :NewAdminName, :NewAdminMobile, :NewAdminIdCardType, :NewAdminIdCardNumber, :NotifyType, :Endpoint
|
|
1839
|
+
|
|
1840
|
+
def initialize(operator=nil, newadminname=nil, newadminmobile=nil, newadminidcardtype=nil, newadminidcardnumber=nil, notifytype=nil, endpoint=nil)
|
|
1841
|
+
@Operator = operator
|
|
1842
|
+
@NewAdminName = newadminname
|
|
1843
|
+
@NewAdminMobile = newadminmobile
|
|
1844
|
+
@NewAdminIdCardType = newadminidcardtype
|
|
1845
|
+
@NewAdminIdCardNumber = newadminidcardnumber
|
|
1846
|
+
@NotifyType = notifytype
|
|
1847
|
+
@Endpoint = endpoint
|
|
1848
|
+
end
|
|
1849
|
+
|
|
1850
|
+
def deserialize(params)
|
|
1851
|
+
unless params['Operator'].nil?
|
|
1852
|
+
@Operator = UserInfo.new
|
|
1853
|
+
@Operator.deserialize(params['Operator'])
|
|
1854
|
+
end
|
|
1855
|
+
@NewAdminName = params['NewAdminName']
|
|
1856
|
+
@NewAdminMobile = params['NewAdminMobile']
|
|
1857
|
+
@NewAdminIdCardType = params['NewAdminIdCardType']
|
|
1858
|
+
@NewAdminIdCardNumber = params['NewAdminIdCardNumber']
|
|
1859
|
+
@NotifyType = params['NotifyType']
|
|
1860
|
+
@Endpoint = params['Endpoint']
|
|
1861
|
+
end
|
|
1862
|
+
end
|
|
1863
|
+
|
|
1864
|
+
# CreateBatchAdminChangeInvitationsUrl返回参数结构体
|
|
1865
|
+
class CreateBatchAdminChangeInvitationsUrlResponse < TencentCloud::Common::AbstractModel
|
|
1866
|
+
# @param Url: 批量企业注册链接-单链接包含多条认证流,根据Endpoint的不同设置,返回不同的链接地址。失效时间:7天
|
|
1867
|
+
# 跳转链接, 链接的有效期根据企业,员工状态和终端等有区别, 可以参考下表
|
|
1868
|
+
# <table> <thead> <tr> <th>Endpoint</th> <th>示例</th> <th>链接有效期限</th> </tr> </thead> <tbody>
|
|
1869
|
+
# <tr> <td>HTTP</td> <td>https://res.ess.tencent.cn/cdn/h5-activity-dev/jump-mp.html?to=AUTHORIZATION_ENTERPRISE_FOR_BATCH_SUBMIT&shortKey=yDCHHURDfBxSB2rj2Bfa</td> <td>7天</td> </tr>
|
|
1870
|
+
# <tr> <td>HTTP_SHORT_URL</td> <td>https://test.essurl.cn/8gDKUBAWK8</td> <td>7天</td> </tr>
|
|
1871
|
+
# <tr> <td>APP</td> <td>pages/guide/index?to=AUTHORIZATION_ENTERPRISE_FOR_BATCH_SUBMIT&shortKey=yDCHpURDfR6iEkdpsDde</td> <td>7天</td> </tr><tr> <td>QR_CODE</td> <td>https://dyn.test.ess.tencent.cn/imgs/qrcode_urls/authorization_enterprise_for_batch_submit/yDCHHUUckpbdauq9UEjnoFDCCumAMmv1.png</td> <td>7天</td> </tr> </tbody> </table>
|
|
1872
|
+
# 注:
|
|
1873
|
+
# `1.创建的链接应避免被转义,如:&被转义为\u0026;如使用Postman请求后,请选择响应类型为 JSON,否则链接将被转义`
|
|
1874
|
+
# @type Url: String
|
|
1875
|
+
# @param ExpireTime: 链接过期时间,为 7 天后,创建时间,格式为Unix标准时间戳(秒)。
|
|
1876
|
+
# @type ExpireTime: Integer
|
|
1877
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1878
|
+
# @type RequestId: String
|
|
1879
|
+
|
|
1880
|
+
attr_accessor :Url, :ExpireTime, :RequestId
|
|
1881
|
+
|
|
1882
|
+
def initialize(url=nil, expiretime=nil, requestid=nil)
|
|
1883
|
+
@Url = url
|
|
1884
|
+
@ExpireTime = expiretime
|
|
1885
|
+
@RequestId = requestid
|
|
1886
|
+
end
|
|
1887
|
+
|
|
1888
|
+
def deserialize(params)
|
|
1889
|
+
@Url = params['Url']
|
|
1890
|
+
@ExpireTime = params['ExpireTime']
|
|
1891
|
+
@RequestId = params['RequestId']
|
|
1892
|
+
end
|
|
1893
|
+
end
|
|
1894
|
+
|
|
1653
1895
|
# CreateBatchCancelFlowUrl请求参数结构体
|
|
1654
1896
|
class CreateBatchCancelFlowUrlRequest < TencentCloud::Common::AbstractModel
|
|
1655
1897
|
# @param Operator: 执行本接口操作的员工信息。
|
|
@@ -2358,7 +2600,6 @@ module TencentCloud
|
|
|
2358
2600
|
# <ul>
|
|
2359
2601
|
# <li>请确认该名称与企业营业执照中注册的名称一致。</li>
|
|
2360
2602
|
# <li>如果名称中包含英文括号(),请使用中文括号()代替。</li>
|
|
2361
|
-
# <li>请确保此企业已完成腾讯电子签企业认证。</li>
|
|
2362
2603
|
# </ul>
|
|
2363
2604
|
# @type OrganizationName: String
|
|
2364
2605
|
# @param JumpToDetail: 是否直接跳转至合同内容页面进行签署
|
|
@@ -2643,13 +2884,16 @@ module TencentCloud
|
|
|
2643
2884
|
|
|
2644
2885
|
# 在合同状态变更的回调信息等场景中,该字段的信息将原封不动地透传给贵方。回调的相关说明可参考开发者中心的[回调通知](https://qian.tencent.com/developers/company/callback_types_v2)模块。
|
|
2645
2886
|
# @type UserData: String
|
|
2887
|
+
# @param Option: 个性化参数,用于控制页面展示内容
|
|
2888
|
+
# @type Option: :class:`Tencentcloud::Ess.v20201111.models.ContractReviewWebUrlOption`
|
|
2646
2889
|
|
|
2647
|
-
attr_accessor :Operator, :ResourceId, :UserData
|
|
2890
|
+
attr_accessor :Operator, :ResourceId, :UserData, :Option
|
|
2648
2891
|
|
|
2649
|
-
def initialize(operator=nil, resourceid=nil, userdata=nil)
|
|
2892
|
+
def initialize(operator=nil, resourceid=nil, userdata=nil, option=nil)
|
|
2650
2893
|
@Operator = operator
|
|
2651
2894
|
@ResourceId = resourceid
|
|
2652
2895
|
@UserData = userdata
|
|
2896
|
+
@Option = option
|
|
2653
2897
|
end
|
|
2654
2898
|
|
|
2655
2899
|
def deserialize(params)
|
|
@@ -2659,6 +2903,10 @@ module TencentCloud
|
|
|
2659
2903
|
end
|
|
2660
2904
|
@ResourceId = params['ResourceId']
|
|
2661
2905
|
@UserData = params['UserData']
|
|
2906
|
+
unless params['Option'].nil?
|
|
2907
|
+
@Option = ContractReviewWebUrlOption.new
|
|
2908
|
+
@Option.deserialize(params['Option'])
|
|
2909
|
+
end
|
|
2662
2910
|
end
|
|
2663
2911
|
end
|
|
2664
2912
|
|
|
@@ -4287,13 +4535,15 @@ module TencentCloud
|
|
|
4287
4535
|
# @type PreviewAfterStart: Boolean
|
|
4288
4536
|
# @param SignAfterStart: 发起成功之后是否签署合同,仅当前经办人作为签署人时生效 <ul><li>(默认) false -否</li> <li> true - 展示签署按钮</li></ul>
|
|
4289
4537
|
# @type SignAfterStart: Boolean
|
|
4538
|
+
# @param NeedFlowDraft: 发起过程中是否保存草稿
|
|
4539
|
+
# @type NeedFlowDraft: Boolean
|
|
4290
4540
|
|
|
4291
|
-
attr_accessor :CanEditFlow, :CanEditFormField, :HideShowFlowName, :HideShowFlowType, :HideShowDeadline, :CanSkipAddApprover, :SkipUploadFile, :ForbidEditFillComponent, :CustomCreateFlowDescription, :ForbidAddApprover, :ForbidEditApprover, :ForbidEditFlowProperties, :HideComponentTypes, :ShowComponentTypes, :ResultPageConfig, :SignComponentConfig, :ForbidEditWatermark, :HideOperationInstructions, :HideOperationSteps, :SelfName, :HideSignCodeAfterStart, :PreviewAfterStart, :SignAfterStart
|
|
4541
|
+
attr_accessor :CanEditFlow, :CanEditFormField, :HideShowFlowName, :HideShowFlowType, :HideShowDeadline, :CanSkipAddApprover, :SkipUploadFile, :ForbidEditFillComponent, :CustomCreateFlowDescription, :ForbidAddApprover, :ForbidEditApprover, :ForbidEditFlowProperties, :HideComponentTypes, :ShowComponentTypes, :ResultPageConfig, :SignComponentConfig, :ForbidEditWatermark, :HideOperationInstructions, :HideOperationSteps, :SelfName, :HideSignCodeAfterStart, :PreviewAfterStart, :SignAfterStart, :NeedFlowDraft
|
|
4292
4542
|
extend Gem::Deprecate
|
|
4293
4543
|
deprecate :HideOperationInstructions, :none, 2025, 11
|
|
4294
4544
|
deprecate :HideOperationInstructions=, :none, 2025, 11
|
|
4295
4545
|
|
|
4296
|
-
def initialize(caneditflow=nil, caneditformfield=nil, hideshowflowname=nil, hideshowflowtype=nil, hideshowdeadline=nil, canskipaddapprover=nil, skipuploadfile=nil, forbideditfillcomponent=nil, customcreateflowdescription=nil, forbidaddapprover=nil, forbideditapprover=nil, forbideditflowproperties=nil, hidecomponenttypes=nil, showcomponenttypes=nil, resultpageconfig=nil, signcomponentconfig=nil, forbideditwatermark=nil, hideoperationinstructions=nil, hideoperationsteps=nil, selfname=nil, hidesigncodeafterstart=nil, previewafterstart=nil, signafterstart=nil)
|
|
4546
|
+
def initialize(caneditflow=nil, caneditformfield=nil, hideshowflowname=nil, hideshowflowtype=nil, hideshowdeadline=nil, canskipaddapprover=nil, skipuploadfile=nil, forbideditfillcomponent=nil, customcreateflowdescription=nil, forbidaddapprover=nil, forbideditapprover=nil, forbideditflowproperties=nil, hidecomponenttypes=nil, showcomponenttypes=nil, resultpageconfig=nil, signcomponentconfig=nil, forbideditwatermark=nil, hideoperationinstructions=nil, hideoperationsteps=nil, selfname=nil, hidesigncodeafterstart=nil, previewafterstart=nil, signafterstart=nil, needflowdraft=nil)
|
|
4297
4547
|
@CanEditFlow = caneditflow
|
|
4298
4548
|
@CanEditFormField = caneditformfield
|
|
4299
4549
|
@HideShowFlowName = hideshowflowname
|
|
@@ -4317,6 +4567,7 @@ module TencentCloud
|
|
|
4317
4567
|
@HideSignCodeAfterStart = hidesigncodeafterstart
|
|
4318
4568
|
@PreviewAfterStart = previewafterstart
|
|
4319
4569
|
@SignAfterStart = signafterstart
|
|
4570
|
+
@NeedFlowDraft = needflowdraft
|
|
4320
4571
|
end
|
|
4321
4572
|
|
|
4322
4573
|
def deserialize(params)
|
|
@@ -4353,6 +4604,7 @@ module TencentCloud
|
|
|
4353
4604
|
@HideSignCodeAfterStart = params['HideSignCodeAfterStart']
|
|
4354
4605
|
@PreviewAfterStart = params['PreviewAfterStart']
|
|
4355
4606
|
@SignAfterStart = params['SignAfterStart']
|
|
4607
|
+
@NeedFlowDraft = params['NeedFlowDraft']
|
|
4356
4608
|
end
|
|
4357
4609
|
end
|
|
4358
4610
|
|
|
@@ -5803,10 +6055,12 @@ module TencentCloud
|
|
|
5803
6055
|
|
|
5804
6056
|
# p.s. 如果Endpoint是 APP,传递的跳转地址无效,不会进行跳转,仅会进行回跳。
|
|
5805
6057
|
# @type JumpEvents: Array
|
|
6058
|
+
# @param OrganizationIdCardType: 企业证照类型:<ul><li> **USCC** :(默认)工商组织营业执照</li><li> **PRACTICELICENSEOFMEDICALINSTITUTION** :医疗机构执业许可证</li></ul>
|
|
6059
|
+
# @type OrganizationIdCardType: String
|
|
5806
6060
|
|
|
5807
|
-
attr_accessor :Operator, :AuthorizationTypes, :OrganizationName, :UniformSocialCreditCode, :LegalName, :AutoJumpUrl, :OrganizationAddress, :AdminName, :AdminMobile, :AdminIdCardNumber, :AdminIdCardType, :UniformSocialCreditCodeSame, :LegalNameSame, :AdminNameSame, :AdminIdCardNumberSame, :AdminMobileSame, :OrganizationNameSame, :BusinessLicense, :Endpoint, :Initialization, :PowerOfAttorneys, :UserData, :BankAccountNumber, :BankAccountNumberSame, :JumpEvents
|
|
6061
|
+
attr_accessor :Operator, :AuthorizationTypes, :OrganizationName, :UniformSocialCreditCode, :LegalName, :AutoJumpUrl, :OrganizationAddress, :AdminName, :AdminMobile, :AdminIdCardNumber, :AdminIdCardType, :UniformSocialCreditCodeSame, :LegalNameSame, :AdminNameSame, :AdminIdCardNumberSame, :AdminMobileSame, :OrganizationNameSame, :BusinessLicense, :Endpoint, :Initialization, :PowerOfAttorneys, :UserData, :BankAccountNumber, :BankAccountNumberSame, :JumpEvents, :OrganizationIdCardType
|
|
5808
6062
|
|
|
5809
|
-
def initialize(operator=nil, authorizationtypes=nil, organizationname=nil, uniformsocialcreditcode=nil, legalname=nil, autojumpurl=nil, organizationaddress=nil, adminname=nil, adminmobile=nil, adminidcardnumber=nil, adminidcardtype=nil, uniformsocialcreditcodesame=nil, legalnamesame=nil, adminnamesame=nil, adminidcardnumbersame=nil, adminmobilesame=nil, organizationnamesame=nil, businesslicense=nil, endpoint=nil, initialization=nil, powerofattorneys=nil, userdata=nil, bankaccountnumber=nil, bankaccountnumbersame=nil, jumpevents=nil)
|
|
6063
|
+
def initialize(operator=nil, authorizationtypes=nil, organizationname=nil, uniformsocialcreditcode=nil, legalname=nil, autojumpurl=nil, organizationaddress=nil, adminname=nil, adminmobile=nil, adminidcardnumber=nil, adminidcardtype=nil, uniformsocialcreditcodesame=nil, legalnamesame=nil, adminnamesame=nil, adminidcardnumbersame=nil, adminmobilesame=nil, organizationnamesame=nil, businesslicense=nil, endpoint=nil, initialization=nil, powerofattorneys=nil, userdata=nil, bankaccountnumber=nil, bankaccountnumbersame=nil, jumpevents=nil, organizationidcardtype=nil)
|
|
5810
6064
|
@Operator = operator
|
|
5811
6065
|
@AuthorizationTypes = authorizationtypes
|
|
5812
6066
|
@OrganizationName = organizationname
|
|
@@ -5832,6 +6086,7 @@ module TencentCloud
|
|
|
5832
6086
|
@BankAccountNumber = bankaccountnumber
|
|
5833
6087
|
@BankAccountNumberSame = bankaccountnumbersame
|
|
5834
6088
|
@JumpEvents = jumpevents
|
|
6089
|
+
@OrganizationIdCardType = organizationidcardtype
|
|
5835
6090
|
end
|
|
5836
6091
|
|
|
5837
6092
|
def deserialize(params)
|
|
@@ -5870,6 +6125,7 @@ module TencentCloud
|
|
|
5870
6125
|
@JumpEvents << jumpevent_tmp
|
|
5871
6126
|
end
|
|
5872
6127
|
end
|
|
6128
|
+
@OrganizationIdCardType = params['OrganizationIdCardType']
|
|
5873
6129
|
end
|
|
5874
6130
|
end
|
|
5875
6131
|
|
|
@@ -6375,6 +6631,7 @@ module TencentCloud
|
|
|
6375
6631
|
# <ul>
|
|
6376
6632
|
# <li>文件Id(通过UploadFiles获取文件资源Id)</li>
|
|
6377
6633
|
# <li>模板Id(通过控制台创建模板后获取模板Id)</li>
|
|
6634
|
+
# <li>草稿Id(通过嵌入页面保存草稿后获取草稿Id)</li>
|
|
6378
6635
|
# </ul>
|
|
6379
6636
|
# 注意:需要同时设置 ResourceType 参数指定资源类型
|
|
6380
6637
|
# @type ResourceId: String
|
|
@@ -6384,7 +6641,9 @@ module TencentCloud
|
|
|
6384
6641
|
# @type FlowName: String
|
|
6385
6642
|
# @param ResourceType: 资源类型,取值有:
|
|
6386
6643
|
# <ul><li> **1**:模板</li>
|
|
6387
|
-
# <li> **2**:文件(默认值)</li
|
|
6644
|
+
# <li> **2**:文件(默认值)</li>
|
|
6645
|
+
# <li> **3**:草稿</li>
|
|
6646
|
+
# </ul>
|
|
6388
6647
|
# @type ResourceType: Integer
|
|
6389
6648
|
# @param Unordered: 合同流程的签署顺序类型:
|
|
6390
6649
|
# <ul><li> **false**:(默认)有序签署, 本合同多个参与人需要依次签署 </li>
|
|
@@ -6545,20 +6804,24 @@ module TencentCloud
|
|
|
6545
6804
|
# @type Url: String
|
|
6546
6805
|
# @param FlowId: 创建的合同id(还未实际发起),每次调用会生成新的id,用户可以记录此字段对应后续页面发起的合同,若在页面上未成功发起,则此字段无效。
|
|
6547
6806
|
# @type FlowId: String
|
|
6807
|
+
# @param DraftId: 临时的草稿id(还未实际保存草稿),用户可以记录此字段对应后续页面保存的草稿,若在页面上未保存草稿,则此字段无效。
|
|
6808
|
+
# @type DraftId: String
|
|
6548
6809
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6549
6810
|
# @type RequestId: String
|
|
6550
6811
|
|
|
6551
|
-
attr_accessor :Url, :FlowId, :RequestId
|
|
6812
|
+
attr_accessor :Url, :FlowId, :DraftId, :RequestId
|
|
6552
6813
|
|
|
6553
|
-
def initialize(url=nil, flowid=nil, requestid=nil)
|
|
6814
|
+
def initialize(url=nil, flowid=nil, draftid=nil, requestid=nil)
|
|
6554
6815
|
@Url = url
|
|
6555
6816
|
@FlowId = flowid
|
|
6817
|
+
@DraftId = draftid
|
|
6556
6818
|
@RequestId = requestid
|
|
6557
6819
|
end
|
|
6558
6820
|
|
|
6559
6821
|
def deserialize(params)
|
|
6560
6822
|
@Url = params['Url']
|
|
6561
6823
|
@FlowId = params['FlowId']
|
|
6824
|
+
@DraftId = params['DraftId']
|
|
6562
6825
|
@RequestId = params['RequestId']
|
|
6563
6826
|
end
|
|
6564
6827
|
end
|
|
@@ -8979,12 +9242,15 @@ module TencentCloud
|
|
|
8979
9242
|
# @type HighRiskCount: Integer
|
|
8980
9243
|
# @param TotalRiskCount: 合同审查出的风险总数
|
|
8981
9244
|
# @type TotalRiskCount: Integer
|
|
9245
|
+
# @param ApprovedLists: 通过项信息(详细引文信息)
|
|
9246
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
9247
|
+
# @type ApprovedLists: Array
|
|
8982
9248
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8983
9249
|
# @type RequestId: String
|
|
8984
9250
|
|
|
8985
|
-
attr_accessor :ChecklistId, :CreatedOn, :FinishedOn, :PolicyType, :ResourceId, :Risks, :Role, :Status, :TaskId, :Comment, :UserData, :HighRiskCount, :TotalRiskCount, :RequestId
|
|
9251
|
+
attr_accessor :ChecklistId, :CreatedOn, :FinishedOn, :PolicyType, :ResourceId, :Risks, :Role, :Status, :TaskId, :Comment, :UserData, :HighRiskCount, :TotalRiskCount, :ApprovedLists, :RequestId
|
|
8986
9252
|
|
|
8987
|
-
def initialize(checklistid=nil, createdon=nil, finishedon=nil, policytype=nil, resourceid=nil, risks=nil, role=nil, status=nil, taskid=nil, comment=nil, userdata=nil, highriskcount=nil, totalriskcount=nil, requestid=nil)
|
|
9253
|
+
def initialize(checklistid=nil, createdon=nil, finishedon=nil, policytype=nil, resourceid=nil, risks=nil, role=nil, status=nil, taskid=nil, comment=nil, userdata=nil, highriskcount=nil, totalriskcount=nil, approvedlists=nil, requestid=nil)
|
|
8988
9254
|
@ChecklistId = checklistid
|
|
8989
9255
|
@CreatedOn = createdon
|
|
8990
9256
|
@FinishedOn = finishedon
|
|
@@ -8998,6 +9264,7 @@ module TencentCloud
|
|
|
8998
9264
|
@UserData = userdata
|
|
8999
9265
|
@HighRiskCount = highriskcount
|
|
9000
9266
|
@TotalRiskCount = totalriskcount
|
|
9267
|
+
@ApprovedLists = approvedlists
|
|
9001
9268
|
@RequestId = requestid
|
|
9002
9269
|
end
|
|
9003
9270
|
|
|
@@ -9025,6 +9292,14 @@ module TencentCloud
|
|
|
9025
9292
|
@UserData = params['UserData']
|
|
9026
9293
|
@HighRiskCount = params['HighRiskCount']
|
|
9027
9294
|
@TotalRiskCount = params['TotalRiskCount']
|
|
9295
|
+
unless params['ApprovedLists'].nil?
|
|
9296
|
+
@ApprovedLists = []
|
|
9297
|
+
params['ApprovedLists'].each do |i|
|
|
9298
|
+
outputreference_tmp = OutputReference.new
|
|
9299
|
+
outputreference_tmp.deserialize(i)
|
|
9300
|
+
@ApprovedLists << outputreference_tmp
|
|
9301
|
+
end
|
|
9302
|
+
end
|
|
9028
9303
|
@RequestId = params['RequestId']
|
|
9029
9304
|
end
|
|
9030
9305
|
end
|
|
@@ -14745,6 +15020,50 @@ module TencentCloud
|
|
|
14745
15020
|
end
|
|
14746
15021
|
end
|
|
14747
15022
|
|
|
15023
|
+
# 审查通过项对应的引文信息
|
|
15024
|
+
class OutputReference < TencentCloud::Common::AbstractModel
|
|
15025
|
+
# @param RiskId: 合同审查风险结果ID
|
|
15026
|
+
# @type RiskId: String
|
|
15027
|
+
# @param RiskName: 风险名称
|
|
15028
|
+
# @type RiskName: String
|
|
15029
|
+
# @param RiskDescription: 风险描述
|
|
15030
|
+
# @type RiskDescription: String
|
|
15031
|
+
# @param CategoryName: 风险要点分类名称
|
|
15032
|
+
# @type CategoryName: String
|
|
15033
|
+
# @param RiskBasis: 审查依据
|
|
15034
|
+
# @type RiskBasis: String
|
|
15035
|
+
# @param Excerpts: 引文内容
|
|
15036
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
15037
|
+
# @type Excerpts: Array
|
|
15038
|
+
|
|
15039
|
+
attr_accessor :RiskId, :RiskName, :RiskDescription, :CategoryName, :RiskBasis, :Excerpts
|
|
15040
|
+
|
|
15041
|
+
def initialize(riskid=nil, riskname=nil, riskdescription=nil, categoryname=nil, riskbasis=nil, excerpts=nil)
|
|
15042
|
+
@RiskId = riskid
|
|
15043
|
+
@RiskName = riskname
|
|
15044
|
+
@RiskDescription = riskdescription
|
|
15045
|
+
@CategoryName = categoryname
|
|
15046
|
+
@RiskBasis = riskbasis
|
|
15047
|
+
@Excerpts = excerpts
|
|
15048
|
+
end
|
|
15049
|
+
|
|
15050
|
+
def deserialize(params)
|
|
15051
|
+
@RiskId = params['RiskId']
|
|
15052
|
+
@RiskName = params['RiskName']
|
|
15053
|
+
@RiskDescription = params['RiskDescription']
|
|
15054
|
+
@CategoryName = params['CategoryName']
|
|
15055
|
+
@RiskBasis = params['RiskBasis']
|
|
15056
|
+
unless params['Excerpts'].nil?
|
|
15057
|
+
@Excerpts = []
|
|
15058
|
+
params['Excerpts'].each do |i|
|
|
15059
|
+
referenceexcerpt_tmp = ReferenceExcerpt.new
|
|
15060
|
+
referenceexcerpt_tmp.deserialize(i)
|
|
15061
|
+
@Excerpts << referenceexcerpt_tmp
|
|
15062
|
+
end
|
|
15063
|
+
end
|
|
15064
|
+
end
|
|
15065
|
+
end
|
|
15066
|
+
|
|
14748
15067
|
# 合同审查任务识别出的风险结果信息
|
|
14749
15068
|
class OutputRisk < TencentCloud::Common::AbstractModel
|
|
14750
15069
|
# @param RiskId: 合同审查风险结果ID
|
|
@@ -14771,10 +15090,12 @@ module TencentCloud
|
|
|
14771
15090
|
# @type Positions: Array
|
|
14772
15091
|
# @param RiskBasis: 审查依据
|
|
14773
15092
|
# @type RiskBasis: String
|
|
15093
|
+
# @param RiskLevelId: 风险等级id
|
|
15094
|
+
# @type RiskLevelId: Integer
|
|
14774
15095
|
|
|
14775
|
-
attr_accessor :RiskId, :RiskName, :RiskDescription, :RiskLevel, :RiskAdvice, :RiskPresentation, :Content, :Positions, :RiskBasis
|
|
15096
|
+
attr_accessor :RiskId, :RiskName, :RiskDescription, :RiskLevel, :RiskAdvice, :RiskPresentation, :Content, :Positions, :RiskBasis, :RiskLevelId
|
|
14776
15097
|
|
|
14777
|
-
def initialize(riskid=nil, riskname=nil, riskdescription=nil, risklevel=nil, riskadvice=nil, riskpresentation=nil, content=nil, positions=nil, riskbasis=nil)
|
|
15098
|
+
def initialize(riskid=nil, riskname=nil, riskdescription=nil, risklevel=nil, riskadvice=nil, riskpresentation=nil, content=nil, positions=nil, riskbasis=nil, risklevelid=nil)
|
|
14778
15099
|
@RiskId = riskid
|
|
14779
15100
|
@RiskName = riskname
|
|
14780
15101
|
@RiskDescription = riskdescription
|
|
@@ -14784,6 +15105,7 @@ module TencentCloud
|
|
|
14784
15105
|
@Content = content
|
|
14785
15106
|
@Positions = positions
|
|
14786
15107
|
@RiskBasis = riskbasis
|
|
15108
|
+
@RiskLevelId = risklevelid
|
|
14787
15109
|
end
|
|
14788
15110
|
|
|
14789
15111
|
def deserialize(params)
|
|
@@ -14803,6 +15125,7 @@ module TencentCloud
|
|
|
14803
15125
|
end
|
|
14804
15126
|
end
|
|
14805
15127
|
@RiskBasis = params['RiskBasis']
|
|
15128
|
+
@RiskLevelId = params['RiskLevelId']
|
|
14806
15129
|
end
|
|
14807
15130
|
end
|
|
14808
15131
|
|
|
@@ -15184,6 +15507,30 @@ module TencentCloud
|
|
|
15184
15507
|
end
|
|
15185
15508
|
end
|
|
15186
15509
|
|
|
15510
|
+
# 引用的资料
|
|
15511
|
+
class ReferenceExcerpt < TencentCloud::Common::AbstractModel
|
|
15512
|
+
# @param Content: 原文内容
|
|
15513
|
+
# @type Content: String
|
|
15514
|
+
# @param Position: 坐标信息
|
|
15515
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
15516
|
+
# @type Position: :class:`Tencentcloud::Ess.v20201111.models.PositionInfo`
|
|
15517
|
+
|
|
15518
|
+
attr_accessor :Content, :Position
|
|
15519
|
+
|
|
15520
|
+
def initialize(content=nil, position=nil)
|
|
15521
|
+
@Content = content
|
|
15522
|
+
@Position = position
|
|
15523
|
+
end
|
|
15524
|
+
|
|
15525
|
+
def deserialize(params)
|
|
15526
|
+
@Content = params['Content']
|
|
15527
|
+
unless params['Position'].nil?
|
|
15528
|
+
@Position = PositionInfo.new
|
|
15529
|
+
@Position.deserialize(params['Position'])
|
|
15530
|
+
end
|
|
15531
|
+
end
|
|
15532
|
+
end
|
|
15533
|
+
|
|
15187
15534
|
# 发起流程快速注册相关信息
|
|
15188
15535
|
class RegisterInfo < TencentCloud::Common::AbstractModel
|
|
15189
15536
|
# @param LegalName: 法人姓名
|
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.1171
|
|
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-
|
|
11
|
+
date: 2025-11-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|