tencentcloud-sdk-ess 3.0.1196 → 3.0.1201
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 +136 -0
- data/lib/v20201111/models.rb +275 -8
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 47aee942ea9553d8d82194dc784f4f47c3014c74
|
|
4
|
+
data.tar.gz: 00347de48586b612d5ba76ddfa39ae0f79f8bcba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ed01cbb8cc087989e0e9867aee2cffd8a6ac4226721c5bb0673d927f16f5ab9fb2d91d286244a062b3553e8549df320bec3d415c31526b472510a457f604a8f4
|
|
7
|
+
data.tar.gz: 63aa2d486899476ee906568c3a425ad7b3bf25ca5263e3be9d8a9dbe2864a1e76a9e6839ae16562b1a9a4d61a96c78f6b40522394174fad77dc332f4fabcd10e
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1201
|
data/lib/v20201111/client.rb
CHANGED
|
@@ -572,6 +572,34 @@ module TencentCloud
|
|
|
572
572
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
573
573
|
end
|
|
574
574
|
|
|
575
|
+
# 此接口(CreateContractReviewChecklistWebUrl)用来创建新建审查要点清单web页面链接(此web页面可以通过iframe方式嵌入到贵方系统的网页中)。
|
|
576
|
+
|
|
577
|
+
# 适用场景:根据合同内容识别出合同的风险信息。审查结果由AI生成,仅供参考。请结合相关法律法规和公司制度要求综合判断。
|
|
578
|
+
|
|
579
|
+
# 注意: `如果文件资源为word类型生成的链接不能进行iframe嵌入,需要在单独窗口打开`
|
|
580
|
+
|
|
581
|
+
# @param request: Request instance for CreateContractReviewChecklistWebUrl.
|
|
582
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::CreateContractReviewChecklistWebUrlRequest`
|
|
583
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::CreateContractReviewChecklistWebUrlResponse`
|
|
584
|
+
def CreateContractReviewChecklistWebUrl(request)
|
|
585
|
+
body = send_request('CreateContractReviewChecklistWebUrl', request.serialize)
|
|
586
|
+
response = JSON.parse(body)
|
|
587
|
+
if response['Response'].key?('Error') == false
|
|
588
|
+
model = CreateContractReviewChecklistWebUrlResponse.new
|
|
589
|
+
model.deserialize(response['Response'])
|
|
590
|
+
model
|
|
591
|
+
else
|
|
592
|
+
code = response['Response']['Error']['Code']
|
|
593
|
+
message = response['Response']['Error']['Message']
|
|
594
|
+
reqid = response['Response']['RequestId']
|
|
595
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
596
|
+
end
|
|
597
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
598
|
+
raise e
|
|
599
|
+
rescue StandardError => e
|
|
600
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
601
|
+
end
|
|
602
|
+
|
|
575
603
|
# 此接口(CreateContractReviewWebUrl)用来创建合同审查web页面链接(此web页面可以通过iframe方式嵌入到贵方系统的网页中)。
|
|
576
604
|
|
|
577
605
|
# 适用场景:根据合同内容识别出合同的风险信息。审查结果由AI生成,仅供参考。请结合相关法律法规和公司制度要求综合判断。
|
|
@@ -2795,6 +2823,62 @@ module TencentCloud
|
|
|
2795
2823
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
2796
2824
|
end
|
|
2797
2825
|
|
|
2826
|
+
# 此接口(DescribeContractReviewChecklistWebUrl)用来创建查看审查要点清单web页面链接(此web页面可以通过iframe方式嵌入到贵方系统的网页中)。
|
|
2827
|
+
|
|
2828
|
+
# 适用场景:根据合同内容识别出合同的风险信息。审查结果由AI生成,仅供参考。请结合相关法律法规和公司制度要求综合判断。
|
|
2829
|
+
|
|
2830
|
+
# 注意: `如果文件资源为word类型生成的链接不能进行iframe嵌入,需要在单独窗口打开`
|
|
2831
|
+
|
|
2832
|
+
# @param request: Request instance for DescribeContractReviewChecklistWebUrl.
|
|
2833
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::DescribeContractReviewChecklistWebUrlRequest`
|
|
2834
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::DescribeContractReviewChecklistWebUrlResponse`
|
|
2835
|
+
def DescribeContractReviewChecklistWebUrl(request)
|
|
2836
|
+
body = send_request('DescribeContractReviewChecklistWebUrl', request.serialize)
|
|
2837
|
+
response = JSON.parse(body)
|
|
2838
|
+
if response['Response'].key?('Error') == false
|
|
2839
|
+
model = DescribeContractReviewChecklistWebUrlResponse.new
|
|
2840
|
+
model.deserialize(response['Response'])
|
|
2841
|
+
model
|
|
2842
|
+
else
|
|
2843
|
+
code = response['Response']['Error']['Code']
|
|
2844
|
+
message = response['Response']['Error']['Message']
|
|
2845
|
+
reqid = response['Response']['RequestId']
|
|
2846
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
2847
|
+
end
|
|
2848
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
2849
|
+
raise e
|
|
2850
|
+
rescue StandardError => e
|
|
2851
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
2852
|
+
end
|
|
2853
|
+
|
|
2854
|
+
# 此接口(DescribeContractReviewChecklistsWebUrl)用来创建审查要点清单列表web页面链接(此web页面可以通过iframe方式嵌入到贵方系统的网页中)。
|
|
2855
|
+
|
|
2856
|
+
# 适用场景:根据合同内容识别出合同的风险信息。审查结果由AI生成,仅供参考。请结合相关法律法规和公司制度要求综合判断。
|
|
2857
|
+
|
|
2858
|
+
# 注意: `如果文件资源为word类型生成的链接不能进行iframe嵌入,需要在单独窗口打开`
|
|
2859
|
+
|
|
2860
|
+
# @param request: Request instance for DescribeContractReviewChecklistsWebUrl.
|
|
2861
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::DescribeContractReviewChecklistsWebUrlRequest`
|
|
2862
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::DescribeContractReviewChecklistsWebUrlResponse`
|
|
2863
|
+
def DescribeContractReviewChecklistsWebUrl(request)
|
|
2864
|
+
body = send_request('DescribeContractReviewChecklistsWebUrl', request.serialize)
|
|
2865
|
+
response = JSON.parse(body)
|
|
2866
|
+
if response['Response'].key?('Error') == false
|
|
2867
|
+
model = DescribeContractReviewChecklistsWebUrlResponse.new
|
|
2868
|
+
model.deserialize(response['Response'])
|
|
2869
|
+
model
|
|
2870
|
+
else
|
|
2871
|
+
code = response['Response']['Error']['Code']
|
|
2872
|
+
message = response['Response']['Error']['Message']
|
|
2873
|
+
reqid = response['Response']['RequestId']
|
|
2874
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
2875
|
+
end
|
|
2876
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
2877
|
+
raise e
|
|
2878
|
+
rescue StandardError => e
|
|
2879
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
2880
|
+
end
|
|
2881
|
+
|
|
2798
2882
|
# 本接口(DescribeContractReviewTask)用于获取合同审查任务详情,包括任务的状态和识别出的风险信息。
|
|
2799
2883
|
|
|
2800
2884
|
# @param request: Request instance for DescribeContractReviewTask.
|
|
@@ -2819,6 +2903,34 @@ module TencentCloud
|
|
|
2819
2903
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
2820
2904
|
end
|
|
2821
2905
|
|
|
2906
|
+
# 此接口(DescribeContractReviewTaskListWebUrl)用来创建合同审查记录列表web页面链接(此web页面可以通过iframe方式嵌入到贵方系统的网页中)。
|
|
2907
|
+
|
|
2908
|
+
# 适用场景:根据合同内容识别出合同的风险信息。审查结果由AI生成,仅供参考。请结合相关法律法规和公司制度要求综合判断。
|
|
2909
|
+
|
|
2910
|
+
# 注意: `如果文件资源为word类型生成的链接不能进行iframe嵌入,需要在单独窗口打开`
|
|
2911
|
+
|
|
2912
|
+
# @param request: Request instance for DescribeContractReviewTaskListWebUrl.
|
|
2913
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::DescribeContractReviewTaskListWebUrlRequest`
|
|
2914
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::DescribeContractReviewTaskListWebUrlResponse`
|
|
2915
|
+
def DescribeContractReviewTaskListWebUrl(request)
|
|
2916
|
+
body = send_request('DescribeContractReviewTaskListWebUrl', request.serialize)
|
|
2917
|
+
response = JSON.parse(body)
|
|
2918
|
+
if response['Response'].key?('Error') == false
|
|
2919
|
+
model = DescribeContractReviewTaskListWebUrlResponse.new
|
|
2920
|
+
model.deserialize(response['Response'])
|
|
2921
|
+
model
|
|
2922
|
+
else
|
|
2923
|
+
code = response['Response']['Error']['Code']
|
|
2924
|
+
message = response['Response']['Error']['Message']
|
|
2925
|
+
reqid = response['Response']['RequestId']
|
|
2926
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
2927
|
+
end
|
|
2928
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
2929
|
+
raise e
|
|
2930
|
+
rescue StandardError => e
|
|
2931
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
2932
|
+
end
|
|
2933
|
+
|
|
2822
2934
|
# 此接口(DescribeContractReviewWebUrl)用来创建合同审查web页面链接(此web页面可以通过iframe方式嵌入到贵方系统的网页中)。
|
|
2823
2935
|
|
|
2824
2936
|
# 适用场景:根据合同内容识别出合同的风险信息。审查结果由AI生成,仅供参考。请结合相关法律法规和公司制度要求综合判断。
|
|
@@ -3641,6 +3753,30 @@ module TencentCloud
|
|
|
3641
3753
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
3642
3754
|
end
|
|
3643
3755
|
|
|
3756
|
+
# 本接口(ExportContractReviewResult)用于导出和同审查结果。支持选择 1 “带风险批注文件”、 2 “审查结果&摘要(.xIsx)”
|
|
3757
|
+
|
|
3758
|
+
# @param request: Request instance for ExportContractReviewResult.
|
|
3759
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::ExportContractReviewResultRequest`
|
|
3760
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::ExportContractReviewResultResponse`
|
|
3761
|
+
def ExportContractReviewResult(request)
|
|
3762
|
+
body = send_request('ExportContractReviewResult', request.serialize)
|
|
3763
|
+
response = JSON.parse(body)
|
|
3764
|
+
if response['Response'].key?('Error') == false
|
|
3765
|
+
model = ExportContractReviewResultResponse.new
|
|
3766
|
+
model.deserialize(response['Response'])
|
|
3767
|
+
model
|
|
3768
|
+
else
|
|
3769
|
+
code = response['Response']['Error']['Code']
|
|
3770
|
+
message = response['Response']['Error']['Message']
|
|
3771
|
+
reqid = response['Response']['RequestId']
|
|
3772
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
3773
|
+
end
|
|
3774
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
3775
|
+
raise e
|
|
3776
|
+
rescue StandardError => e
|
|
3777
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
3778
|
+
end
|
|
3779
|
+
|
|
3644
3780
|
# 此接口(GetTaskResultApi)用来查询转换任务的状态。如需发起转换任务,请使用<a href="https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi" target="_blank">创建文件转换任务接口</a>进行资源文件的转换操作<br />
|
|
3645
3781
|
# 前提条件:已调用 <a href="https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi" target="_blank">创建文件转换任务接口</a>进行文件转换,并得到了返回的转换任务Id。<br />
|
|
3646
3782
|
|
data/lib/v20201111/models.rb
CHANGED
|
@@ -1720,6 +1720,22 @@ module TencentCloud
|
|
|
1720
1720
|
end
|
|
1721
1721
|
end
|
|
1722
1722
|
|
|
1723
|
+
# 合同审查清单个性化参数,用于控制页面的展示内容
|
|
1724
|
+
class ContractReviewChecklistWebUrlOption < TencentCloud::Common::AbstractModel
|
|
1725
|
+
# @param DisableCreateChecklist: 禁用新建清单功能。默认 false,设置为 true 会隐藏界面的新建按钮。
|
|
1726
|
+
# @type DisableCreateChecklist: Boolean
|
|
1727
|
+
|
|
1728
|
+
attr_accessor :DisableCreateChecklist
|
|
1729
|
+
|
|
1730
|
+
def initialize(disablecreatechecklist=nil)
|
|
1731
|
+
@DisableCreateChecklist = disablecreatechecklist
|
|
1732
|
+
end
|
|
1733
|
+
|
|
1734
|
+
def deserialize(params)
|
|
1735
|
+
@DisableCreateChecklist = params['DisableCreateChecklist']
|
|
1736
|
+
end
|
|
1737
|
+
end
|
|
1738
|
+
|
|
1723
1739
|
# 合同审查个性化参数,用于控制页面的展示内容
|
|
1724
1740
|
class ContractReviewWebUrlOption < TencentCloud::Common::AbstractModel
|
|
1725
1741
|
# @param DisableTemporaryStore: 禁用暂存。 默认 false,设置为 true 会隐藏界面上的临时保存按钮
|
|
@@ -2218,6 +2234,7 @@ module TencentCloud
|
|
|
2218
2234
|
# <li>AUTH_JOIN_ORGANIZATION_GROUP : 加入集团企业</li>
|
|
2219
2235
|
# <li>OPEN_AUTO_SIGN :开通企业自动签署</li>
|
|
2220
2236
|
# <li>PARTNER_AUTO_SIGN_AUTH :合作方企业授权自动签</li>
|
|
2237
|
+
# <li>CHANGE_SUB_ORGANIZATION_ADMIN_AUTH :变更子企业超管授权(**授权后,主企业可变更子企业超管,此功能需联系客户经理开通白名单使用**)</li>
|
|
2221
2238
|
# </ul>
|
|
2222
2239
|
# @type OperateTypes: Array
|
|
2223
2240
|
# @param OrganizationIds: 批量操作的企业Id列表,最大支持50个
|
|
@@ -2230,15 +2247,18 @@ module TencentCloud
|
|
|
2230
2247
|
|
|
2231
2248
|
# 
|
|
2232
2249
|
# @type AuthorizedOrganizationId: String
|
|
2250
|
+
# @param ChangeAdminAuthAutoSign: 初始化操作类型里含有CHANGE_SUB_ORGANIZATION_ADMIN_AUTH(变更子企业超管授权)操作类型时,授权协议中主企业的签署方是否使用自动签(需操作人有自动签授权)
|
|
2251
|
+
# @type ChangeAdminAuthAutoSign: Boolean
|
|
2233
2252
|
|
|
2234
|
-
attr_accessor :Operator, :OperateTypes, :OrganizationIds, :Agent, :AuthorizedOrganizationId
|
|
2253
|
+
attr_accessor :Operator, :OperateTypes, :OrganizationIds, :Agent, :AuthorizedOrganizationId, :ChangeAdminAuthAutoSign
|
|
2235
2254
|
|
|
2236
|
-
def initialize(operator=nil, operatetypes=nil, organizationids=nil, agent=nil, authorizedorganizationid=nil)
|
|
2255
|
+
def initialize(operator=nil, operatetypes=nil, organizationids=nil, agent=nil, authorizedorganizationid=nil, changeadminauthautosign=nil)
|
|
2237
2256
|
@Operator = operator
|
|
2238
2257
|
@OperateTypes = operatetypes
|
|
2239
2258
|
@OrganizationIds = organizationids
|
|
2240
2259
|
@Agent = agent
|
|
2241
2260
|
@AuthorizedOrganizationId = authorizedorganizationid
|
|
2261
|
+
@ChangeAdminAuthAutoSign = changeadminauthautosign
|
|
2242
2262
|
end
|
|
2243
2263
|
|
|
2244
2264
|
def deserialize(params)
|
|
@@ -2253,6 +2273,7 @@ module TencentCloud
|
|
|
2253
2273
|
@Agent.deserialize(params['Agent'])
|
|
2254
2274
|
end
|
|
2255
2275
|
@AuthorizedOrganizationId = params['AuthorizedOrganizationId']
|
|
2276
|
+
@ChangeAdminAuthAutoSign = params['ChangeAdminAuthAutoSign']
|
|
2256
2277
|
end
|
|
2257
2278
|
end
|
|
2258
2279
|
|
|
@@ -2957,6 +2978,47 @@ module TencentCloud
|
|
|
2957
2978
|
end
|
|
2958
2979
|
end
|
|
2959
2980
|
|
|
2981
|
+
# CreateContractReviewChecklistWebUrl请求参数结构体
|
|
2982
|
+
class CreateContractReviewChecklistWebUrlRequest < TencentCloud::Common::AbstractModel
|
|
2983
|
+
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。
|
|
2984
|
+
|
|
2985
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
2986
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
|
2987
|
+
|
|
2988
|
+
attr_accessor :Operator
|
|
2989
|
+
|
|
2990
|
+
def initialize(operator=nil)
|
|
2991
|
+
@Operator = operator
|
|
2992
|
+
end
|
|
2993
|
+
|
|
2994
|
+
def deserialize(params)
|
|
2995
|
+
unless params['Operator'].nil?
|
|
2996
|
+
@Operator = UserInfo.new
|
|
2997
|
+
@Operator.deserialize(params['Operator'])
|
|
2998
|
+
end
|
|
2999
|
+
end
|
|
3000
|
+
end
|
|
3001
|
+
|
|
3002
|
+
# CreateContractReviewChecklistWebUrl返回参数结构体
|
|
3003
|
+
class CreateContractReviewChecklistWebUrlResponse < TencentCloud::Common::AbstractModel
|
|
3004
|
+
# @param WebUrl: 嵌入式web页面链接。注意:`链接有效期为5分钟,且链接仅能使用一次。`
|
|
3005
|
+
# @type WebUrl: String
|
|
3006
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3007
|
+
# @type RequestId: String
|
|
3008
|
+
|
|
3009
|
+
attr_accessor :WebUrl, :RequestId
|
|
3010
|
+
|
|
3011
|
+
def initialize(weburl=nil, requestid=nil)
|
|
3012
|
+
@WebUrl = weburl
|
|
3013
|
+
@RequestId = requestid
|
|
3014
|
+
end
|
|
3015
|
+
|
|
3016
|
+
def deserialize(params)
|
|
3017
|
+
@WebUrl = params['WebUrl']
|
|
3018
|
+
@RequestId = params['RequestId']
|
|
3019
|
+
end
|
|
3020
|
+
end
|
|
3021
|
+
|
|
2960
3022
|
# CreateContractReviewWebUrl请求参数结构体
|
|
2961
3023
|
class CreateContractReviewWebUrlRequest < TencentCloud::Common::AbstractModel
|
|
2962
3024
|
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。
|
|
@@ -3135,11 +3197,7 @@ module TencentCloud
|
|
|
3135
3197
|
# @type FormFields: Array
|
|
3136
3198
|
# @param NeedPreview: 是否为预览模式,取值如下:<ul><li> **false**:非预览模式(默认),会产生合同流程并返回合同流程编号FlowId。</li> <li> **true**:预览模式,不产生合同流程,不返回合同流程编号FlowId,而是返回预览链接PreviewUrl,有效期为300秒,用于查看真实发起后合同的样子。 <font color="red">注意: 1.以预览模式创建的合同仅供查看,因此参与方无法进行签署操作;;2.以预览模式调用该接口返回的FlowId为临时Flowld,无法用于发起和拉取信息。</font> </li></ul>注: `当使用的模板中存在动态表格控件时,预览结果中没有动态表格的填写内容,动态表格合成完后会触发文档合成完成的回调通知`
|
|
3137
3199
|
# @type NeedPreview: Boolean
|
|
3138
|
-
# @param PreviewType: 预览模式下产生的预览链接类型
|
|
3139
|
-
# <ul><li> **0** :(默认) 文件流 ,点开后下载预览的合同PDF文件 </li>
|
|
3140
|
-
# <li> **1** :H5链接 ,点开后在浏览器中展示合同的样子。</li></ul>
|
|
3141
|
-
# 注: `1.此参数在NeedPreview 为true时有效`
|
|
3142
|
-
# `2.动态表格控件不支持H5链接方式预览`
|
|
3200
|
+
# @param PreviewType: 预览模式下产生的预览链接类型 <ul><li> **0** :(默认) 文件流 ,点开后下载预览的合同PDF文件 </li><li> **1** :H5链接 ,点开后在浏览器中展示合同的样子。</li></ul>注: `1.此参数在NeedPreview 为true时有效`
|
|
3143
3201
|
# @type PreviewType: Integer
|
|
3144
3202
|
# @param Agent: 代理企业和员工的信息。
|
|
3145
3203
|
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
@@ -9315,6 +9373,144 @@ module TencentCloud
|
|
|
9315
9373
|
end
|
|
9316
9374
|
end
|
|
9317
9375
|
|
|
9376
|
+
# DescribeContractReviewChecklistWebUrl请求参数结构体
|
|
9377
|
+
class DescribeContractReviewChecklistWebUrlRequest < TencentCloud::Common::AbstractModel
|
|
9378
|
+
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。
|
|
9379
|
+
|
|
9380
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
9381
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
|
9382
|
+
# @param Id: 清单 id
|
|
9383
|
+
# @type Id: String
|
|
9384
|
+
|
|
9385
|
+
attr_accessor :Operator, :Id
|
|
9386
|
+
|
|
9387
|
+
def initialize(operator=nil, id=nil)
|
|
9388
|
+
@Operator = operator
|
|
9389
|
+
@Id = id
|
|
9390
|
+
end
|
|
9391
|
+
|
|
9392
|
+
def deserialize(params)
|
|
9393
|
+
unless params['Operator'].nil?
|
|
9394
|
+
@Operator = UserInfo.new
|
|
9395
|
+
@Operator.deserialize(params['Operator'])
|
|
9396
|
+
end
|
|
9397
|
+
@Id = params['Id']
|
|
9398
|
+
end
|
|
9399
|
+
end
|
|
9400
|
+
|
|
9401
|
+
# DescribeContractReviewChecklistWebUrl返回参数结构体
|
|
9402
|
+
class DescribeContractReviewChecklistWebUrlResponse < TencentCloud::Common::AbstractModel
|
|
9403
|
+
# @param WebUrl: 嵌入式web页面链接。注意:`链接有效期为5分钟,且链接仅能使用一次。`
|
|
9404
|
+
# @type WebUrl: String
|
|
9405
|
+
# @param Id: 清单 id
|
|
9406
|
+
# @type Id: String
|
|
9407
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9408
|
+
# @type RequestId: String
|
|
9409
|
+
|
|
9410
|
+
attr_accessor :WebUrl, :Id, :RequestId
|
|
9411
|
+
|
|
9412
|
+
def initialize(weburl=nil, id=nil, requestid=nil)
|
|
9413
|
+
@WebUrl = weburl
|
|
9414
|
+
@Id = id
|
|
9415
|
+
@RequestId = requestid
|
|
9416
|
+
end
|
|
9417
|
+
|
|
9418
|
+
def deserialize(params)
|
|
9419
|
+
@WebUrl = params['WebUrl']
|
|
9420
|
+
@Id = params['Id']
|
|
9421
|
+
@RequestId = params['RequestId']
|
|
9422
|
+
end
|
|
9423
|
+
end
|
|
9424
|
+
|
|
9425
|
+
# DescribeContractReviewChecklistsWebUrl请求参数结构体
|
|
9426
|
+
class DescribeContractReviewChecklistsWebUrlRequest < TencentCloud::Common::AbstractModel
|
|
9427
|
+
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。
|
|
9428
|
+
|
|
9429
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
9430
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
|
9431
|
+
# @param Option: 合同审查清单个性化参数
|
|
9432
|
+
# @type Option: :class:`Tencentcloud::Ess.v20201111.models.ContractReviewChecklistWebUrlOption`
|
|
9433
|
+
|
|
9434
|
+
attr_accessor :Operator, :Option
|
|
9435
|
+
|
|
9436
|
+
def initialize(operator=nil, option=nil)
|
|
9437
|
+
@Operator = operator
|
|
9438
|
+
@Option = option
|
|
9439
|
+
end
|
|
9440
|
+
|
|
9441
|
+
def deserialize(params)
|
|
9442
|
+
unless params['Operator'].nil?
|
|
9443
|
+
@Operator = UserInfo.new
|
|
9444
|
+
@Operator.deserialize(params['Operator'])
|
|
9445
|
+
end
|
|
9446
|
+
unless params['Option'].nil?
|
|
9447
|
+
@Option = ContractReviewChecklistWebUrlOption.new
|
|
9448
|
+
@Option.deserialize(params['Option'])
|
|
9449
|
+
end
|
|
9450
|
+
end
|
|
9451
|
+
end
|
|
9452
|
+
|
|
9453
|
+
# DescribeContractReviewChecklistsWebUrl返回参数结构体
|
|
9454
|
+
class DescribeContractReviewChecklistsWebUrlResponse < TencentCloud::Common::AbstractModel
|
|
9455
|
+
# @param WebUrl: 嵌入式web页面链接。注意:`链接有效期为5分钟,且链接仅能使用一次。`
|
|
9456
|
+
# @type WebUrl: String
|
|
9457
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9458
|
+
# @type RequestId: String
|
|
9459
|
+
|
|
9460
|
+
attr_accessor :WebUrl, :RequestId
|
|
9461
|
+
|
|
9462
|
+
def initialize(weburl=nil, requestid=nil)
|
|
9463
|
+
@WebUrl = weburl
|
|
9464
|
+
@RequestId = requestid
|
|
9465
|
+
end
|
|
9466
|
+
|
|
9467
|
+
def deserialize(params)
|
|
9468
|
+
@WebUrl = params['WebUrl']
|
|
9469
|
+
@RequestId = params['RequestId']
|
|
9470
|
+
end
|
|
9471
|
+
end
|
|
9472
|
+
|
|
9473
|
+
# DescribeContractReviewTaskListWebUrl请求参数结构体
|
|
9474
|
+
class DescribeContractReviewTaskListWebUrlRequest < TencentCloud::Common::AbstractModel
|
|
9475
|
+
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。
|
|
9476
|
+
|
|
9477
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
9478
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
|
9479
|
+
|
|
9480
|
+
attr_accessor :Operator
|
|
9481
|
+
|
|
9482
|
+
def initialize(operator=nil)
|
|
9483
|
+
@Operator = operator
|
|
9484
|
+
end
|
|
9485
|
+
|
|
9486
|
+
def deserialize(params)
|
|
9487
|
+
unless params['Operator'].nil?
|
|
9488
|
+
@Operator = UserInfo.new
|
|
9489
|
+
@Operator.deserialize(params['Operator'])
|
|
9490
|
+
end
|
|
9491
|
+
end
|
|
9492
|
+
end
|
|
9493
|
+
|
|
9494
|
+
# DescribeContractReviewTaskListWebUrl返回参数结构体
|
|
9495
|
+
class DescribeContractReviewTaskListWebUrlResponse < TencentCloud::Common::AbstractModel
|
|
9496
|
+
# @param WebUrl: 嵌入式web页面链接。注意:`链接有效期为5分钟,且链接仅能使用一次。`
|
|
9497
|
+
# @type WebUrl: String
|
|
9498
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9499
|
+
# @type RequestId: String
|
|
9500
|
+
|
|
9501
|
+
attr_accessor :WebUrl, :RequestId
|
|
9502
|
+
|
|
9503
|
+
def initialize(weburl=nil, requestid=nil)
|
|
9504
|
+
@WebUrl = weburl
|
|
9505
|
+
@RequestId = requestid
|
|
9506
|
+
end
|
|
9507
|
+
|
|
9508
|
+
def deserialize(params)
|
|
9509
|
+
@WebUrl = params['WebUrl']
|
|
9510
|
+
@RequestId = params['RequestId']
|
|
9511
|
+
end
|
|
9512
|
+
end
|
|
9513
|
+
|
|
9318
9514
|
# DescribeContractReviewTask请求参数结构体
|
|
9319
9515
|
class DescribeContractReviewTaskRequest < TencentCloud::Common::AbstractModel
|
|
9320
9516
|
# @param Operator: 执行本接口操作的员工信息。
|
|
@@ -11699,6 +11895,62 @@ module TencentCloud
|
|
|
11699
11895
|
end
|
|
11700
11896
|
end
|
|
11701
11897
|
|
|
11898
|
+
# ExportContractReviewResult请求参数结构体
|
|
11899
|
+
class ExportContractReviewResultRequest < TencentCloud::Common::AbstractModel
|
|
11900
|
+
# @param Operator: 执行本接口操作的员工信息。
|
|
11901
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
11902
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
|
11903
|
+
# @param TaskId: 合同审查任务ID
|
|
11904
|
+
# @type TaskId: String
|
|
11905
|
+
# @param FileType: 导出文件类型。1 = 带风险批注文件; 2 = 审查结果&摘要(.xIsx)
|
|
11906
|
+
# @type FileType: Integer
|
|
11907
|
+
# @param Agent: 代理企业和员工的信息。
|
|
11908
|
+
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
11909
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
|
11910
|
+
|
|
11911
|
+
attr_accessor :Operator, :TaskId, :FileType, :Agent
|
|
11912
|
+
|
|
11913
|
+
def initialize(operator=nil, taskid=nil, filetype=nil, agent=nil)
|
|
11914
|
+
@Operator = operator
|
|
11915
|
+
@TaskId = taskid
|
|
11916
|
+
@FileType = filetype
|
|
11917
|
+
@Agent = agent
|
|
11918
|
+
end
|
|
11919
|
+
|
|
11920
|
+
def deserialize(params)
|
|
11921
|
+
unless params['Operator'].nil?
|
|
11922
|
+
@Operator = UserInfo.new
|
|
11923
|
+
@Operator.deserialize(params['Operator'])
|
|
11924
|
+
end
|
|
11925
|
+
@TaskId = params['TaskId']
|
|
11926
|
+
@FileType = params['FileType']
|
|
11927
|
+
unless params['Agent'].nil?
|
|
11928
|
+
@Agent = Agent.new
|
|
11929
|
+
@Agent.deserialize(params['Agent'])
|
|
11930
|
+
end
|
|
11931
|
+
end
|
|
11932
|
+
end
|
|
11933
|
+
|
|
11934
|
+
# ExportContractReviewResult返回参数结构体
|
|
11935
|
+
class ExportContractReviewResultResponse < TencentCloud::Common::AbstractModel
|
|
11936
|
+
# @param Url: 文件下载链接
|
|
11937
|
+
# @type Url: String
|
|
11938
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11939
|
+
# @type RequestId: String
|
|
11940
|
+
|
|
11941
|
+
attr_accessor :Url, :RequestId
|
|
11942
|
+
|
|
11943
|
+
def initialize(url=nil, requestid=nil)
|
|
11944
|
+
@Url = url
|
|
11945
|
+
@RequestId = requestid
|
|
11946
|
+
end
|
|
11947
|
+
|
|
11948
|
+
def deserialize(params)
|
|
11949
|
+
@Url = params['Url']
|
|
11950
|
+
@RequestId = params['RequestId']
|
|
11951
|
+
end
|
|
11952
|
+
end
|
|
11953
|
+
|
|
11702
11954
|
# 扩展服务开通和授权的详细信息
|
|
11703
11955
|
class ExtendAuthInfo < TencentCloud::Common::AbstractModel
|
|
11704
11956
|
# @param Type: 扩展服务的类型,可能是以下值:
|
|
@@ -12420,6 +12672,7 @@ module TencentCloud
|
|
|
12420
12672
|
# <li> **8** : 等待填写</li>
|
|
12421
12673
|
# <li> **9** : 部分填写</li>
|
|
12422
12674
|
# <li> **10** : 已拒填</li>
|
|
12675
|
+
# <li> **16** : 已失效(签署期间有签署人改名等原因导致)</li>
|
|
12423
12676
|
# <li> **21** : 已解除</li></ul>
|
|
12424
12677
|
# @type FlowStatus: Integer
|
|
12425
12678
|
# @param CreatedOn: 合同流程创建时间,格式为Unix标准时间戳(秒)。
|
|
@@ -12770,7 +13023,21 @@ module TencentCloud
|
|
|
12770
13023
|
# @param FlowType: 合同流程的类别分类(如销售合同/入职合同等)。
|
|
12771
13024
|
# 该字段将被废弃,不建议使用。
|
|
12772
13025
|
# @type FlowType: String
|
|
12773
|
-
# @param FlowStatus: 合同流程当前的签署状态, 会存在下列的状态值
|
|
13026
|
+
# @param FlowStatus: 合同流程当前的签署状态, 会存在下列的状态值
|
|
13027
|
+
# <ul>
|
|
13028
|
+
# <li> **0** : 未开启流程(合同中不存在填写环节)</li>
|
|
13029
|
+
# <li> **1** : 待签署</li>
|
|
13030
|
+
# <li> **2** : 部分签署</li>
|
|
13031
|
+
# <li> **3** : 已拒签</li>
|
|
13032
|
+
# <li> **4** : 已签署</li>
|
|
13033
|
+
# <li> **5** : 已过期</li>
|
|
13034
|
+
# <li> **6** : 已撤销</li>
|
|
13035
|
+
# <li> **7** : 未开启流程(合同中存在填写环节)</li>
|
|
13036
|
+
# <li> **8** : 等待填写</li>
|
|
13037
|
+
# <li> **9** : 部分填写</li>
|
|
13038
|
+
# <li> **10** : 已拒填</li>
|
|
13039
|
+
# <li> **16** : 已失效(可能因为参与方修改姓名等原因)</li>
|
|
13040
|
+
# <li> **21** : 已解除</li></ul>
|
|
12774
13041
|
# @type FlowStatus: Integer
|
|
12775
13042
|
# @param FlowMessage: 当合同流程状态为已拒签(即 FlowStatus=3)或已撤销(即 FlowStatus=6)时,此字段 FlowMessage 为拒签或撤销原因。
|
|
12776
13043
|
# @type FlowMessage: String
|
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.1201
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
+
- lib/tencentcloud-sdk-ess.rb
|
|
36
37
|
- lib/v20201111/client.rb
|
|
37
38
|
- lib/v20201111/models.rb
|
|
38
|
-
- lib/tencentcloud-sdk-ess.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|