tencentcloud-sdk-ess 3.0.1149 → 3.0.1151
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 +108 -0
- data/lib/v20201111/models.rb +389 -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: 099dcb0cca86190744522b4eafa4bc0071572896
|
4
|
+
data.tar.gz: 65ddd412ca932b6ba86d457b5cc8b2d76dd463ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bbbbff3e1edea17e770c64025eb4e02ba0260c5b8ff4c686334c5f63a751c853424cf959d4553ad4bfdc5f6e68a6aa59b9f93d9441abb83bb5639bf85269cd1
|
7
|
+
data.tar.gz: 0f7308fe04bb7f7a7923c14a68343bebcd93a24ff1b73fcbd33237e5cf73e465828ea9d44cfe980af2284f113fd56753bf3596484d25a4bc85c8205008212614
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1151
|
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.
|
@@ -3220,6 +3279,30 @@ module TencentCloud
|
|
3220
3279
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3221
3280
|
end
|
3222
3281
|
|
3282
|
+
# 此接口(DescribeSingleSignOnEmployees)用于查询单点登录企业员工。
|
3283
|
+
|
3284
|
+
# @param request: Request instance for DescribeSingleSignOnEmployees.
|
3285
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::DescribeSingleSignOnEmployeesRequest`
|
3286
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::DescribeSingleSignOnEmployeesResponse`
|
3287
|
+
def DescribeSingleSignOnEmployees(request)
|
3288
|
+
body = send_request('DescribeSingleSignOnEmployees', request.serialize)
|
3289
|
+
response = JSON.parse(body)
|
3290
|
+
if response['Response'].key?('Error') == false
|
3291
|
+
model = DescribeSingleSignOnEmployeesResponse.new
|
3292
|
+
model.deserialize(response['Response'])
|
3293
|
+
model
|
3294
|
+
else
|
3295
|
+
code = response['Response']['Error']['Code']
|
3296
|
+
message = response['Response']['Error']['Message']
|
3297
|
+
reqid = response['Response']['RequestId']
|
3298
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3299
|
+
end
|
3300
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3301
|
+
raise e
|
3302
|
+
rescue StandardError => e
|
3303
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3304
|
+
end
|
3305
|
+
|
3223
3306
|
# 通过AuthCode查询个人用户是否实名
|
3224
3307
|
|
3225
3308
|
|
@@ -3586,6 +3669,31 @@ module TencentCloud
|
|
3586
3669
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3587
3670
|
end
|
3588
3671
|
|
3672
|
+
# 此接口(ModifySingleSignOnEmployees)用于修改单点登录企业员工。
|
3673
|
+
# 注意: 此接口只能修改未跟腾讯电子签绑定的单点登录企业员工, 如果企业员工的单点登录信息已经和腾讯电子签里面的企业员工绑定,需要在腾讯电子签小程序进行个人信息变更操作。
|
3674
|
+
|
3675
|
+
# @param request: Request instance for ModifySingleSignOnEmployees.
|
3676
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::ModifySingleSignOnEmployeesRequest`
|
3677
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::ModifySingleSignOnEmployeesResponse`
|
3678
|
+
def ModifySingleSignOnEmployees(request)
|
3679
|
+
body = send_request('ModifySingleSignOnEmployees', request.serialize)
|
3680
|
+
response = JSON.parse(body)
|
3681
|
+
if response['Response'].key?('Error') == false
|
3682
|
+
model = ModifySingleSignOnEmployeesResponse.new
|
3683
|
+
model.deserialize(response['Response'])
|
3684
|
+
model
|
3685
|
+
else
|
3686
|
+
code = response['Response']['Error']['Code']
|
3687
|
+
message = response['Response']['Error']['Message']
|
3688
|
+
reqid = response['Response']['RequestId']
|
3689
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3690
|
+
end
|
3691
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3692
|
+
raise e
|
3693
|
+
rescue StandardError => e
|
3694
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3695
|
+
end
|
3696
|
+
|
3589
3697
|
# 修改印章状态(停用、启用)
|
3590
3698
|
|
3591
3699
|
# @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: 删除员工的成功数据
|
@@ -8810,10 +8937,10 @@ module TencentCloud
|
|
8810
8937
|
|
8811
8938
|
attr_accessor :Operator, :BusinessType, :BusinessIds, :FileName, :FileType, :Offset, :Limit, :UrlTtl, :CcToken, :Scene, :Agent
|
8812
8939
|
extend Gem::Deprecate
|
8813
|
-
deprecate :CcToken, :none, 2025,
|
8814
|
-
deprecate :CcToken=, :none, 2025,
|
8815
|
-
deprecate :Scene, :none, 2025,
|
8816
|
-
deprecate :Scene=, :none, 2025,
|
8940
|
+
deprecate :CcToken, :none, 2025, 10
|
8941
|
+
deprecate :CcToken=, :none, 2025, 10
|
8942
|
+
deprecate :Scene, :none, 2025, 10
|
8943
|
+
deprecate :Scene=, :none, 2025, 10
|
8817
8944
|
|
8818
8945
|
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
8946
|
@Operator = operator
|
@@ -9193,12 +9320,12 @@ module TencentCloud
|
|
9193
9320
|
|
9194
9321
|
attr_accessor :Operator, :Agent, :ContentType, :Filters, :Offset, :Limit, :ApplicationId, :IsChannel, :Organization, :GenerateSource, :WithPreviewUrl
|
9195
9322
|
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,
|
9323
|
+
deprecate :IsChannel, :none, 2025, 10
|
9324
|
+
deprecate :IsChannel=, :none, 2025, 10
|
9325
|
+
deprecate :Organization, :none, 2025, 10
|
9326
|
+
deprecate :Organization=, :none, 2025, 10
|
9327
|
+
deprecate :GenerateSource, :none, 2025, 10
|
9328
|
+
deprecate :GenerateSource=, :none, 2025, 10
|
9202
9329
|
|
9203
9330
|
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
9331
|
@Operator = operator
|
@@ -9779,8 +9906,8 @@ module TencentCloud
|
|
9779
9906
|
|
9780
9907
|
attr_accessor :Total, :JoinedTotal, :ActivedTotal, :ExportUrl, :List, :ActivatedTotal, :RequestId
|
9781
9908
|
extend Gem::Deprecate
|
9782
|
-
deprecate :ActivedTotal, :none, 2025,
|
9783
|
-
deprecate :ActivedTotal=, :none, 2025,
|
9909
|
+
deprecate :ActivedTotal, :none, 2025, 10
|
9910
|
+
deprecate :ActivedTotal=, :none, 2025, 10
|
9784
9911
|
|
9785
9912
|
def initialize(total=nil, joinedtotal=nil, activedtotal=nil, exporturl=nil, list=nil, activatedtotal=nil, requestid=nil)
|
9786
9913
|
@Total = total
|
@@ -10093,6 +10220,78 @@ module TencentCloud
|
|
10093
10220
|
end
|
10094
10221
|
end
|
10095
10222
|
|
10223
|
+
# DescribeSingleSignOnEmployees请求参数结构体
|
10224
|
+
class DescribeSingleSignOnEmployeesRequest < TencentCloud::Common::AbstractModel
|
10225
|
+
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。
|
10226
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
10227
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
10228
|
+
# @param SsoApplicationId: 单点登录应用号的id,获取位置如下图
|
10229
|
+
# @type SsoApplicationId: String
|
10230
|
+
# @param OpenIds: 需要删除的单点登录员工的唯一Id 值.不能超过 200 个。
|
10231
|
+
# 如果传递了 openIds,limit 和 offset 参数无效,
|
10232
|
+
# @type OpenIds: Array
|
10233
|
+
# @param Agent: 代理企业和员工的信息。
|
10234
|
+
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
10235
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
10236
|
+
# @param Limit: 指定分页每页返回的数据条数,单页最大支持 200。如果不传, 则默认是 20.
|
10237
|
+
# @type Limit: Integer
|
10238
|
+
# @param Offset: OFFSET 用于指定查询结果的偏移量,如果不传默认偏移为0,最大20000。 分页参数, 需要limit, offset 配合使用 例如: 您希望得到第三页的数据, 且每页限制最多10条 您可以使用 LIMIT 10 OFFSET 20
|
10239
|
+
# @type Offset: Integer
|
10240
|
+
|
10241
|
+
attr_accessor :Operator, :SsoApplicationId, :OpenIds, :Agent, :Limit, :Offset
|
10242
|
+
|
10243
|
+
def initialize(operator=nil, ssoapplicationid=nil, openids=nil, agent=nil, limit=nil, offset=nil)
|
10244
|
+
@Operator = operator
|
10245
|
+
@SsoApplicationId = ssoapplicationid
|
10246
|
+
@OpenIds = openids
|
10247
|
+
@Agent = agent
|
10248
|
+
@Limit = limit
|
10249
|
+
@Offset = offset
|
10250
|
+
end
|
10251
|
+
|
10252
|
+
def deserialize(params)
|
10253
|
+
unless params['Operator'].nil?
|
10254
|
+
@Operator = UserInfo.new
|
10255
|
+
@Operator.deserialize(params['Operator'])
|
10256
|
+
end
|
10257
|
+
@SsoApplicationId = params['SsoApplicationId']
|
10258
|
+
@OpenIds = params['OpenIds']
|
10259
|
+
unless params['Agent'].nil?
|
10260
|
+
@Agent = Agent.new
|
10261
|
+
@Agent.deserialize(params['Agent'])
|
10262
|
+
end
|
10263
|
+
@Limit = params['Limit']
|
10264
|
+
@Offset = params['Offset']
|
10265
|
+
end
|
10266
|
+
end
|
10267
|
+
|
10268
|
+
# DescribeSingleSignOnEmployees返回参数结构体
|
10269
|
+
class DescribeSingleSignOnEmployeesResponse < TencentCloud::Common::AbstractModel
|
10270
|
+
# @param Employees: 单点登录企业员工信息
|
10271
|
+
# @type Employees: Array
|
10272
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10273
|
+
# @type RequestId: String
|
10274
|
+
|
10275
|
+
attr_accessor :Employees, :RequestId
|
10276
|
+
|
10277
|
+
def initialize(employees=nil, requestid=nil)
|
10278
|
+
@Employees = employees
|
10279
|
+
@RequestId = requestid
|
10280
|
+
end
|
10281
|
+
|
10282
|
+
def deserialize(params)
|
10283
|
+
unless params['Employees'].nil?
|
10284
|
+
@Employees = []
|
10285
|
+
params['Employees'].each do |i|
|
10286
|
+
singlesignonemployees_tmp = SingleSignOnEmployees.new
|
10287
|
+
singlesignonemployees_tmp.deserialize(i)
|
10288
|
+
@Employees << singlesignonemployees_tmp
|
10289
|
+
end
|
10290
|
+
end
|
10291
|
+
@RequestId = params['RequestId']
|
10292
|
+
end
|
10293
|
+
end
|
10294
|
+
|
10096
10295
|
# DescribeThirdPartyAuthCode请求参数结构体
|
10097
10296
|
class DescribeThirdPartyAuthCodeRequest < TencentCloud::Common::AbstractModel
|
10098
10297
|
# @param AuthCode: 腾讯电子签小程序跳转客户企业小程序时携带的授权查看码,AuthCode由腾讯电子签小程序生成。
|
@@ -11093,8 +11292,8 @@ module TencentCloud
|
|
11093
11292
|
|
11094
11293
|
attr_accessor :ApproveMessage, :ApproveName, :ApproveStatus, :ReceiptId, :CustomUserId, :Mobile, :SignOrder, :ApproveTime, :ApproveType, :ApproverSource, :CustomApproverTag, :OrganizationId, :OrganizationName, :SignId, :ApproverRoleName, :RecipientId
|
11095
11294
|
extend Gem::Deprecate
|
11096
|
-
deprecate :ReceiptId, :none, 2025,
|
11097
|
-
deprecate :ReceiptId=, :none, 2025,
|
11295
|
+
deprecate :ReceiptId, :none, 2025, 10
|
11296
|
+
deprecate :ReceiptId=, :none, 2025, 10
|
11098
11297
|
|
11099
11298
|
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
11299
|
@ApproveMessage = approvemessage
|
@@ -11481,8 +11680,8 @@ module TencentCloud
|
|
11481
11680
|
|
11482
11681
|
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
11682
|
extend Gem::Deprecate
|
11484
|
-
deprecate :JumpUrl, :none, 2025,
|
11485
|
-
deprecate :JumpUrl=, :none, 2025,
|
11683
|
+
deprecate :JumpUrl, :none, 2025, 10
|
11684
|
+
deprecate :JumpUrl=, :none, 2025, 10
|
11486
11685
|
|
11487
11686
|
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
11687
|
@ApproverType = approvertype
|
@@ -11797,8 +11996,8 @@ module TencentCloud
|
|
11797
11996
|
|
11798
11997
|
attr_accessor :FlowName, :Approvers, :FileIds, :TemplateId, :FlowType, :FlowDescription, :Deadline, :CallbackUrl, :UserData, :Unordered, :Components, :NeedSignReview, :AutoSignScene, :FlowDisplayType
|
11799
11998
|
extend Gem::Deprecate
|
11800
|
-
deprecate :CallbackUrl, :none, 2025,
|
11801
|
-
deprecate :CallbackUrl=, :none, 2025,
|
11999
|
+
deprecate :CallbackUrl, :none, 2025, 10
|
12000
|
+
deprecate :CallbackUrl=, :none, 2025, 10
|
11802
12001
|
|
11803
12002
|
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
12003
|
@FlowName = flowname
|
@@ -12470,8 +12669,8 @@ module TencentCloud
|
|
12470
12669
|
|
12471
12670
|
attr_accessor :TaskId, :Operator, :Agent, :Organization
|
12472
12671
|
extend Gem::Deprecate
|
12473
|
-
deprecate :Organization, :none, 2025,
|
12474
|
-
deprecate :Organization=, :none, 2025,
|
12672
|
+
deprecate :Organization, :none, 2025, 10
|
12673
|
+
deprecate :Organization=, :none, 2025, 10
|
12475
12674
|
|
12476
12675
|
def initialize(taskid=nil, operator=nil, agent=nil, organization=nil)
|
12477
12676
|
@TaskId = taskid
|
@@ -13449,6 +13648,61 @@ module TencentCloud
|
|
13449
13648
|
end
|
13450
13649
|
end
|
13451
13650
|
|
13651
|
+
# ModifySingleSignOnEmployees请求参数结构体
|
13652
|
+
class ModifySingleSignOnEmployeesRequest < TencentCloud::Common::AbstractModel
|
13653
|
+
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。
|
13654
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
13655
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
13656
|
+
# @param SsoApplicationId: 单点登录应用号的id,获取位置如下图
|
13657
|
+
# @type SsoApplicationId: String
|
13658
|
+
# @param Employee: 待修改员工的信息。
|
13659
|
+
# @type Employee: :class:`Tencentcloud::Ess.v20201111.models.SingleSignOnEmployees`
|
13660
|
+
# @param Agent: 代理企业和员工的信息。
|
13661
|
+
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
13662
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
13663
|
+
|
13664
|
+
attr_accessor :Operator, :SsoApplicationId, :Employee, :Agent
|
13665
|
+
|
13666
|
+
def initialize(operator=nil, ssoapplicationid=nil, employee=nil, agent=nil)
|
13667
|
+
@Operator = operator
|
13668
|
+
@SsoApplicationId = ssoapplicationid
|
13669
|
+
@Employee = employee
|
13670
|
+
@Agent = agent
|
13671
|
+
end
|
13672
|
+
|
13673
|
+
def deserialize(params)
|
13674
|
+
unless params['Operator'].nil?
|
13675
|
+
@Operator = UserInfo.new
|
13676
|
+
@Operator.deserialize(params['Operator'])
|
13677
|
+
end
|
13678
|
+
@SsoApplicationId = params['SsoApplicationId']
|
13679
|
+
unless params['Employee'].nil?
|
13680
|
+
@Employee = SingleSignOnEmployees.new
|
13681
|
+
@Employee.deserialize(params['Employee'])
|
13682
|
+
end
|
13683
|
+
unless params['Agent'].nil?
|
13684
|
+
@Agent = Agent.new
|
13685
|
+
@Agent.deserialize(params['Agent'])
|
13686
|
+
end
|
13687
|
+
end
|
13688
|
+
end
|
13689
|
+
|
13690
|
+
# ModifySingleSignOnEmployees返回参数结构体
|
13691
|
+
class ModifySingleSignOnEmployeesResponse < TencentCloud::Common::AbstractModel
|
13692
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13693
|
+
# @type RequestId: String
|
13694
|
+
|
13695
|
+
attr_accessor :RequestId
|
13696
|
+
|
13697
|
+
def initialize(requestid=nil)
|
13698
|
+
@RequestId = requestid
|
13699
|
+
end
|
13700
|
+
|
13701
|
+
def deserialize(params)
|
13702
|
+
@RequestId = params['RequestId']
|
13703
|
+
end
|
13704
|
+
end
|
13705
|
+
|
13452
13706
|
# 需要进行签署审核的签署人信息
|
13453
13707
|
class NeedReviewApproverInfo < TencentCloud::Common::AbstractModel
|
13454
13708
|
# @param ApproverType: 签署方经办人的类型,支持以下类型
|
@@ -13916,16 +14170,16 @@ module TencentCloud
|
|
13916
14170
|
|
13917
14171
|
attr_accessor :OrganizationId, :Channel, :OrganizationOpenId, :ClientIp, :ProxyIp
|
13918
14172
|
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,
|
14173
|
+
deprecate :OrganizationId, :none, 2025, 10
|
14174
|
+
deprecate :OrganizationId=, :none, 2025, 10
|
14175
|
+
deprecate :Channel, :none, 2025, 10
|
14176
|
+
deprecate :Channel=, :none, 2025, 10
|
14177
|
+
deprecate :OrganizationOpenId, :none, 2025, 10
|
14178
|
+
deprecate :OrganizationOpenId=, :none, 2025, 10
|
14179
|
+
deprecate :ClientIp, :none, 2025, 10
|
14180
|
+
deprecate :ClientIp=, :none, 2025, 10
|
14181
|
+
deprecate :ProxyIp, :none, 2025, 10
|
14182
|
+
deprecate :ProxyIp=, :none, 2025, 10
|
13929
14183
|
|
13930
14184
|
def initialize(organizationid=nil, channel=nil, organizationopenid=nil, clientip=nil, proxyip=nil)
|
13931
14185
|
@OrganizationId = organizationid
|
@@ -14411,10 +14665,10 @@ module TencentCloud
|
|
14411
14665
|
|
14412
14666
|
attr_accessor :LegalName, :Uscc, :UnifiedSocialCreditCode, :OrganizationAddress, :AuthorizationTypes, :AuthorizationType
|
14413
14667
|
extend Gem::Deprecate
|
14414
|
-
deprecate :Uscc, :none, 2025,
|
14415
|
-
deprecate :Uscc=, :none, 2025,
|
14416
|
-
deprecate :AuthorizationTypes, :none, 2025,
|
14417
|
-
deprecate :AuthorizationTypes=, :none, 2025,
|
14668
|
+
deprecate :Uscc, :none, 2025, 10
|
14669
|
+
deprecate :Uscc=, :none, 2025, 10
|
14670
|
+
deprecate :AuthorizationTypes, :none, 2025, 10
|
14671
|
+
deprecate :AuthorizationTypes=, :none, 2025, 10
|
14418
14672
|
|
14419
14673
|
def initialize(legalname=nil, uscc=nil, unifiedsocialcreditcode=nil, organizationaddress=nil, authorizationtypes=nil, authorizationtype=nil)
|
14420
14674
|
@LegalName = legalname
|
@@ -14550,8 +14804,8 @@ module TencentCloud
|
|
14550
14804
|
|
14551
14805
|
attr_accessor :Name, :Mobile, :RelievedApproverReceiptId, :ApproverType, :ApproverSignComponentType, :ApproverSignRole, :ApproverSignSealId, :RelievedApproverRecipientId
|
14552
14806
|
extend Gem::Deprecate
|
14553
|
-
deprecate :RelievedApproverReceiptId, :none, 2025,
|
14554
|
-
deprecate :RelievedApproverReceiptId=, :none, 2025,
|
14807
|
+
deprecate :RelievedApproverReceiptId, :none, 2025, 10
|
14808
|
+
deprecate :RelievedApproverReceiptId=, :none, 2025, 10
|
14555
14809
|
|
14556
14810
|
def initialize(name=nil, mobile=nil, relievedapproverreceiptid=nil, approvertype=nil, approversigncomponenttype=nil, approversignrole=nil, approversignsealid=nil, relievedapproverrecipientid=nil)
|
14557
14811
|
@Name = name
|
@@ -14867,6 +15121,53 @@ module TencentCloud
|
|
14867
15121
|
end
|
14868
15122
|
end
|
14869
15123
|
|
15124
|
+
# 单点登录企业员工信息。
|
15125
|
+
class SingleSignOnEmployees < TencentCloud::Common::AbstractModel
|
15126
|
+
# @param OpenId: 用户在idp分配的唯一值,需要保持跟在电子签应用集成->单点登录配置->端点配置中配置的。
|
15127
|
+
# 如下图配置。
|
15128
|
+
# @type OpenId: String
|
15129
|
+
# @param Name: 企业员工姓名。 员工的姓名将用于身份认证和电子签名,请确保填写的姓名为签署方的真实姓名,而非昵称等代名。
|
15130
|
+
# @type Name: String
|
15131
|
+
# @param Mobile: 用户手机号码, 支持中国大陆手机号11位数字(无需加+86前缀或其他字符)。
|
15132
|
+
# @type Mobile: String
|
15133
|
+
# @param UserId: 员工在腾讯电子签平台的唯一身份标识,为32位字符串。
|
15134
|
+
# 注:`创建和更新场景无需填写。`
|
15135
|
+
# @type UserId: String
|
15136
|
+
# @param Email: 用户邮箱。
|
15137
|
+
# @type Email: String
|
15138
|
+
# @param RoleIds: 员工角色信息。
|
15139
|
+
# 此处roleId为电子签配置的 RoleId,可通过接口[查询企业角色列表](https://qian.tencent.com/developers/companyApis/roles/DescribeIntegrationRoles) 获取
|
15140
|
+
# @type RoleIds: Array
|
15141
|
+
# @param IsVerified: 员工是否实名。
|
15142
|
+
# @type IsVerified: Boolean
|
15143
|
+
# @param CreatedOn: 员工创建时间戳,单位秒。
|
15144
|
+
# @type CreatedOn: Integer
|
15145
|
+
|
15146
|
+
attr_accessor :OpenId, :Name, :Mobile, :UserId, :Email, :RoleIds, :IsVerified, :CreatedOn
|
15147
|
+
|
15148
|
+
def initialize(openid=nil, name=nil, mobile=nil, userid=nil, email=nil, roleids=nil, isverified=nil, createdon=nil)
|
15149
|
+
@OpenId = openid
|
15150
|
+
@Name = name
|
15151
|
+
@Mobile = mobile
|
15152
|
+
@UserId = userid
|
15153
|
+
@Email = email
|
15154
|
+
@RoleIds = roleids
|
15155
|
+
@IsVerified = isverified
|
15156
|
+
@CreatedOn = createdon
|
15157
|
+
end
|
15158
|
+
|
15159
|
+
def deserialize(params)
|
15160
|
+
@OpenId = params['OpenId']
|
15161
|
+
@Name = params['Name']
|
15162
|
+
@Mobile = params['Mobile']
|
15163
|
+
@UserId = params['UserId']
|
15164
|
+
@Email = params['Email']
|
15165
|
+
@RoleIds = params['RoleIds']
|
15166
|
+
@IsVerified = params['IsVerified']
|
15167
|
+
@CreatedOn = params['CreatedOn']
|
15168
|
+
end
|
15169
|
+
end
|
15170
|
+
|
14870
15171
|
# 企业员工信息。
|
14871
15172
|
class Staff < TencentCloud::Common::AbstractModel
|
14872
15173
|
# @param UserId: 员工在腾讯电子签平台的唯一身份标识,为32位字符串。
|
@@ -14995,8 +15296,8 @@ module TencentCloud
|
|
14995
15296
|
|
14996
15297
|
attr_accessor :Operator, :FlowId, :ClientToken, :Agent, :CcNotifyType
|
14997
15298
|
extend Gem::Deprecate
|
14998
|
-
deprecate :ClientToken, :none, 2025,
|
14999
|
-
deprecate :ClientToken=, :none, 2025,
|
15299
|
+
deprecate :ClientToken, :none, 2025, 10
|
15300
|
+
deprecate :ClientToken=, :none, 2025, 10
|
15000
15301
|
|
15001
15302
|
def initialize(operator=nil, flowid=nil, clienttoken=nil, agent=nil, ccnotifytype=nil)
|
15002
15303
|
@Operator = operator
|
@@ -15302,8 +15603,8 @@ module TencentCloud
|
|
15302
15603
|
|
15303
15604
|
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
15605
|
extend Gem::Deprecate
|
15305
|
-
deprecate :Seals, :none, 2025,
|
15306
|
-
deprecate :Seals=, :none, 2025,
|
15606
|
+
deprecate :Seals, :none, 2025, 10
|
15607
|
+
deprecate :Seals=, :none, 2025, 10
|
15307
15608
|
|
15308
15609
|
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
15610
|
@TemplateId = templateid
|
@@ -15654,8 +15955,8 @@ module TencentCloud
|
|
15654
15955
|
|
15655
15956
|
attr_accessor :BusinessType, :Caller, :FileInfos, :FileType, :CoverRect, :CustomIds, :FileUrls, :Agent
|
15656
15957
|
extend Gem::Deprecate
|
15657
|
-
deprecate :FileUrls, :none, 2025,
|
15658
|
-
deprecate :FileUrls=, :none, 2025,
|
15958
|
+
deprecate :FileUrls, :none, 2025, 10
|
15959
|
+
deprecate :FileUrls=, :none, 2025, 10
|
15659
15960
|
|
15660
15961
|
def initialize(businesstype=nil, caller=nil, fileinfos=nil, filetype=nil, coverrect=nil, customids=nil, fileurls=nil, agent=nil)
|
15661
15962
|
@BusinessType = businesstype
|
@@ -15758,14 +16059,14 @@ module TencentCloud
|
|
15758
16059
|
|
15759
16060
|
attr_accessor :UserId, :Channel, :OpenId, :ClientIp, :ProxyIp
|
15760
16061
|
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,
|
16062
|
+
deprecate :Channel, :none, 2025, 10
|
16063
|
+
deprecate :Channel=, :none, 2025, 10
|
16064
|
+
deprecate :OpenId, :none, 2025, 10
|
16065
|
+
deprecate :OpenId=, :none, 2025, 10
|
16066
|
+
deprecate :ClientIp, :none, 2025, 10
|
16067
|
+
deprecate :ClientIp=, :none, 2025, 10
|
16068
|
+
deprecate :ProxyIp, :none, 2025, 10
|
16069
|
+
deprecate :ProxyIp=, :none, 2025, 10
|
15769
16070
|
|
15770
16071
|
def initialize(userid=nil, channel=nil, openid=nil, clientip=nil, proxyip=nil)
|
15771
16072
|
@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.1151
|
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-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|