tencentcloud-sdk-ess 3.0.1149 → 3.0.1152
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 +132 -0
- data/lib/v20201111/models.rb +483 -88
- 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: 7614b21a865334df100b3e6e3dab2d51e8f79748
|
4
|
+
data.tar.gz: 02563da3be578987b4b3b92469b114703bf798d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 747dffbd8bc58554628978425523ea08b5c5ee27e1059404225c6827545b25751f0e3c5a5284e8910001d824fc202dc5b4d3cdd3414157e4a5f8b4cc0dd052ff
|
7
|
+
data.tar.gz: 1ac8db302997a8ae5c1753e44bdcaf6737b091c93f62a2a81ca4ef654a9e0f17df037b9e42932f40809c384f715f0323d4ffd4e61f83c7a28c336490b81806f8
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1152
|
data/lib/v20201111/client.rb
CHANGED
@@ -2113,6 +2113,37 @@ module TencentCloud
|
|
2113
2113
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2114
2114
|
end
|
2115
2115
|
|
2116
|
+
# 此接口(CreateSingleSignOnEmployees)用于创建单点登录企业员工。
|
2117
|
+
# 创建好的员工,可以通过腾讯电子签提供的链接, 如下图位置,进行登录。
|
2118
|
+
# 此操作的功能:
|
2119
|
+
# 1. 可以绑定已经实名的员工,然后 sso 登录实名绑定。
|
2120
|
+
# 2. 可以提前导入员工,在 sso 登录的时候进行实名。
|
2121
|
+
# 3. 如果已经绑定过,可以直接通过 sso 链接登录腾讯电子签。
|
2122
|
+
|
2123
|
+
# 
|
2124
|
+
|
2125
|
+
# @param request: Request instance for CreateSingleSignOnEmployees.
|
2126
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::CreateSingleSignOnEmployeesRequest`
|
2127
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::CreateSingleSignOnEmployeesResponse`
|
2128
|
+
def CreateSingleSignOnEmployees(request)
|
2129
|
+
body = send_request('CreateSingleSignOnEmployees', request.serialize)
|
2130
|
+
response = JSON.parse(body)
|
2131
|
+
if response['Response'].key?('Error') == false
|
2132
|
+
model = CreateSingleSignOnEmployeesResponse.new
|
2133
|
+
model.deserialize(response['Response'])
|
2134
|
+
model
|
2135
|
+
else
|
2136
|
+
code = response['Response']['Error']['Code']
|
2137
|
+
message = response['Response']['Error']['Message']
|
2138
|
+
reqid = response['Response']['RequestId']
|
2139
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2140
|
+
end
|
2141
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2142
|
+
raise e
|
2143
|
+
rescue StandardError => e
|
2144
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2145
|
+
end
|
2146
|
+
|
2116
2147
|
# 获取个人用户自动签的开通链接。
|
2117
2148
|
|
2118
2149
|
# 注意: `处方单等特殊场景专用,此接口为白名单功能,使用前请联系对接的客户经理沟通。`
|
@@ -2441,6 +2472,34 @@ module TencentCloud
|
|
2441
2472
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2442
2473
|
end
|
2443
2474
|
|
2475
|
+
# 此接口(DeleteSingleSignOnEmployees)用于删除单点登录企业员工。
|
2476
|
+
# 注意:
|
2477
|
+
# 此接口只能删除未跟腾讯电子签绑定的单点登录企业员工,
|
2478
|
+
# 如果企业员工的单点登录信息已经和腾讯电子签里面的企业员工绑定,需要企业的超级管理员或者组织管理员在腾讯电子签控制台对当前企业员工进行离职操作,如下图操作。
|
2479
|
+
# 
|
2480
|
+
|
2481
|
+
# @param request: Request instance for DeleteSingleSignOnEmployees.
|
2482
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::DeleteSingleSignOnEmployeesRequest`
|
2483
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::DeleteSingleSignOnEmployeesResponse`
|
2484
|
+
def DeleteSingleSignOnEmployees(request)
|
2485
|
+
body = send_request('DeleteSingleSignOnEmployees', request.serialize)
|
2486
|
+
response = JSON.parse(body)
|
2487
|
+
if response['Response'].key?('Error') == false
|
2488
|
+
model = DeleteSingleSignOnEmployeesResponse.new
|
2489
|
+
model.deserialize(response['Response'])
|
2490
|
+
model
|
2491
|
+
else
|
2492
|
+
code = response['Response']['Error']['Code']
|
2493
|
+
message = response['Response']['Error']['Message']
|
2494
|
+
reqid = response['Response']['RequestId']
|
2495
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2496
|
+
end
|
2497
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2498
|
+
raise e
|
2499
|
+
rescue StandardError => e
|
2500
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2501
|
+
end
|
2502
|
+
|
2444
2503
|
# 本接口(DescribeBatchOrganizationRegistrationTasks)用于查询企业批量认证任务状态。
|
2445
2504
|
|
2446
2505
|
# @param request: Request instance for DescribeBatchOrganizationRegistrationTasks.
|
@@ -2565,6 +2624,30 @@ module TencentCloud
|
|
2565
2624
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2566
2625
|
end
|
2567
2626
|
|
2627
|
+
# 本接口(DescribeContractComparisonTask)用于查询合同对比任务结果详情。
|
2628
|
+
|
2629
|
+
# @param request: Request instance for DescribeContractComparisonTask.
|
2630
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::DescribeContractComparisonTaskRequest`
|
2631
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::DescribeContractComparisonTaskResponse`
|
2632
|
+
def DescribeContractComparisonTask(request)
|
2633
|
+
body = send_request('DescribeContractComparisonTask', request.serialize)
|
2634
|
+
response = JSON.parse(body)
|
2635
|
+
if response['Response'].key?('Error') == false
|
2636
|
+
model = DescribeContractComparisonTaskResponse.new
|
2637
|
+
model.deserialize(response['Response'])
|
2638
|
+
model
|
2639
|
+
else
|
2640
|
+
code = response['Response']['Error']['Code']
|
2641
|
+
message = response['Response']['Error']['Message']
|
2642
|
+
reqid = response['Response']['RequestId']
|
2643
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2644
|
+
end
|
2645
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2646
|
+
raise e
|
2647
|
+
rescue StandardError => e
|
2648
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2649
|
+
end
|
2650
|
+
|
2568
2651
|
# 接口(DescribeContractDiffTaskWebUrl)用于获取合同对比结果可嵌入的web页面链接(此web页面可以通过iframe方式嵌入到贵方系统的网页中)。
|
2569
2652
|
# 注:本接口生成的web页面暂不支持<a href="https://qian.tencent.com/developers/companyApis/embedPages/CreateWebThemeConfig" target="_blank">设置本企业嵌入式页面主题配置</a>
|
2570
2653
|
|
@@ -3220,6 +3303,30 @@ module TencentCloud
|
|
3220
3303
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3221
3304
|
end
|
3222
3305
|
|
3306
|
+
# 此接口(DescribeSingleSignOnEmployees)用于查询单点登录企业员工。
|
3307
|
+
|
3308
|
+
# @param request: Request instance for DescribeSingleSignOnEmployees.
|
3309
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::DescribeSingleSignOnEmployeesRequest`
|
3310
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::DescribeSingleSignOnEmployeesResponse`
|
3311
|
+
def DescribeSingleSignOnEmployees(request)
|
3312
|
+
body = send_request('DescribeSingleSignOnEmployees', request.serialize)
|
3313
|
+
response = JSON.parse(body)
|
3314
|
+
if response['Response'].key?('Error') == false
|
3315
|
+
model = DescribeSingleSignOnEmployeesResponse.new
|
3316
|
+
model.deserialize(response['Response'])
|
3317
|
+
model
|
3318
|
+
else
|
3319
|
+
code = response['Response']['Error']['Code']
|
3320
|
+
message = response['Response']['Error']['Message']
|
3321
|
+
reqid = response['Response']['RequestId']
|
3322
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3323
|
+
end
|
3324
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3325
|
+
raise e
|
3326
|
+
rescue StandardError => e
|
3327
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3328
|
+
end
|
3329
|
+
|
3223
3330
|
# 通过AuthCode查询个人用户是否实名
|
3224
3331
|
|
3225
3332
|
|
@@ -3586,6 +3693,31 @@ module TencentCloud
|
|
3586
3693
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3587
3694
|
end
|
3588
3695
|
|
3696
|
+
# 此接口(ModifySingleSignOnEmployees)用于修改单点登录企业员工。
|
3697
|
+
# 注意: 此接口只能修改未跟腾讯电子签绑定的单点登录企业员工, 如果企业员工的单点登录信息已经和腾讯电子签里面的企业员工绑定,需要在腾讯电子签小程序进行个人信息变更操作。
|
3698
|
+
|
3699
|
+
# @param request: Request instance for ModifySingleSignOnEmployees.
|
3700
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::ModifySingleSignOnEmployeesRequest`
|
3701
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::ModifySingleSignOnEmployeesResponse`
|
3702
|
+
def ModifySingleSignOnEmployees(request)
|
3703
|
+
body = send_request('ModifySingleSignOnEmployees', request.serialize)
|
3704
|
+
response = JSON.parse(body)
|
3705
|
+
if response['Response'].key?('Error') == false
|
3706
|
+
model = ModifySingleSignOnEmployeesResponse.new
|
3707
|
+
model.deserialize(response['Response'])
|
3708
|
+
model
|
3709
|
+
else
|
3710
|
+
code = response['Response']['Error']['Code']
|
3711
|
+
message = response['Response']['Error']['Message']
|
3712
|
+
reqid = response['Response']['RequestId']
|
3713
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3714
|
+
end
|
3715
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3716
|
+
raise e
|
3717
|
+
rescue StandardError => e
|
3718
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3719
|
+
end
|
3720
|
+
|
3589
3721
|
# 修改印章状态(停用、启用)
|
3590
3722
|
|
3591
3723
|
# @param request: Request instance for OperateSeals.
|
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, 10
|
55
|
+
deprecate :AppId=, :none, 2025, 10
|
56
|
+
deprecate :ProxyAppId, :none, 2025, 10
|
57
|
+
deprecate :ProxyAppId=, :none, 2025, 10
|
58
|
+
deprecate :ProxyOperator, :none, 2025, 10
|
59
|
+
deprecate :ProxyOperator=, :none, 2025, 10
|
60
60
|
|
61
61
|
def initialize(appid=nil, proxyappid=nil, proxyorganizationid=nil, proxyoperator=nil)
|
62
62
|
@AppId = appid
|
@@ -700,8 +700,8 @@ module TencentCloud
|
|
700
700
|
|
701
701
|
attr_accessor :UserInfo, :CertInfoCallback, :UserDefineSeal, :SealImgCallback, :CallbackUrl, :VerifyChannels, :LicenseType, :JumpUrl
|
702
702
|
extend Gem::Deprecate
|
703
|
-
deprecate :CallbackUrl, :none, 2025,
|
704
|
-
deprecate :CallbackUrl=, :none, 2025,
|
703
|
+
deprecate :CallbackUrl, :none, 2025, 10
|
704
|
+
deprecate :CallbackUrl=, :none, 2025, 10
|
705
705
|
|
706
706
|
def initialize(userinfo=nil, certinfocallback=nil, userdefineseal=nil, sealimgcallback=nil, callbackurl=nil, verifychannels=nil, licensetype=nil, jumpurl=nil)
|
707
707
|
@UserInfo = userinfo
|
@@ -943,8 +943,8 @@ module TencentCloud
|
|
943
943
|
|
944
944
|
attr_accessor :CallbackUrl, :Token, :CallbackKey, :CallbackToken
|
945
945
|
extend Gem::Deprecate
|
946
|
-
deprecate :Token, :none, 2025,
|
947
|
-
deprecate :Token=, :none, 2025,
|
946
|
+
deprecate :Token, :none, 2025, 10
|
947
|
+
deprecate :Token=, :none, 2025, 10
|
948
948
|
|
949
949
|
def initialize(callbackurl=nil, token=nil, callbackkey=nil, callbacktoken=nil)
|
950
950
|
@CallbackUrl = callbackurl
|
@@ -974,12 +974,12 @@ module TencentCloud
|
|
974
974
|
|
975
975
|
attr_accessor :ApplicationId, :OrganizationId, :OperatorId, :SubOrganizationId
|
976
976
|
extend Gem::Deprecate
|
977
|
-
deprecate :ApplicationId, :none, 2025,
|
978
|
-
deprecate :ApplicationId=, :none, 2025,
|
979
|
-
deprecate :OrganizationId, :none, 2025,
|
980
|
-
deprecate :OrganizationId=, :none, 2025,
|
981
|
-
deprecate :SubOrganizationId, :none, 2025,
|
982
|
-
deprecate :SubOrganizationId=, :none, 2025,
|
977
|
+
deprecate :ApplicationId, :none, 2025, 10
|
978
|
+
deprecate :ApplicationId=, :none, 2025, 10
|
979
|
+
deprecate :OrganizationId, :none, 2025, 10
|
980
|
+
deprecate :OrganizationId=, :none, 2025, 10
|
981
|
+
deprecate :SubOrganizationId, :none, 2025, 10
|
982
|
+
deprecate :SubOrganizationId=, :none, 2025, 10
|
983
983
|
|
984
984
|
def initialize(applicationid=nil, organizationid=nil, operatorid=nil, suborganizationid=nil)
|
985
985
|
@ApplicationId = applicationid
|
@@ -2585,8 +2585,8 @@ module TencentCloud
|
|
2585
2585
|
|
2586
2586
|
attr_accessor :ResourceType, :ResourceName, :ResourceId, :Operator, :Agent, :Organization
|
2587
2587
|
extend Gem::Deprecate
|
2588
|
-
deprecate :Organization, :none, 2025,
|
2589
|
-
deprecate :Organization=, :none, 2025,
|
2588
|
+
deprecate :Organization, :none, 2025, 10
|
2589
|
+
deprecate :Organization=, :none, 2025, 10
|
2590
2590
|
|
2591
2591
|
def initialize(resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, agent=nil, organization=nil)
|
2592
2592
|
@ResourceType = resourcetype
|
@@ -3657,8 +3657,8 @@ module TencentCloud
|
|
3657
3657
|
|
3658
3658
|
attr_accessor :ReportId, :Status, :ReportUrl, :RequestId
|
3659
3659
|
extend Gem::Deprecate
|
3660
|
-
deprecate :ReportUrl, :none, 2025,
|
3661
|
-
deprecate :ReportUrl=, :none, 2025,
|
3660
|
+
deprecate :ReportUrl, :none, 2025, 10
|
3661
|
+
deprecate :ReportUrl=, :none, 2025, 10
|
3662
3662
|
|
3663
3663
|
def initialize(reportid=nil, status=nil, reporturl=nil, requestid=nil)
|
3664
3664
|
@ReportId = reportid
|
@@ -4329,10 +4329,10 @@ module TencentCloud
|
|
4329
4329
|
|
4330
4330
|
attr_accessor :Operator, :FlowName, :Approvers, :FlowDescription, :FlowType, :ClientToken, :DeadLine, :RemindedOn, :UserData, :Unordered, :CustomShowMap, :NeedSignReview, :Agent, :CcInfos, :AutoSignScene, :RelatedFlowId, :CallbackUrl, :FlowDisplayType
|
4331
4331
|
extend Gem::Deprecate
|
4332
|
-
deprecate :RelatedFlowId, :none, 2025,
|
4333
|
-
deprecate :RelatedFlowId=, :none, 2025,
|
4334
|
-
deprecate :CallbackUrl, :none, 2025,
|
4335
|
-
deprecate :CallbackUrl=, :none, 2025,
|
4332
|
+
deprecate :RelatedFlowId, :none, 2025, 10
|
4333
|
+
deprecate :RelatedFlowId=, :none, 2025, 10
|
4334
|
+
deprecate :CallbackUrl, :none, 2025, 10
|
4335
|
+
deprecate :CallbackUrl=, :none, 2025, 10
|
4336
4336
|
|
4337
4337
|
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)
|
4338
4338
|
@Operator = operator
|
@@ -4541,8 +4541,8 @@ module TencentCloud
|
|
4541
4541
|
|
4542
4542
|
attr_accessor :FlowId, :Operator, :Agent, :FlowApproverInfos, :Organization, :JumpUrl, :UrlType
|
4543
4543
|
extend Gem::Deprecate
|
4544
|
-
deprecate :Organization, :none, 2025,
|
4545
|
-
deprecate :Organization=, :none, 2025,
|
4544
|
+
deprecate :Organization, :none, 2025, 10
|
4545
|
+
deprecate :Organization=, :none, 2025, 10
|
4546
4546
|
|
4547
4547
|
def initialize(flowid=nil, operator=nil, agent=nil, flowapproverinfos=nil, organization=nil, jumpurl=nil, urltype=nil)
|
4548
4548
|
@FlowId = flowid
|
@@ -4959,8 +4959,8 @@ module TencentCloud
|
|
4959
4959
|
|
4960
4960
|
attr_accessor :Operator, :Agent, :Organization
|
4961
4961
|
extend Gem::Deprecate
|
4962
|
-
deprecate :Organization, :none, 2025,
|
4963
|
-
deprecate :Organization=, :none, 2025,
|
4962
|
+
deprecate :Organization, :none, 2025, 10
|
4963
|
+
deprecate :Organization=, :none, 2025, 10
|
4964
4964
|
|
4965
4965
|
def initialize(operator=nil, agent=nil, organization=nil)
|
4966
4966
|
@Operator = operator
|
@@ -5276,12 +5276,12 @@ module TencentCloud
|
|
5276
5276
|
|
5277
5277
|
attr_accessor :Operator, :TemplateId, :FlowName, :MaxFlowNum, :QrEffectiveDay, :FlowEffectiveDay, :Restrictions, :UserData, :CallbackUrl, :Agent, :ApproverRestrictions, :ApproverComponentLimitTypes, :ForbidPersonalMultipleSign, :FlowNameAppendScannerInfo, :QrCodeName, :QrCodeExpiredOn
|
5278
5278
|
extend Gem::Deprecate
|
5279
|
-
deprecate :QrEffectiveDay, :none, 2025,
|
5280
|
-
deprecate :QrEffectiveDay=, :none, 2025,
|
5281
|
-
deprecate :CallbackUrl, :none, 2025,
|
5282
|
-
deprecate :CallbackUrl=, :none, 2025,
|
5283
|
-
deprecate :ApproverRestrictions, :none, 2025,
|
5284
|
-
deprecate :ApproverRestrictions=, :none, 2025,
|
5279
|
+
deprecate :QrEffectiveDay, :none, 2025, 10
|
5280
|
+
deprecate :QrEffectiveDay=, :none, 2025, 10
|
5281
|
+
deprecate :CallbackUrl, :none, 2025, 10
|
5282
|
+
deprecate :CallbackUrl=, :none, 2025, 10
|
5283
|
+
deprecate :ApproverRestrictions, :none, 2025, 10
|
5284
|
+
deprecate :ApproverRestrictions=, :none, 2025, 10
|
5285
5285
|
|
5286
5286
|
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, qrcodename=nil, qrcodeexpiredon=nil)
|
5287
5287
|
@Operator = operator
|
@@ -6171,8 +6171,8 @@ module TencentCloud
|
|
6171
6171
|
|
6172
6172
|
attr_accessor :Operator, :ResourceId, :FlowName, :ResourceType, :Unordered, :Deadline, :UserFlowTypeId, :FlowType, :Approvers, :IntelligentStatus, :Components, :FlowOption, :NeedSignReview, :NeedCreateReview, :UserData, :CcInfos, :FlowId, :Agent, :InitiatorComponents, :FlowDisplayType, :SignComponentConfig
|
6173
6173
|
extend Gem::Deprecate
|
6174
|
-
deprecate :SignComponentConfig, :none, 2025,
|
6175
|
-
deprecate :SignComponentConfig=, :none, 2025,
|
6174
|
+
deprecate :SignComponentConfig, :none, 2025, 10
|
6175
|
+
deprecate :SignComponentConfig=, :none, 2025, 10
|
6176
6176
|
|
6177
6177
|
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)
|
6178
6178
|
@Operator = operator
|
@@ -6341,8 +6341,8 @@ module TencentCloud
|
|
6341
6341
|
|
6342
6342
|
attr_accessor :UserName, :IdCardNumber, :SealName, :Operator, :IdCardType, :SealImage, :SealImageCompress, :Mobile, :EnableAutoSign, :SealColor, :ProcessSeal, :FileId, :Agent, :LicenseType, :SceneKey
|
6343
6343
|
extend Gem::Deprecate
|
6344
|
-
deprecate :SealImage, :none, 2025,
|
6345
|
-
deprecate :SealImage=, :none, 2025,
|
6344
|
+
deprecate :SealImage, :none, 2025, 10
|
6345
|
+
deprecate :SealImage=, :none, 2025, 10
|
6346
6346
|
|
6347
6347
|
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)
|
6348
6348
|
@UserName = username
|
@@ -6932,6 +6932,81 @@ module TencentCloud
|
|
6932
6932
|
end
|
6933
6933
|
end
|
6934
6934
|
|
6935
|
+
# CreateSingleSignOnEmployees请求参数结构体
|
6936
|
+
class CreateSingleSignOnEmployeesRequest < TencentCloud::Common::AbstractModel
|
6937
|
+
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。
|
6938
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
6939
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
6940
|
+
# @param Employees: 待创建员工的信息最多不超过200个。
|
6941
|
+
|
6942
|
+
# 注意:
|
6943
|
+
# 1. 传递的 openId 不能重复, 且字符不能超过64位。
|
6944
|
+
# 2. 传递的手机号不能重复。
|
6945
|
+
# 3. 绑定的角色必须存在且不能超过 10 个。
|
6946
|
+
# @type Employees: Array
|
6947
|
+
# @param SsoApplicationId: 单点登录应用号的id,获取位置如下图
|
6948
|
+
# @type SsoApplicationId: String
|
6949
|
+
# @param Agent: 代理企业和员工的信息。
|
6950
|
+
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
6951
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
6952
|
+
|
6953
|
+
attr_accessor :Operator, :Employees, :SsoApplicationId, :Agent
|
6954
|
+
|
6955
|
+
def initialize(operator=nil, employees=nil, ssoapplicationid=nil, agent=nil)
|
6956
|
+
@Operator = operator
|
6957
|
+
@Employees = employees
|
6958
|
+
@SsoApplicationId = ssoapplicationid
|
6959
|
+
@Agent = agent
|
6960
|
+
end
|
6961
|
+
|
6962
|
+
def deserialize(params)
|
6963
|
+
unless params['Operator'].nil?
|
6964
|
+
@Operator = UserInfo.new
|
6965
|
+
@Operator.deserialize(params['Operator'])
|
6966
|
+
end
|
6967
|
+
unless params['Employees'].nil?
|
6968
|
+
@Employees = []
|
6969
|
+
params['Employees'].each do |i|
|
6970
|
+
singlesignonemployees_tmp = SingleSignOnEmployees.new
|
6971
|
+
singlesignonemployees_tmp.deserialize(i)
|
6972
|
+
@Employees << singlesignonemployees_tmp
|
6973
|
+
end
|
6974
|
+
end
|
6975
|
+
@SsoApplicationId = params['SsoApplicationId']
|
6976
|
+
unless params['Agent'].nil?
|
6977
|
+
@Agent = Agent.new
|
6978
|
+
@Agent.deserialize(params['Agent'])
|
6979
|
+
end
|
6980
|
+
end
|
6981
|
+
end
|
6982
|
+
|
6983
|
+
# CreateSingleSignOnEmployees返回参数结构体
|
6984
|
+
class CreateSingleSignOnEmployeesResponse < TencentCloud::Common::AbstractModel
|
6985
|
+
# @param ErrorMessages: 导入员工返回的错误信息,信息数组的顺序跟导入的保持一致
|
6986
|
+
# @type ErrorMessages: Array
|
6987
|
+
# @param Status: 导入员工返回的状态码
|
6988
|
+
# 0-全部成功
|
6989
|
+
# 1-部分成功
|
6990
|
+
# 2-全部失败
|
6991
|
+
# @type Status: Integer
|
6992
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6993
|
+
# @type RequestId: String
|
6994
|
+
|
6995
|
+
attr_accessor :ErrorMessages, :Status, :RequestId
|
6996
|
+
|
6997
|
+
def initialize(errormessages=nil, status=nil, requestid=nil)
|
6998
|
+
@ErrorMessages = errormessages
|
6999
|
+
@Status = status
|
7000
|
+
@RequestId = requestid
|
7001
|
+
end
|
7002
|
+
|
7003
|
+
def deserialize(params)
|
7004
|
+
@ErrorMessages = params['ErrorMessages']
|
7005
|
+
@Status = params['Status']
|
7006
|
+
@RequestId = params['RequestId']
|
7007
|
+
end
|
7008
|
+
end
|
7009
|
+
|
6935
7010
|
# 创建员工的结果
|
6936
7011
|
class CreateStaffResult < TencentCloud::Common::AbstractModel
|
6937
7012
|
# @param SuccessEmployeeData: 创建员工的成功列表
|
@@ -7933,6 +8008,58 @@ module TencentCloud
|
|
7933
8008
|
end
|
7934
8009
|
end
|
7935
8010
|
|
8011
|
+
# DeleteSingleSignOnEmployees请求参数结构体
|
8012
|
+
class DeleteSingleSignOnEmployeesRequest < TencentCloud::Common::AbstractModel
|
8013
|
+
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。
|
8014
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
8015
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
8016
|
+
# @param SsoApplicationId: 单点登录应用号的id,获取位置如下图
|
8017
|
+
# @type SsoApplicationId: String
|
8018
|
+
# @param OpenId: 需要删除的单点登录员工的唯一Id 值
|
8019
|
+
# @type OpenId: String
|
8020
|
+
# @param Agent: 代理企业和员工的信息。
|
8021
|
+
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
8022
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
8023
|
+
|
8024
|
+
attr_accessor :Operator, :SsoApplicationId, :OpenId, :Agent
|
8025
|
+
|
8026
|
+
def initialize(operator=nil, ssoapplicationid=nil, openid=nil, agent=nil)
|
8027
|
+
@Operator = operator
|
8028
|
+
@SsoApplicationId = ssoapplicationid
|
8029
|
+
@OpenId = openid
|
8030
|
+
@Agent = agent
|
8031
|
+
end
|
8032
|
+
|
8033
|
+
def deserialize(params)
|
8034
|
+
unless params['Operator'].nil?
|
8035
|
+
@Operator = UserInfo.new
|
8036
|
+
@Operator.deserialize(params['Operator'])
|
8037
|
+
end
|
8038
|
+
@SsoApplicationId = params['SsoApplicationId']
|
8039
|
+
@OpenId = params['OpenId']
|
8040
|
+
unless params['Agent'].nil?
|
8041
|
+
@Agent = Agent.new
|
8042
|
+
@Agent.deserialize(params['Agent'])
|
8043
|
+
end
|
8044
|
+
end
|
8045
|
+
end
|
8046
|
+
|
8047
|
+
# DeleteSingleSignOnEmployees返回参数结构体
|
8048
|
+
class DeleteSingleSignOnEmployeesResponse < TencentCloud::Common::AbstractModel
|
8049
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8050
|
+
# @type RequestId: String
|
8051
|
+
|
8052
|
+
attr_accessor :RequestId
|
8053
|
+
|
8054
|
+
def initialize(requestid=nil)
|
8055
|
+
@RequestId = requestid
|
8056
|
+
end
|
8057
|
+
|
8058
|
+
def deserialize(params)
|
8059
|
+
@RequestId = params['RequestId']
|
8060
|
+
end
|
8061
|
+
end
|
8062
|
+
|
7936
8063
|
# 删除员工结果
|
7937
8064
|
class DeleteStaffsResult < TencentCloud::Common::AbstractModel
|
7938
8065
|
# @param SuccessEmployeeData: 删除员工的成功数据
|
@@ -8333,6 +8460,100 @@ module TencentCloud
|
|
8333
8460
|
end
|
8334
8461
|
end
|
8335
8462
|
|
8463
|
+
# DescribeContractComparisonTask请求参数结构体
|
8464
|
+
class DescribeContractComparisonTaskRequest < TencentCloud::Common::AbstractModel
|
8465
|
+
# @param Operator: 执行合同审查任务的员工信息。
|
8466
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
8467
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
8468
|
+
# @param TaskId: 合同对比任务ID,该参数通过调用接口CreateContractComparisonTask获取。
|
8469
|
+
# @type TaskId: String
|
8470
|
+
|
8471
|
+
attr_accessor :Operator, :TaskId
|
8472
|
+
|
8473
|
+
def initialize(operator=nil, taskid=nil)
|
8474
|
+
@Operator = operator
|
8475
|
+
@TaskId = taskid
|
8476
|
+
end
|
8477
|
+
|
8478
|
+
def deserialize(params)
|
8479
|
+
unless params['Operator'].nil?
|
8480
|
+
@Operator = UserInfo.new
|
8481
|
+
@Operator.deserialize(params['Operator'])
|
8482
|
+
end
|
8483
|
+
@TaskId = params['TaskId']
|
8484
|
+
end
|
8485
|
+
end
|
8486
|
+
|
8487
|
+
# DescribeContractComparisonTask返回参数结构体
|
8488
|
+
class DescribeContractComparisonTaskResponse < TencentCloud::Common::AbstractModel
|
8489
|
+
# @param TaskId: 合同对比任务ID。
|
8490
|
+
# @type TaskId: String
|
8491
|
+
# @param Status: 合同对比任务状态。
|
8492
|
+
# 状态如下:
|
8493
|
+
# <ul><li> **0**:待创建(未执行)</li>
|
8494
|
+
# <li> **1**:对比中</li>
|
8495
|
+
# <li> **2**:对比成功</li>
|
8496
|
+
# <li> **3**:对比失败</li>
|
8497
|
+
# </ul>
|
8498
|
+
# @type Status: Integer
|
8499
|
+
# @param Message: 对比失败的具体原因描述,仅当状态为失败时返回此字段。
|
8500
|
+
# @type Message: String
|
8501
|
+
# @param OriginalFileResourceId: 原版文件ID,对比基准的旧版本文件唯一标识。
|
8502
|
+
# @type OriginalFileResourceId: String
|
8503
|
+
# @param DiffFileResourceId: 新版文件ID,与旧版进行对比的新版本文件唯一标识。
|
8504
|
+
# @type DiffFileResourceId: String
|
8505
|
+
# @param Comment: 对比任务备注,长度不能超过50个字符。
|
8506
|
+
# @type Comment: String
|
8507
|
+
# @param TotalDiffCount: 合同对比差异点总数。
|
8508
|
+
# @type TotalDiffCount: Integer
|
8509
|
+
# @param AddDiffCount: 合同对比新增点数量。
|
8510
|
+
# @type AddDiffCount: Integer
|
8511
|
+
# @param ChangeDiffCount: 合同对比修改点数量。
|
8512
|
+
# @type ChangeDiffCount: Integer
|
8513
|
+
# @param DeleteDiffCount: 合同对比删除点数量。
|
8514
|
+
# @type DeleteDiffCount: Integer
|
8515
|
+
# @param Operator: 提交人,提交此任务或请求的用户唯一标识。
|
8516
|
+
# @type Operator: String
|
8517
|
+
# @param CreateTime: 合同对比任务创建时间,时间戳。
|
8518
|
+
# @type CreateTime: Integer
|
8519
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8520
|
+
# @type RequestId: String
|
8521
|
+
|
8522
|
+
attr_accessor :TaskId, :Status, :Message, :OriginalFileResourceId, :DiffFileResourceId, :Comment, :TotalDiffCount, :AddDiffCount, :ChangeDiffCount, :DeleteDiffCount, :Operator, :CreateTime, :RequestId
|
8523
|
+
|
8524
|
+
def initialize(taskid=nil, status=nil, message=nil, originalfileresourceid=nil, difffileresourceid=nil, comment=nil, totaldiffcount=nil, adddiffcount=nil, changediffcount=nil, deletediffcount=nil, operator=nil, createtime=nil, requestid=nil)
|
8525
|
+
@TaskId = taskid
|
8526
|
+
@Status = status
|
8527
|
+
@Message = message
|
8528
|
+
@OriginalFileResourceId = originalfileresourceid
|
8529
|
+
@DiffFileResourceId = difffileresourceid
|
8530
|
+
@Comment = comment
|
8531
|
+
@TotalDiffCount = totaldiffcount
|
8532
|
+
@AddDiffCount = adddiffcount
|
8533
|
+
@ChangeDiffCount = changediffcount
|
8534
|
+
@DeleteDiffCount = deletediffcount
|
8535
|
+
@Operator = operator
|
8536
|
+
@CreateTime = createtime
|
8537
|
+
@RequestId = requestid
|
8538
|
+
end
|
8539
|
+
|
8540
|
+
def deserialize(params)
|
8541
|
+
@TaskId = params['TaskId']
|
8542
|
+
@Status = params['Status']
|
8543
|
+
@Message = params['Message']
|
8544
|
+
@OriginalFileResourceId = params['OriginalFileResourceId']
|
8545
|
+
@DiffFileResourceId = params['DiffFileResourceId']
|
8546
|
+
@Comment = params['Comment']
|
8547
|
+
@TotalDiffCount = params['TotalDiffCount']
|
8548
|
+
@AddDiffCount = params['AddDiffCount']
|
8549
|
+
@ChangeDiffCount = params['ChangeDiffCount']
|
8550
|
+
@DeleteDiffCount = params['DeleteDiffCount']
|
8551
|
+
@Operator = params['Operator']
|
8552
|
+
@CreateTime = params['CreateTime']
|
8553
|
+
@RequestId = params['RequestId']
|
8554
|
+
end
|
8555
|
+
end
|
8556
|
+
|
8336
8557
|
# DescribeContractDiffTaskWebUrl请求参数结构体
|
8337
8558
|
class DescribeContractDiffTaskWebUrlRequest < TencentCloud::Common::AbstractModel
|
8338
8559
|
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。
|
@@ -8810,10 +9031,10 @@ module TencentCloud
|
|
8810
9031
|
|
8811
9032
|
attr_accessor :Operator, :BusinessType, :BusinessIds, :FileName, :FileType, :Offset, :Limit, :UrlTtl, :CcToken, :Scene, :Agent
|
8812
9033
|
extend Gem::Deprecate
|
8813
|
-
deprecate :CcToken, :none, 2025,
|
8814
|
-
deprecate :CcToken=, :none, 2025,
|
8815
|
-
deprecate :Scene, :none, 2025,
|
8816
|
-
deprecate :Scene=, :none, 2025,
|
9034
|
+
deprecate :CcToken, :none, 2025, 10
|
9035
|
+
deprecate :CcToken=, :none, 2025, 10
|
9036
|
+
deprecate :Scene, :none, 2025, 10
|
9037
|
+
deprecate :Scene=, :none, 2025, 10
|
8817
9038
|
|
8818
9039
|
def initialize(operator=nil, businesstype=nil, businessids=nil, filename=nil, filetype=nil, offset=nil, limit=nil, urlttl=nil, cctoken=nil, scene=nil, agent=nil)
|
8819
9040
|
@Operator = operator
|
@@ -9193,12 +9414,12 @@ module TencentCloud
|
|
9193
9414
|
|
9194
9415
|
attr_accessor :Operator, :Agent, :ContentType, :Filters, :Offset, :Limit, :ApplicationId, :IsChannel, :Organization, :GenerateSource, :WithPreviewUrl
|
9195
9416
|
extend Gem::Deprecate
|
9196
|
-
deprecate :IsChannel, :none, 2025,
|
9197
|
-
deprecate :IsChannel=, :none, 2025,
|
9198
|
-
deprecate :Organization, :none, 2025,
|
9199
|
-
deprecate :Organization=, :none, 2025,
|
9200
|
-
deprecate :GenerateSource, :none, 2025,
|
9201
|
-
deprecate :GenerateSource=, :none, 2025,
|
9417
|
+
deprecate :IsChannel, :none, 2025, 10
|
9418
|
+
deprecate :IsChannel=, :none, 2025, 10
|
9419
|
+
deprecate :Organization, :none, 2025, 10
|
9420
|
+
deprecate :Organization=, :none, 2025, 10
|
9421
|
+
deprecate :GenerateSource, :none, 2025, 10
|
9422
|
+
deprecate :GenerateSource=, :none, 2025, 10
|
9202
9423
|
|
9203
9424
|
def initialize(operator=nil, agent=nil, contenttype=nil, filters=nil, offset=nil, limit=nil, applicationid=nil, ischannel=nil, organization=nil, generatesource=nil, withpreviewurl=nil)
|
9204
9425
|
@Operator = operator
|
@@ -9779,8 +10000,8 @@ module TencentCloud
|
|
9779
10000
|
|
9780
10001
|
attr_accessor :Total, :JoinedTotal, :ActivedTotal, :ExportUrl, :List, :ActivatedTotal, :RequestId
|
9781
10002
|
extend Gem::Deprecate
|
9782
|
-
deprecate :ActivedTotal, :none, 2025,
|
9783
|
-
deprecate :ActivedTotal=, :none, 2025,
|
10003
|
+
deprecate :ActivedTotal, :none, 2025, 10
|
10004
|
+
deprecate :ActivedTotal=, :none, 2025, 10
|
9784
10005
|
|
9785
10006
|
def initialize(total=nil, joinedtotal=nil, activedtotal=nil, exporturl=nil, list=nil, activatedtotal=nil, requestid=nil)
|
9786
10007
|
@Total = total
|
@@ -10093,6 +10314,78 @@ module TencentCloud
|
|
10093
10314
|
end
|
10094
10315
|
end
|
10095
10316
|
|
10317
|
+
# DescribeSingleSignOnEmployees请求参数结构体
|
10318
|
+
class DescribeSingleSignOnEmployeesRequest < TencentCloud::Common::AbstractModel
|
10319
|
+
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。
|
10320
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
10321
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
10322
|
+
# @param SsoApplicationId: 单点登录应用号的id,获取位置如下图
|
10323
|
+
# @type SsoApplicationId: String
|
10324
|
+
# @param OpenIds: 需要删除的单点登录员工的唯一Id 值.不能超过 200 个。
|
10325
|
+
# 如果传递了 openIds,limit 和 offset 参数无效,
|
10326
|
+
# @type OpenIds: Array
|
10327
|
+
# @param Agent: 代理企业和员工的信息。
|
10328
|
+
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
10329
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
10330
|
+
# @param Limit: 指定分页每页返回的数据条数,单页最大支持 200。如果不传, 则默认是 20.
|
10331
|
+
# @type Limit: Integer
|
10332
|
+
# @param Offset: OFFSET 用于指定查询结果的偏移量,如果不传默认偏移为0,最大20000。 分页参数, 需要limit, offset 配合使用 例如: 您希望得到第三页的数据, 且每页限制最多10条 您可以使用 LIMIT 10 OFFSET 20
|
10333
|
+
# @type Offset: Integer
|
10334
|
+
|
10335
|
+
attr_accessor :Operator, :SsoApplicationId, :OpenIds, :Agent, :Limit, :Offset
|
10336
|
+
|
10337
|
+
def initialize(operator=nil, ssoapplicationid=nil, openids=nil, agent=nil, limit=nil, offset=nil)
|
10338
|
+
@Operator = operator
|
10339
|
+
@SsoApplicationId = ssoapplicationid
|
10340
|
+
@OpenIds = openids
|
10341
|
+
@Agent = agent
|
10342
|
+
@Limit = limit
|
10343
|
+
@Offset = offset
|
10344
|
+
end
|
10345
|
+
|
10346
|
+
def deserialize(params)
|
10347
|
+
unless params['Operator'].nil?
|
10348
|
+
@Operator = UserInfo.new
|
10349
|
+
@Operator.deserialize(params['Operator'])
|
10350
|
+
end
|
10351
|
+
@SsoApplicationId = params['SsoApplicationId']
|
10352
|
+
@OpenIds = params['OpenIds']
|
10353
|
+
unless params['Agent'].nil?
|
10354
|
+
@Agent = Agent.new
|
10355
|
+
@Agent.deserialize(params['Agent'])
|
10356
|
+
end
|
10357
|
+
@Limit = params['Limit']
|
10358
|
+
@Offset = params['Offset']
|
10359
|
+
end
|
10360
|
+
end
|
10361
|
+
|
10362
|
+
# DescribeSingleSignOnEmployees返回参数结构体
|
10363
|
+
class DescribeSingleSignOnEmployeesResponse < TencentCloud::Common::AbstractModel
|
10364
|
+
# @param Employees: 单点登录企业员工信息
|
10365
|
+
# @type Employees: Array
|
10366
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10367
|
+
# @type RequestId: String
|
10368
|
+
|
10369
|
+
attr_accessor :Employees, :RequestId
|
10370
|
+
|
10371
|
+
def initialize(employees=nil, requestid=nil)
|
10372
|
+
@Employees = employees
|
10373
|
+
@RequestId = requestid
|
10374
|
+
end
|
10375
|
+
|
10376
|
+
def deserialize(params)
|
10377
|
+
unless params['Employees'].nil?
|
10378
|
+
@Employees = []
|
10379
|
+
params['Employees'].each do |i|
|
10380
|
+
singlesignonemployees_tmp = SingleSignOnEmployees.new
|
10381
|
+
singlesignonemployees_tmp.deserialize(i)
|
10382
|
+
@Employees << singlesignonemployees_tmp
|
10383
|
+
end
|
10384
|
+
end
|
10385
|
+
@RequestId = params['RequestId']
|
10386
|
+
end
|
10387
|
+
end
|
10388
|
+
|
10096
10389
|
# DescribeThirdPartyAuthCode请求参数结构体
|
10097
10390
|
class DescribeThirdPartyAuthCodeRequest < TencentCloud::Common::AbstractModel
|
10098
10391
|
# @param AuthCode: 腾讯电子签小程序跳转客户企业小程序时携带的授权查看码,AuthCode由腾讯电子签小程序生成。
|
@@ -11093,8 +11386,8 @@ module TencentCloud
|
|
11093
11386
|
|
11094
11387
|
attr_accessor :ApproveMessage, :ApproveName, :ApproveStatus, :ReceiptId, :CustomUserId, :Mobile, :SignOrder, :ApproveTime, :ApproveType, :ApproverSource, :CustomApproverTag, :OrganizationId, :OrganizationName, :SignId, :ApproverRoleName, :RecipientId
|
11095
11388
|
extend Gem::Deprecate
|
11096
|
-
deprecate :ReceiptId, :none, 2025,
|
11097
|
-
deprecate :ReceiptId=, :none, 2025,
|
11389
|
+
deprecate :ReceiptId, :none, 2025, 10
|
11390
|
+
deprecate :ReceiptId=, :none, 2025, 10
|
11098
11391
|
|
11099
11392
|
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)
|
11100
11393
|
@ApproveMessage = approvemessage
|
@@ -11481,8 +11774,8 @@ module TencentCloud
|
|
11481
11774
|
|
11482
11775
|
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
|
11483
11776
|
extend Gem::Deprecate
|
11484
|
-
deprecate :JumpUrl, :none, 2025,
|
11485
|
-
deprecate :JumpUrl=, :none, 2025,
|
11777
|
+
deprecate :JumpUrl, :none, 2025, 10
|
11778
|
+
deprecate :JumpUrl=, :none, 2025, 10
|
11486
11779
|
|
11487
11780
|
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)
|
11488
11781
|
@ApproverType = approvertype
|
@@ -11797,8 +12090,8 @@ module TencentCloud
|
|
11797
12090
|
|
11798
12091
|
attr_accessor :FlowName, :Approvers, :FileIds, :TemplateId, :FlowType, :FlowDescription, :Deadline, :CallbackUrl, :UserData, :Unordered, :Components, :NeedSignReview, :AutoSignScene, :FlowDisplayType
|
11799
12092
|
extend Gem::Deprecate
|
11800
|
-
deprecate :CallbackUrl, :none, 2025,
|
11801
|
-
deprecate :CallbackUrl=, :none, 2025,
|
12093
|
+
deprecate :CallbackUrl, :none, 2025, 10
|
12094
|
+
deprecate :CallbackUrl=, :none, 2025, 10
|
11802
12095
|
|
11803
12096
|
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)
|
11804
12097
|
@FlowName = flowname
|
@@ -12470,8 +12763,8 @@ module TencentCloud
|
|
12470
12763
|
|
12471
12764
|
attr_accessor :TaskId, :Operator, :Agent, :Organization
|
12472
12765
|
extend Gem::Deprecate
|
12473
|
-
deprecate :Organization, :none, 2025,
|
12474
|
-
deprecate :Organization=, :none, 2025,
|
12766
|
+
deprecate :Organization, :none, 2025, 10
|
12767
|
+
deprecate :Organization=, :none, 2025, 10
|
12475
12768
|
|
12476
12769
|
def initialize(taskid=nil, operator=nil, agent=nil, organization=nil)
|
12477
12770
|
@TaskId = taskid
|
@@ -13449,6 +13742,61 @@ module TencentCloud
|
|
13449
13742
|
end
|
13450
13743
|
end
|
13451
13744
|
|
13745
|
+
# ModifySingleSignOnEmployees请求参数结构体
|
13746
|
+
class ModifySingleSignOnEmployeesRequest < TencentCloud::Common::AbstractModel
|
13747
|
+
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。
|
13748
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
13749
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
13750
|
+
# @param SsoApplicationId: 单点登录应用号的id,获取位置如下图
|
13751
|
+
# @type SsoApplicationId: String
|
13752
|
+
# @param Employee: 待修改员工的信息。
|
13753
|
+
# @type Employee: :class:`Tencentcloud::Ess.v20201111.models.SingleSignOnEmployees`
|
13754
|
+
# @param Agent: 代理企业和员工的信息。
|
13755
|
+
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
13756
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
13757
|
+
|
13758
|
+
attr_accessor :Operator, :SsoApplicationId, :Employee, :Agent
|
13759
|
+
|
13760
|
+
def initialize(operator=nil, ssoapplicationid=nil, employee=nil, agent=nil)
|
13761
|
+
@Operator = operator
|
13762
|
+
@SsoApplicationId = ssoapplicationid
|
13763
|
+
@Employee = employee
|
13764
|
+
@Agent = agent
|
13765
|
+
end
|
13766
|
+
|
13767
|
+
def deserialize(params)
|
13768
|
+
unless params['Operator'].nil?
|
13769
|
+
@Operator = UserInfo.new
|
13770
|
+
@Operator.deserialize(params['Operator'])
|
13771
|
+
end
|
13772
|
+
@SsoApplicationId = params['SsoApplicationId']
|
13773
|
+
unless params['Employee'].nil?
|
13774
|
+
@Employee = SingleSignOnEmployees.new
|
13775
|
+
@Employee.deserialize(params['Employee'])
|
13776
|
+
end
|
13777
|
+
unless params['Agent'].nil?
|
13778
|
+
@Agent = Agent.new
|
13779
|
+
@Agent.deserialize(params['Agent'])
|
13780
|
+
end
|
13781
|
+
end
|
13782
|
+
end
|
13783
|
+
|
13784
|
+
# ModifySingleSignOnEmployees返回参数结构体
|
13785
|
+
class ModifySingleSignOnEmployeesResponse < TencentCloud::Common::AbstractModel
|
13786
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13787
|
+
# @type RequestId: String
|
13788
|
+
|
13789
|
+
attr_accessor :RequestId
|
13790
|
+
|
13791
|
+
def initialize(requestid=nil)
|
13792
|
+
@RequestId = requestid
|
13793
|
+
end
|
13794
|
+
|
13795
|
+
def deserialize(params)
|
13796
|
+
@RequestId = params['RequestId']
|
13797
|
+
end
|
13798
|
+
end
|
13799
|
+
|
13452
13800
|
# 需要进行签署审核的签署人信息
|
13453
13801
|
class NeedReviewApproverInfo < TencentCloud::Common::AbstractModel
|
13454
13802
|
# @param ApproverType: 签署方经办人的类型,支持以下类型
|
@@ -13916,16 +14264,16 @@ module TencentCloud
|
|
13916
14264
|
|
13917
14265
|
attr_accessor :OrganizationId, :Channel, :OrganizationOpenId, :ClientIp, :ProxyIp
|
13918
14266
|
extend Gem::Deprecate
|
13919
|
-
deprecate :OrganizationId, :none, 2025,
|
13920
|
-
deprecate :OrganizationId=, :none, 2025,
|
13921
|
-
deprecate :Channel, :none, 2025,
|
13922
|
-
deprecate :Channel=, :none, 2025,
|
13923
|
-
deprecate :OrganizationOpenId, :none, 2025,
|
13924
|
-
deprecate :OrganizationOpenId=, :none, 2025,
|
13925
|
-
deprecate :ClientIp, :none, 2025,
|
13926
|
-
deprecate :ClientIp=, :none, 2025,
|
13927
|
-
deprecate :ProxyIp, :none, 2025,
|
13928
|
-
deprecate :ProxyIp=, :none, 2025,
|
14267
|
+
deprecate :OrganizationId, :none, 2025, 10
|
14268
|
+
deprecate :OrganizationId=, :none, 2025, 10
|
14269
|
+
deprecate :Channel, :none, 2025, 10
|
14270
|
+
deprecate :Channel=, :none, 2025, 10
|
14271
|
+
deprecate :OrganizationOpenId, :none, 2025, 10
|
14272
|
+
deprecate :OrganizationOpenId=, :none, 2025, 10
|
14273
|
+
deprecate :ClientIp, :none, 2025, 10
|
14274
|
+
deprecate :ClientIp=, :none, 2025, 10
|
14275
|
+
deprecate :ProxyIp, :none, 2025, 10
|
14276
|
+
deprecate :ProxyIp=, :none, 2025, 10
|
13929
14277
|
|
13930
14278
|
def initialize(organizationid=nil, channel=nil, organizationopenid=nil, clientip=nil, proxyip=nil)
|
13931
14279
|
@OrganizationId = organizationid
|
@@ -14411,10 +14759,10 @@ module TencentCloud
|
|
14411
14759
|
|
14412
14760
|
attr_accessor :LegalName, :Uscc, :UnifiedSocialCreditCode, :OrganizationAddress, :AuthorizationTypes, :AuthorizationType
|
14413
14761
|
extend Gem::Deprecate
|
14414
|
-
deprecate :Uscc, :none, 2025,
|
14415
|
-
deprecate :Uscc=, :none, 2025,
|
14416
|
-
deprecate :AuthorizationTypes, :none, 2025,
|
14417
|
-
deprecate :AuthorizationTypes=, :none, 2025,
|
14762
|
+
deprecate :Uscc, :none, 2025, 10
|
14763
|
+
deprecate :Uscc=, :none, 2025, 10
|
14764
|
+
deprecate :AuthorizationTypes, :none, 2025, 10
|
14765
|
+
deprecate :AuthorizationTypes=, :none, 2025, 10
|
14418
14766
|
|
14419
14767
|
def initialize(legalname=nil, uscc=nil, unifiedsocialcreditcode=nil, organizationaddress=nil, authorizationtypes=nil, authorizationtype=nil)
|
14420
14768
|
@LegalName = legalname
|
@@ -14550,8 +14898,8 @@ module TencentCloud
|
|
14550
14898
|
|
14551
14899
|
attr_accessor :Name, :Mobile, :RelievedApproverReceiptId, :ApproverType, :ApproverSignComponentType, :ApproverSignRole, :ApproverSignSealId, :RelievedApproverRecipientId
|
14552
14900
|
extend Gem::Deprecate
|
14553
|
-
deprecate :RelievedApproverReceiptId, :none, 2025,
|
14554
|
-
deprecate :RelievedApproverReceiptId=, :none, 2025,
|
14901
|
+
deprecate :RelievedApproverReceiptId, :none, 2025, 10
|
14902
|
+
deprecate :RelievedApproverReceiptId=, :none, 2025, 10
|
14555
14903
|
|
14556
14904
|
def initialize(name=nil, mobile=nil, relievedapproverreceiptid=nil, approvertype=nil, approversigncomponenttype=nil, approversignrole=nil, approversignsealid=nil, relievedapproverrecipientid=nil)
|
14557
14905
|
@Name = name
|
@@ -14867,6 +15215,53 @@ module TencentCloud
|
|
14867
15215
|
end
|
14868
15216
|
end
|
14869
15217
|
|
15218
|
+
# 单点登录企业员工信息。
|
15219
|
+
class SingleSignOnEmployees < TencentCloud::Common::AbstractModel
|
15220
|
+
# @param OpenId: 用户在idp分配的唯一值,需要保持跟在电子签应用集成->单点登录配置->端点配置中配置的。
|
15221
|
+
# 如下图配置。
|
15222
|
+
# @type OpenId: String
|
15223
|
+
# @param Name: 企业员工姓名。 员工的姓名将用于身份认证和电子签名,请确保填写的姓名为签署方的真实姓名,而非昵称等代名。
|
15224
|
+
# @type Name: String
|
15225
|
+
# @param Mobile: 用户手机号码, 支持中国大陆手机号11位数字(无需加+86前缀或其他字符)。
|
15226
|
+
# @type Mobile: String
|
15227
|
+
# @param UserId: 员工在腾讯电子签平台的唯一身份标识,为32位字符串。
|
15228
|
+
# 注:`创建和更新场景无需填写。`
|
15229
|
+
# @type UserId: String
|
15230
|
+
# @param Email: 用户邮箱。
|
15231
|
+
# @type Email: String
|
15232
|
+
# @param RoleIds: 员工角色信息。
|
15233
|
+
# 此处roleId为电子签配置的 RoleId,可通过接口[查询企业角色列表](https://qian.tencent.com/developers/companyApis/roles/DescribeIntegrationRoles) 获取
|
15234
|
+
# @type RoleIds: Array
|
15235
|
+
# @param IsVerified: 员工是否实名。
|
15236
|
+
# @type IsVerified: Boolean
|
15237
|
+
# @param CreatedOn: 员工创建时间戳,单位秒。
|
15238
|
+
# @type CreatedOn: Integer
|
15239
|
+
|
15240
|
+
attr_accessor :OpenId, :Name, :Mobile, :UserId, :Email, :RoleIds, :IsVerified, :CreatedOn
|
15241
|
+
|
15242
|
+
def initialize(openid=nil, name=nil, mobile=nil, userid=nil, email=nil, roleids=nil, isverified=nil, createdon=nil)
|
15243
|
+
@OpenId = openid
|
15244
|
+
@Name = name
|
15245
|
+
@Mobile = mobile
|
15246
|
+
@UserId = userid
|
15247
|
+
@Email = email
|
15248
|
+
@RoleIds = roleids
|
15249
|
+
@IsVerified = isverified
|
15250
|
+
@CreatedOn = createdon
|
15251
|
+
end
|
15252
|
+
|
15253
|
+
def deserialize(params)
|
15254
|
+
@OpenId = params['OpenId']
|
15255
|
+
@Name = params['Name']
|
15256
|
+
@Mobile = params['Mobile']
|
15257
|
+
@UserId = params['UserId']
|
15258
|
+
@Email = params['Email']
|
15259
|
+
@RoleIds = params['RoleIds']
|
15260
|
+
@IsVerified = params['IsVerified']
|
15261
|
+
@CreatedOn = params['CreatedOn']
|
15262
|
+
end
|
15263
|
+
end
|
15264
|
+
|
14870
15265
|
# 企业员工信息。
|
14871
15266
|
class Staff < TencentCloud::Common::AbstractModel
|
14872
15267
|
# @param UserId: 员工在腾讯电子签平台的唯一身份标识,为32位字符串。
|
@@ -14995,8 +15390,8 @@ module TencentCloud
|
|
14995
15390
|
|
14996
15391
|
attr_accessor :Operator, :FlowId, :ClientToken, :Agent, :CcNotifyType
|
14997
15392
|
extend Gem::Deprecate
|
14998
|
-
deprecate :ClientToken, :none, 2025,
|
14999
|
-
deprecate :ClientToken=, :none, 2025,
|
15393
|
+
deprecate :ClientToken, :none, 2025, 10
|
15394
|
+
deprecate :ClientToken=, :none, 2025, 10
|
15000
15395
|
|
15001
15396
|
def initialize(operator=nil, flowid=nil, clienttoken=nil, agent=nil, ccnotifytype=nil)
|
15002
15397
|
@Operator = operator
|
@@ -15302,8 +15697,8 @@ module TencentCloud
|
|
15302
15697
|
|
15303
15698
|
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
|
15304
15699
|
extend Gem::Deprecate
|
15305
|
-
deprecate :Seals, :none, 2025,
|
15306
|
-
deprecate :Seals=, :none, 2025,
|
15700
|
+
deprecate :Seals, :none, 2025, 10
|
15701
|
+
deprecate :Seals=, :none, 2025, 10
|
15307
15702
|
|
15308
15703
|
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)
|
15309
15704
|
@TemplateId = templateid
|
@@ -15654,8 +16049,8 @@ module TencentCloud
|
|
15654
16049
|
|
15655
16050
|
attr_accessor :BusinessType, :Caller, :FileInfos, :FileType, :CoverRect, :CustomIds, :FileUrls, :Agent
|
15656
16051
|
extend Gem::Deprecate
|
15657
|
-
deprecate :FileUrls, :none, 2025,
|
15658
|
-
deprecate :FileUrls=, :none, 2025,
|
16052
|
+
deprecate :FileUrls, :none, 2025, 10
|
16053
|
+
deprecate :FileUrls=, :none, 2025, 10
|
15659
16054
|
|
15660
16055
|
def initialize(businesstype=nil, caller=nil, fileinfos=nil, filetype=nil, coverrect=nil, customids=nil, fileurls=nil, agent=nil)
|
15661
16056
|
@BusinessType = businesstype
|
@@ -15758,14 +16153,14 @@ module TencentCloud
|
|
15758
16153
|
|
15759
16154
|
attr_accessor :UserId, :Channel, :OpenId, :ClientIp, :ProxyIp
|
15760
16155
|
extend Gem::Deprecate
|
15761
|
-
deprecate :Channel, :none, 2025,
|
15762
|
-
deprecate :Channel=, :none, 2025,
|
15763
|
-
deprecate :OpenId, :none, 2025,
|
15764
|
-
deprecate :OpenId=, :none, 2025,
|
15765
|
-
deprecate :ClientIp, :none, 2025,
|
15766
|
-
deprecate :ClientIp=, :none, 2025,
|
15767
|
-
deprecate :ProxyIp, :none, 2025,
|
15768
|
-
deprecate :ProxyIp=, :none, 2025,
|
16156
|
+
deprecate :Channel, :none, 2025, 10
|
16157
|
+
deprecate :Channel=, :none, 2025, 10
|
16158
|
+
deprecate :OpenId, :none, 2025, 10
|
16159
|
+
deprecate :OpenId=, :none, 2025, 10
|
16160
|
+
deprecate :ClientIp, :none, 2025, 10
|
16161
|
+
deprecate :ClientIp=, :none, 2025, 10
|
16162
|
+
deprecate :ProxyIp, :none, 2025, 10
|
16163
|
+
deprecate :ProxyIp=, :none, 2025, 10
|
15769
16164
|
|
15770
16165
|
def initialize(userid=nil, channel=nil, openid=nil, clientip=nil, proxyip=nil)
|
15771
16166
|
@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.1152
|
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-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|