tencentcloud-sdk-ess 3.0.1008 → 3.0.1009
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 +28 -0
- data/lib/v20201111/models.rb +141 -250
- 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: cea25ecc5504264e59077909c6698d709adc2ada
|
4
|
+
data.tar.gz: a844892967d5f54281756a5e049501259d493ae5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9ec724b249e6f22052f94e59bf68438d4289730dc3f56418d4210964df8c2bd140dc626a603021afdaffcaaf302aeb952935d87b42295373b168b25a41cffa1
|
7
|
+
data.tar.gz: a7aa3da64d1093001d66ae367563d06e89e262dea65dcd4125dd4aa74a724ebc9b8acfd804864afd194c6df94fcd727dc8f85a571159ec8e24264cdece2ac479
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1009
|
data/lib/v20201111/client.rb
CHANGED
@@ -557,6 +557,34 @@ module TencentCloud
|
|
557
557
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
558
558
|
end
|
559
559
|
|
560
|
+
# 生成员工信息变更链接,当前仅支持变更手机号
|
561
|
+
|
562
|
+
# 注:
|
563
|
+
# 1. 目前仅支持修改员工手机号,待修改员工必须已经实名且在职
|
564
|
+
# 2. 仅支持返回小程序链接
|
565
|
+
|
566
|
+
# @param request: Request instance for CreateEmployeeChangeUrl.
|
567
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::CreateEmployeeChangeUrlRequest`
|
568
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::CreateEmployeeChangeUrlResponse`
|
569
|
+
def CreateEmployeeChangeUrl(request)
|
570
|
+
body = send_request('CreateEmployeeChangeUrl', request.serialize)
|
571
|
+
response = JSON.parse(body)
|
572
|
+
if response['Response'].key?('Error') == false
|
573
|
+
model = CreateEmployeeChangeUrlResponse.new
|
574
|
+
model.deserialize(response['Response'])
|
575
|
+
model
|
576
|
+
else
|
577
|
+
code = response['Response']['Error']['Code']
|
578
|
+
message = response['Response']['Error']['Message']
|
579
|
+
reqid = response['Response']['RequestId']
|
580
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
581
|
+
end
|
582
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
583
|
+
raise e
|
584
|
+
rescue StandardError => e
|
585
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
586
|
+
end
|
587
|
+
|
560
588
|
# 该接口用于获取个人授权执业章给企业的微信二维码,需要个人用户通过微信扫码。
|
561
589
|
|
562
590
|
# 扫描后将跳转到腾讯电子签小程序,进入到授权执业章的流程。
|
data/lib/v20201111/models.rb
CHANGED
@@ -20,12 +20,9 @@ module TencentCloud
|
|
20
20
|
# 企业超管信息
|
21
21
|
class Admin < TencentCloud::Common::AbstractModel
|
22
22
|
# @param Name: 超管名
|
23
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
24
23
|
# @type Name: String
|
25
24
|
# @param Mobile: 超管手机号,打码显示
|
26
25
|
# 示例值:138****1569
|
27
|
-
|
28
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
29
26
|
# @type Mobile: String
|
30
27
|
|
31
28
|
attr_accessor :Name, :Mobile
|
@@ -54,12 +51,12 @@ module TencentCloud
|
|
54
51
|
|
55
52
|
attr_accessor :AppId, :ProxyAppId, :ProxyOrganizationId, :ProxyOperator
|
56
53
|
extend Gem::Deprecate
|
57
|
-
deprecate :AppId, :none, 2025,
|
58
|
-
deprecate :AppId=, :none, 2025,
|
59
|
-
deprecate :ProxyAppId, :none, 2025,
|
60
|
-
deprecate :ProxyAppId=, :none, 2025,
|
61
|
-
deprecate :ProxyOperator, :none, 2025,
|
62
|
-
deprecate :ProxyOperator=, :none, 2025,
|
54
|
+
deprecate :AppId, :none, 2025, 3
|
55
|
+
deprecate :AppId=, :none, 2025, 3
|
56
|
+
deprecate :ProxyAppId, :none, 2025, 3
|
57
|
+
deprecate :ProxyAppId=, :none, 2025, 3
|
58
|
+
deprecate :ProxyOperator, :none, 2025, 3
|
59
|
+
deprecate :ProxyOperator=, :none, 2025, 3
|
63
60
|
|
64
61
|
def initialize(appid=nil, proxyappid=nil, proxyorganizationid=nil, proxyoperator=nil)
|
65
62
|
@AppId = appid
|
@@ -337,13 +334,10 @@ module TencentCloud
|
|
337
334
|
# 签署方信息,发起合同后可获取到对应的签署方信息,如角色ID,角色名称
|
338
335
|
class ApproverItem < TencentCloud::Common::AbstractModel
|
339
336
|
# @param SignId: 签署方唯一编号
|
340
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
341
337
|
# @type SignId: String
|
342
338
|
# @param RecipientId: 签署方角色编号
|
343
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
344
339
|
# @type RecipientId: String
|
345
340
|
# @param ApproverRoleName: 签署方角色名称
|
346
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
347
341
|
# @type ApproverRoleName: String
|
348
342
|
|
349
343
|
attr_accessor :SignId, :RecipientId, :ApproverRoleName
|
@@ -453,13 +447,10 @@ module TencentCloud
|
|
453
447
|
# @param SignId: 签署方唯一编号,一个全局唯一的标识符,不同的流程不会出现冲突。
|
454
448
|
|
455
449
|
# 可以使用签署方的唯一编号来生成签署链接(也可以通过RecipientId来生成签署链接)。
|
456
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
457
450
|
# @type SignId: String
|
458
451
|
# @param RecipientId: 签署方角色编号,签署方角色编号是用于区分同一个流程中不同签署方的唯一标识。不同的流程会出现同样的签署方角色编号。
|
459
452
|
|
460
453
|
# 填写控件和签署控件都与特定的角色编号关联。
|
461
|
-
|
462
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
463
454
|
# @type RecipientId: String
|
464
455
|
|
465
456
|
attr_accessor :SignId, :RecipientId
|
@@ -543,22 +534,16 @@ module TencentCloud
|
|
543
534
|
# 企业扩展服务授权列表详情
|
544
535
|
class AuthInfoDetail < TencentCloud::Common::AbstractModel
|
545
536
|
# @param Type: 扩展服务类型,和入参一致
|
546
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
547
537
|
# @type Type: String
|
548
538
|
# @param Name: 扩展服务名称
|
549
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
550
539
|
# @type Name: String
|
551
540
|
# @param HasAuthUserList: 授权员工列表
|
552
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
553
541
|
# @type HasAuthUserList: Array
|
554
542
|
# @param HasAuthOrganizationList: 授权企业列表(企业自动签时,该字段有值)
|
555
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
556
543
|
# @type HasAuthOrganizationList: Array
|
557
544
|
# @param AuthUserTotal: 授权员工列表总数
|
558
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
559
545
|
# @type AuthUserTotal: Integer
|
560
546
|
# @param AuthOrganizationTotal: 授权企业列表总数
|
561
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
562
547
|
# @type AuthOrganizationTotal: Integer
|
563
548
|
|
564
549
|
attr_accessor :Type, :Name, :HasAuthUserList, :HasAuthOrganizationList, :AuthUserTotal, :AuthOrganizationTotal
|
@@ -696,8 +681,8 @@ module TencentCloud
|
|
696
681
|
|
697
682
|
attr_accessor :UserInfo, :CertInfoCallback, :UserDefineSeal, :SealImgCallback, :CallbackUrl, :VerifyChannels, :LicenseType, :JumpUrl
|
698
683
|
extend Gem::Deprecate
|
699
|
-
deprecate :CallbackUrl, :none, 2025,
|
700
|
-
deprecate :CallbackUrl=, :none, 2025,
|
684
|
+
deprecate :CallbackUrl, :none, 2025, 3
|
685
|
+
deprecate :CallbackUrl=, :none, 2025, 3
|
701
686
|
|
702
687
|
def initialize(userinfo=nil, certinfocallback=nil, userdefineseal=nil, sealimgcallback=nil, callbackurl=nil, verifychannels=nil, licensetype=nil, jumpurl=nil)
|
703
688
|
@UserInfo = userinfo
|
@@ -890,8 +875,8 @@ module TencentCloud
|
|
890
875
|
|
891
876
|
attr_accessor :CallbackUrl, :Token, :CallbackKey, :CallbackToken
|
892
877
|
extend Gem::Deprecate
|
893
|
-
deprecate :Token, :none, 2025,
|
894
|
-
deprecate :Token=, :none, 2025,
|
878
|
+
deprecate :Token, :none, 2025, 3
|
879
|
+
deprecate :Token=, :none, 2025, 3
|
895
880
|
|
896
881
|
def initialize(callbackurl=nil, token=nil, callbackkey=nil, callbacktoken=nil)
|
897
882
|
@CallbackUrl = callbackurl
|
@@ -921,12 +906,12 @@ module TencentCloud
|
|
921
906
|
|
922
907
|
attr_accessor :ApplicationId, :OrganizationId, :OperatorId, :SubOrganizationId
|
923
908
|
extend Gem::Deprecate
|
924
|
-
deprecate :ApplicationId, :none, 2025,
|
925
|
-
deprecate :ApplicationId=, :none, 2025,
|
926
|
-
deprecate :OrganizationId, :none, 2025,
|
927
|
-
deprecate :OrganizationId=, :none, 2025,
|
928
|
-
deprecate :SubOrganizationId, :none, 2025,
|
929
|
-
deprecate :SubOrganizationId=, :none, 2025,
|
909
|
+
deprecate :ApplicationId, :none, 2025, 3
|
910
|
+
deprecate :ApplicationId=, :none, 2025, 3
|
911
|
+
deprecate :OrganizationId, :none, 2025, 3
|
912
|
+
deprecate :OrganizationId=, :none, 2025, 3
|
913
|
+
deprecate :SubOrganizationId, :none, 2025, 3
|
914
|
+
deprecate :SubOrganizationId=, :none, 2025, 3
|
930
915
|
|
931
916
|
def initialize(applicationid=nil, organizationid=nil, operatorid=nil, suborganizationid=nil)
|
932
917
|
@ApplicationId = applicationid
|
@@ -1401,11 +1386,9 @@ module TencentCloud
|
|
1401
1386
|
# @type ComponentValue: String
|
1402
1387
|
# @param OffsetX: **如果控件是关键字定位方式**,可以对关键字定位出来的区域进行横坐标方向的调整,单位为pt(点)。例如,如果关键字定位出来的区域偏左或偏右,可以通过调整横坐标方向的参数来使控件位置更加准确。
|
1403
1388
|
# 注意: `向左调整设置为负数, 向右调整设置成正数`
|
1404
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1405
1389
|
# @type OffsetX: Float
|
1406
1390
|
# @param OffsetY: **如果控件是关键字定位方式**,可以对关键字定位出来的区域进行纵坐标方向的调整,单位为pt(点)。例如,如果关键字定位出来的区域偏上或偏下,可以通过调整纵坐标方向的参数来使控件位置更加准确。
|
1407
1391
|
# 注意: `向上调整设置为负数, 向下调整设置成正数`
|
1408
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1409
1392
|
# @type OffsetY: Float
|
1410
1393
|
# @param KeywordOrder: **如果控件是关键字定位方式**,指定关键字排序规则时,可以选择Positive或Reverse两种排序方式。
|
1411
1394
|
# <ul><li> <b>Positive</b> :表示正序,即根据关键字在PDF文件内的顺序进行排列</li>
|
@@ -1430,12 +1413,10 @@ module TencentCloud
|
|
1430
1413
|
# @param LockComponentValue: **web嵌入发起合同场景下**, 是否锁定填写和签署控件值不允许嵌入页面进行编辑
|
1431
1414
|
# <ul><li>false(默认):不锁定控件值,允许在页面编辑控件值</li>
|
1432
1415
|
# <li>true:锁定控件值,在页面编辑控件值</li></ul>
|
1433
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1434
1416
|
# @type LockComponentValue: Boolean
|
1435
1417
|
# @param ForbidMoveAndDelete: **web嵌入发起合同场景下**,是否禁止移动和删除填写和签署控件
|
1436
1418
|
# <ul><li> <b>false(默认)</b> :不禁止移动和删除控件</li>
|
1437
1419
|
# <li> <b>true</b> : 可以移动和删除控件</li></ul>
|
1438
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1439
1420
|
# @type ForbidMoveAndDelete: Boolean
|
1440
1421
|
# @param ComponentDateFontSize: <font color="red">【暂未使用】</font>日期签署控件的字号,默认为 12
|
1441
1422
|
# @type ComponentDateFontSize: Integer
|
@@ -2195,8 +2176,8 @@ module TencentCloud
|
|
2195
2176
|
|
2196
2177
|
attr_accessor :ResourceType, :ResourceName, :ResourceId, :Operator, :Agent, :Organization
|
2197
2178
|
extend Gem::Deprecate
|
2198
|
-
deprecate :Organization, :none, 2025,
|
2199
|
-
deprecate :Organization=, :none, 2025,
|
2179
|
+
deprecate :Organization, :none, 2025, 3
|
2180
|
+
deprecate :Organization=, :none, 2025, 3
|
2200
2181
|
|
2201
2182
|
def initialize(resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, agent=nil, organization=nil)
|
2202
2183
|
@ResourceType = resourcetype
|
@@ -2539,6 +2520,65 @@ module TencentCloud
|
|
2539
2520
|
end
|
2540
2521
|
end
|
2541
2522
|
|
2523
|
+
# CreateEmployeeChangeUrl请求参数结构体
|
2524
|
+
class CreateEmployeeChangeUrlRequest < TencentCloud::Common::AbstractModel
|
2525
|
+
# @param Agent: 代理企业和员工的信息。<br/>在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
2526
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
2527
|
+
# @param Operator: 执行本接口操作的员工信息。<br/>注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
2528
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
2529
|
+
# @param UserId: 待修改的员工UserId
|
2530
|
+
# @type UserId: String
|
2531
|
+
# @param NewMobile: 待修改的员工手机号
|
2532
|
+
# @type NewMobile: String
|
2533
|
+
|
2534
|
+
attr_accessor :Agent, :Operator, :UserId, :NewMobile
|
2535
|
+
|
2536
|
+
def initialize(agent=nil, operator=nil, userid=nil, newmobile=nil)
|
2537
|
+
@Agent = agent
|
2538
|
+
@Operator = operator
|
2539
|
+
@UserId = userid
|
2540
|
+
@NewMobile = newmobile
|
2541
|
+
end
|
2542
|
+
|
2543
|
+
def deserialize(params)
|
2544
|
+
unless params['Agent'].nil?
|
2545
|
+
@Agent = Agent.new
|
2546
|
+
@Agent.deserialize(params['Agent'])
|
2547
|
+
end
|
2548
|
+
unless params['Operator'].nil?
|
2549
|
+
@Operator = UserInfo.new
|
2550
|
+
@Operator.deserialize(params['Operator'])
|
2551
|
+
end
|
2552
|
+
@UserId = params['UserId']
|
2553
|
+
@NewMobile = params['NewMobile']
|
2554
|
+
end
|
2555
|
+
end
|
2556
|
+
|
2557
|
+
# CreateEmployeeChangeUrl返回参数结构体
|
2558
|
+
class CreateEmployeeChangeUrlResponse < TencentCloud::Common::AbstractModel
|
2559
|
+
# @param MiniAppPath: 修改员工信息的小程序链接<br>跳转到腾讯电子签小程序的实现可以参考微信的官方文档:<a href="https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/launchApp.html" target="_blank">开放能力/打开 App</a>
|
2560
|
+
# @type MiniAppPath: String
|
2561
|
+
# @param ExpireTime: 链接过期时间以 Unix 时间戳格式表示,从生成链接时间起,往后7天有效期。过期后短链将失效,无法打开。
|
2562
|
+
|
2563
|
+
# @type ExpireTime: Integer
|
2564
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2565
|
+
# @type RequestId: String
|
2566
|
+
|
2567
|
+
attr_accessor :MiniAppPath, :ExpireTime, :RequestId
|
2568
|
+
|
2569
|
+
def initialize(miniapppath=nil, expiretime=nil, requestid=nil)
|
2570
|
+
@MiniAppPath = miniapppath
|
2571
|
+
@ExpireTime = expiretime
|
2572
|
+
@RequestId = requestid
|
2573
|
+
end
|
2574
|
+
|
2575
|
+
def deserialize(params)
|
2576
|
+
@MiniAppPath = params['MiniAppPath']
|
2577
|
+
@ExpireTime = params['ExpireTime']
|
2578
|
+
@RequestId = params['RequestId']
|
2579
|
+
end
|
2580
|
+
end
|
2581
|
+
|
2542
2582
|
# CreateEmployeeQualificationSealQrCode请求参数结构体
|
2543
2583
|
class CreateEmployeeQualificationSealQrCodeRequest < TencentCloud::Common::AbstractModel
|
2544
2584
|
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。 支持填入集团子公司经办人 userId 代发合同。 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
@@ -3175,8 +3215,8 @@ module TencentCloud
|
|
3175
3215
|
|
3176
3216
|
attr_accessor :ReportId, :Status, :ReportUrl, :RequestId
|
3177
3217
|
extend Gem::Deprecate
|
3178
|
-
deprecate :ReportUrl, :none, 2025,
|
3179
|
-
deprecate :ReportUrl=, :none, 2025,
|
3218
|
+
deprecate :ReportUrl, :none, 2025, 3
|
3219
|
+
deprecate :ReportUrl=, :none, 2025, 3
|
3180
3220
|
|
3181
3221
|
def initialize(reportid=nil, status=nil, reporturl=nil, requestid=nil)
|
3182
3222
|
@ReportId = reportid
|
@@ -3748,10 +3788,10 @@ module TencentCloud
|
|
3748
3788
|
|
3749
3789
|
attr_accessor :Operator, :FlowName, :Approvers, :FlowDescription, :FlowType, :ClientToken, :DeadLine, :RemindedOn, :UserData, :Unordered, :CustomShowMap, :NeedSignReview, :Agent, :CcInfos, :AutoSignScene, :RelatedFlowId, :CallbackUrl, :FlowDisplayType
|
3750
3790
|
extend Gem::Deprecate
|
3751
|
-
deprecate :RelatedFlowId, :none, 2025,
|
3752
|
-
deprecate :RelatedFlowId=, :none, 2025,
|
3753
|
-
deprecate :CallbackUrl, :none, 2025,
|
3754
|
-
deprecate :CallbackUrl=, :none, 2025,
|
3791
|
+
deprecate :RelatedFlowId, :none, 2025, 3
|
3792
|
+
deprecate :RelatedFlowId=, :none, 2025, 3
|
3793
|
+
deprecate :CallbackUrl, :none, 2025, 3
|
3794
|
+
deprecate :CallbackUrl=, :none, 2025, 3
|
3755
3795
|
|
3756
3796
|
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)
|
3757
3797
|
@Operator = operator
|
@@ -3960,8 +4000,8 @@ module TencentCloud
|
|
3960
4000
|
|
3961
4001
|
attr_accessor :FlowId, :Operator, :Agent, :FlowApproverInfos, :Organization, :JumpUrl, :UrlType
|
3962
4002
|
extend Gem::Deprecate
|
3963
|
-
deprecate :Organization, :none, 2025,
|
3964
|
-
deprecate :Organization=, :none, 2025,
|
4003
|
+
deprecate :Organization, :none, 2025, 3
|
4004
|
+
deprecate :Organization=, :none, 2025, 3
|
3965
4005
|
|
3966
4006
|
def initialize(flowid=nil, operator=nil, agent=nil, flowapproverinfos=nil, organization=nil, jumpurl=nil, urltype=nil)
|
3967
4007
|
@FlowId = flowid
|
@@ -4378,8 +4418,8 @@ module TencentCloud
|
|
4378
4418
|
|
4379
4419
|
attr_accessor :Operator, :Agent, :Organization
|
4380
4420
|
extend Gem::Deprecate
|
4381
|
-
deprecate :Organization, :none, 2025,
|
4382
|
-
deprecate :Organization=, :none, 2025,
|
4421
|
+
deprecate :Organization, :none, 2025, 3
|
4422
|
+
deprecate :Organization=, :none, 2025, 3
|
4383
4423
|
|
4384
4424
|
def initialize(operator=nil, agent=nil, organization=nil)
|
4385
4425
|
@Operator = operator
|
@@ -4473,10 +4513,10 @@ module TencentCloud
|
|
4473
4513
|
|
4474
4514
|
attr_accessor :Operator, :TemplateId, :FlowName, :MaxFlowNum, :QrEffectiveDay, :FlowEffectiveDay, :Restrictions, :UserData, :CallbackUrl, :Agent, :ApproverRestrictions, :ApproverComponentLimitTypes, :ForbidPersonalMultipleSign, :FlowNameAppendScannerInfo
|
4475
4515
|
extend Gem::Deprecate
|
4476
|
-
deprecate :CallbackUrl, :none, 2025,
|
4477
|
-
deprecate :CallbackUrl=, :none, 2025,
|
4478
|
-
deprecate :ApproverRestrictions, :none, 2025,
|
4479
|
-
deprecate :ApproverRestrictions=, :none, 2025,
|
4516
|
+
deprecate :CallbackUrl, :none, 2025, 3
|
4517
|
+
deprecate :CallbackUrl=, :none, 2025, 3
|
4518
|
+
deprecate :ApproverRestrictions, :none, 2025, 3
|
4519
|
+
deprecate :ApproverRestrictions=, :none, 2025, 3
|
4480
4520
|
|
4481
4521
|
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)
|
4482
4522
|
@Operator = operator
|
@@ -5426,8 +5466,8 @@ module TencentCloud
|
|
5426
5466
|
|
5427
5467
|
attr_accessor :UserName, :IdCardNumber, :SealName, :Operator, :IdCardType, :SealImage, :SealImageCompress, :Mobile, :EnableAutoSign, :SealColor, :ProcessSeal, :FileId, :Agent, :LicenseType, :SceneKey
|
5428
5468
|
extend Gem::Deprecate
|
5429
|
-
deprecate :SealImage, :none, 2025,
|
5430
|
-
deprecate :SealImage=, :none, 2025,
|
5469
|
+
deprecate :SealImage, :none, 2025, 3
|
5470
|
+
deprecate :SealImage=, :none, 2025, 3
|
5431
5471
|
|
5432
5472
|
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)
|
5433
5473
|
@UserName = username
|
@@ -5968,10 +6008,8 @@ module TencentCloud
|
|
5968
6008
|
# 创建员工的结果
|
5969
6009
|
class CreateStaffResult < TencentCloud::Common::AbstractModel
|
5970
6010
|
# @param SuccessEmployeeData: 创建员工的成功列表
|
5971
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
5972
6011
|
# @type SuccessEmployeeData: Array
|
5973
6012
|
# @param FailedEmployeeData: 创建员工的失败列表
|
5974
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
5975
6013
|
# @type FailedEmployeeData: Array
|
5976
6014
|
|
5977
6015
|
attr_accessor :SuccessEmployeeData, :FailedEmployeeData
|
@@ -6895,10 +6933,8 @@ module TencentCloud
|
|
6895
6933
|
# 删除员工结果
|
6896
6934
|
class DeleteStaffsResult < TencentCloud::Common::AbstractModel
|
6897
6935
|
# @param SuccessEmployeeData: 删除员工的成功数据
|
6898
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
6899
6936
|
# @type SuccessEmployeeData: Array
|
6900
6937
|
# @param FailedEmployeeData: 删除员工的失败数据
|
6901
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
6902
6938
|
# @type FailedEmployeeData: Array
|
6903
6939
|
|
6904
6940
|
attr_accessor :SuccessEmployeeData, :FailedEmployeeData
|
@@ -7474,10 +7510,10 @@ module TencentCloud
|
|
7474
7510
|
|
7475
7511
|
attr_accessor :Operator, :BusinessType, :BusinessIds, :FileName, :FileType, :Offset, :Limit, :UrlTtl, :CcToken, :Scene, :Agent
|
7476
7512
|
extend Gem::Deprecate
|
7477
|
-
deprecate :CcToken, :none, 2025,
|
7478
|
-
deprecate :CcToken=, :none, 2025,
|
7479
|
-
deprecate :Scene, :none, 2025,
|
7480
|
-
deprecate :Scene=, :none, 2025,
|
7513
|
+
deprecate :CcToken, :none, 2025, 3
|
7514
|
+
deprecate :CcToken=, :none, 2025, 3
|
7515
|
+
deprecate :Scene, :none, 2025, 3
|
7516
|
+
deprecate :Scene=, :none, 2025, 3
|
7481
7517
|
|
7482
7518
|
def initialize(operator=nil, businesstype=nil, businessids=nil, filename=nil, filetype=nil, offset=nil, limit=nil, urlttl=nil, cctoken=nil, scene=nil, agent=nil)
|
7483
7519
|
@Operator = operator
|
@@ -7858,12 +7894,12 @@ module TencentCloud
|
|
7858
7894
|
|
7859
7895
|
attr_accessor :Operator, :Agent, :ContentType, :Filters, :Offset, :Limit, :ApplicationId, :IsChannel, :Organization, :GenerateSource, :WithPreviewUrl
|
7860
7896
|
extend Gem::Deprecate
|
7861
|
-
deprecate :IsChannel, :none, 2025,
|
7862
|
-
deprecate :IsChannel=, :none, 2025,
|
7863
|
-
deprecate :Organization, :none, 2025,
|
7864
|
-
deprecate :Organization=, :none, 2025,
|
7865
|
-
deprecate :GenerateSource, :none, 2025,
|
7866
|
-
deprecate :GenerateSource=, :none, 2025,
|
7897
|
+
deprecate :IsChannel, :none, 2025, 3
|
7898
|
+
deprecate :IsChannel=, :none, 2025, 3
|
7899
|
+
deprecate :Organization, :none, 2025, 3
|
7900
|
+
deprecate :Organization=, :none, 2025, 3
|
7901
|
+
deprecate :GenerateSource, :none, 2025, 3
|
7902
|
+
deprecate :GenerateSource=, :none, 2025, 3
|
7867
7903
|
|
7868
7904
|
def initialize(operator=nil, agent=nil, contenttype=nil, filters=nil, offset=nil, limit=nil, applicationid=nil, ischannel=nil, organization=nil, generatesource=nil, withpreviewurl=nil)
|
7869
7905
|
@Operator = operator
|
@@ -8356,8 +8392,8 @@ module TencentCloud
|
|
8356
8392
|
|
8357
8393
|
attr_accessor :Total, :JoinedTotal, :ActivedTotal, :ExportUrl, :List, :ActivatedTotal, :RequestId
|
8358
8394
|
extend Gem::Deprecate
|
8359
|
-
deprecate :ActivedTotal, :none, 2025,
|
8360
|
-
deprecate :ActivedTotal=, :none, 2025,
|
8395
|
+
deprecate :ActivedTotal, :none, 2025, 3
|
8396
|
+
deprecate :ActivedTotal=, :none, 2025, 3
|
8361
8397
|
|
8362
8398
|
def initialize(total=nil, joinedtotal=nil, activedtotal=nil, exporturl=nil, list=nil, activatedtotal=nil, requestid=nil)
|
8363
8399
|
@Total = total
|
@@ -8868,7 +8904,6 @@ module TencentCloud
|
|
8868
8904
|
# @param LiveNessVideo: 活体视频的base64编码,mp4格式
|
8869
8905
|
|
8870
8906
|
# 注:`需进行base64解码获取活体视频文件`
|
8871
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8872
8907
|
# @type LiveNessVideo: String
|
8873
8908
|
|
8874
8909
|
attr_accessor :LiveNessVideo
|
@@ -8945,13 +8980,10 @@ module TencentCloud
|
|
8945
8980
|
# 填写控件和签署控件都与特定的角色编号关联。
|
8946
8981
|
|
8947
8982
|
# 在进行新增签署方操作时,建议记录下该签署方的角色编号。后续可以拉取流程信息,用来判断该签署方的当前状态。
|
8948
|
-
|
8949
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8950
8983
|
# @type RecipientId: String
|
8951
8984
|
# @param SignId: 签署方唯一编号,一个全局唯一的标识符,不同的流程不会出现冲突。
|
8952
8985
|
|
8953
8986
|
# 可以使用签署方的唯一编号来生成签署链接(也可以通过RecipientId来生成签署链接)。
|
8954
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8955
8987
|
# @type SignId: String
|
8956
8988
|
# @param ApproverStatus: 签署方当前状态,会出现下面的状态
|
8957
8989
|
|
@@ -8965,7 +8997,6 @@ module TencentCloud
|
|
8965
8997
|
# 10:填写完成
|
8966
8998
|
# 15:已解除
|
8967
8999
|
# 19:转他人处理
|
8968
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8969
9000
|
# @type ApproverStatus: Integer
|
8970
9001
|
|
8971
9002
|
attr_accessor :RecipientId, :SignId, :ApproverStatus
|
@@ -9042,13 +9073,10 @@ module TencentCloud
|
|
9042
9073
|
# </ul>
|
9043
9074
|
# @type Status: String
|
9044
9075
|
# @param OperatorUserId: 操作扩展服务的操作人UserId,员工在腾讯电子签平台的唯一身份标识,为32位字符串。
|
9045
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9046
9076
|
# @type OperatorUserId: String
|
9047
9077
|
# @param OperateOn: 扩展服务的操作时间,格式为Unix标准时间戳(秒)。
|
9048
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9049
9078
|
# @type OperateOn: Integer
|
9050
9079
|
# @param HasAuthUserList: 该扩展服务若可以授权,此参数对应授权人员的列表
|
9051
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9052
9080
|
# @type HasAuthUserList: Array
|
9053
9081
|
|
9054
9082
|
attr_accessor :Type, :Name, :Status, :OperatorUserId, :OperateOn, :HasAuthUserList
|
@@ -9082,13 +9110,10 @@ module TencentCloud
|
|
9082
9110
|
# 印章扩展信息
|
9083
9111
|
class ExtendScene < TencentCloud::Common::AbstractModel
|
9084
9112
|
# @param GenerateType: 印章来源类型
|
9085
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9086
9113
|
# @type GenerateType: String
|
9087
9114
|
# @param GenerateTypeDesc: 印章来源类型描述
|
9088
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9089
9115
|
# @type GenerateTypeDesc: String
|
9090
9116
|
# @param GenerateTypeLogo: 印章来源logo
|
9091
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9092
9117
|
# @type GenerateTypeLogo: String
|
9093
9118
|
|
9094
9119
|
attr_accessor :GenerateType, :GenerateTypeDesc, :GenerateTypeLogo
|
@@ -9109,10 +9134,8 @@ module TencentCloud
|
|
9109
9134
|
# 绑定角色失败信息
|
9110
9135
|
class FailedCreateRoleData < TencentCloud::Common::AbstractModel
|
9111
9136
|
# @param UserId: 用户userId
|
9112
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9113
9137
|
# @type UserId: String
|
9114
9138
|
# @param RoleIds: 角色id列表
|
9115
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9116
9139
|
# @type RoleIds: Array
|
9117
9140
|
|
9118
9141
|
attr_accessor :UserId, :RoleIds
|
@@ -9248,7 +9271,6 @@ module TencentCloud
|
|
9248
9271
|
# @param Url: 下载文件的URL,有效期为输入的UrlTtl,默认5分钟
|
9249
9272
|
# @type Url: String
|
9250
9273
|
# @param Option: 下载文件的附加信息。如果是pdf文件,会返回pdf文件每页的有效高宽
|
9251
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9252
9274
|
# @type Option: String
|
9253
9275
|
|
9254
9276
|
attr_accessor :Url, :Option
|
@@ -9339,13 +9361,10 @@ module TencentCloud
|
|
9339
9361
|
# 批量补充签署人时,补充失败的报错说明
|
9340
9362
|
class FillError < TencentCloud::Common::AbstractModel
|
9341
9363
|
# @param RecipientId: 为签署方经办人在签署合同中的参与方ID,与控件绑定,是控件的归属方,ID为32位字符串。与入参中补充的签署人角色ID对应,批量补充部分失败返回对应的错误信息。
|
9342
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9343
9364
|
# @type RecipientId: String
|
9344
9365
|
# @param ErrMessage: 补充失败错误说明
|
9345
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9346
9366
|
# @type ErrMessage: String
|
9347
9367
|
# @param FlowId: 合同流程ID,为32位字符串。
|
9348
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9349
9368
|
# @type FlowId: String
|
9350
9369
|
|
9351
9370
|
attr_accessor :RecipientId, :ErrMessage, :FlowId
|
@@ -9366,22 +9385,16 @@ module TencentCloud
|
|
9366
9385
|
# 文档内的填充控件返回结构体,返回控件的基本信息和填写内容值
|
9367
9386
|
class FilledComponent < TencentCloud::Common::AbstractModel
|
9368
9387
|
# @param ComponentId: 控件Id
|
9369
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9370
9388
|
# @type ComponentId: String
|
9371
9389
|
# @param ComponentName: 控件名称
|
9372
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9373
9390
|
# @type ComponentName: String
|
9374
9391
|
# @param ComponentFillStatus: 控件填写状态;0-未填写;1-已填写
|
9375
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9376
9392
|
# @type ComponentFillStatus: String
|
9377
9393
|
# @param ComponentValue: 控件填写内容
|
9378
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9379
9394
|
# @type ComponentValue: String
|
9380
9395
|
# @param ComponentRecipientId: 控件所属参与方Id
|
9381
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9382
9396
|
# @type ComponentRecipientId: String
|
9383
9397
|
# @param ImageUrl: 图片填充控件下载链接,如果是图片填充控件时,这里返回图片的下载链接。
|
9384
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9385
9398
|
# @type ImageUrl: String
|
9386
9399
|
|
9387
9400
|
attr_accessor :ComponentId, :ComponentName, :ComponentFillStatus, :ComponentValue, :ComponentRecipientId, :ImageUrl
|
@@ -9428,7 +9441,6 @@ module TencentCloud
|
|
9428
9441
|
# 签署人详情信息
|
9429
9442
|
class FlowApproverDetail < TencentCloud::Common::AbstractModel
|
9430
9443
|
# @param ApproveMessage: 签署时的相关信息
|
9431
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9432
9444
|
# @type ApproveMessage: String
|
9433
9445
|
# @param ApproveName: 签署方姓名
|
9434
9446
|
# @type ApproveName: String
|
@@ -9450,7 +9462,6 @@ module TencentCloud
|
|
9450
9462
|
# @param ReceiptId: 模板配置中的参与方ID,与控件绑定
|
9451
9463
|
# @type ReceiptId: String
|
9452
9464
|
# @param CustomUserId: 客户自定义的用户ID
|
9453
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9454
9465
|
# @type CustomUserId: String
|
9455
9466
|
# @param Mobile: 签署人手机号
|
9456
9467
|
# @type Mobile: String
|
@@ -9459,33 +9470,26 @@ module TencentCloud
|
|
9459
9470
|
# @param ApproveTime: 签署人签署时间,时间戳,单位秒
|
9460
9471
|
# @type ApproveTime: Integer
|
9461
9472
|
# @param ApproveType: 签署方类型,ORGANIZATION-企业员工,PERSON-个人,ENTERPRISESERVER-企业静默签
|
9462
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9463
9473
|
# @type ApproveType: String
|
9464
9474
|
# @param ApproverSource: 签署方侧用户来源,如WEWORKAPP-企业微信等
|
9465
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9466
9475
|
# @type ApproverSource: String
|
9467
9476
|
# @param CustomApproverTag: 客户自定义签署方标识
|
9468
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9469
9477
|
# @type CustomApproverTag: String
|
9470
9478
|
# @param OrganizationId: 签署方企业Id
|
9471
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9472
9479
|
# @type OrganizationId: String
|
9473
9480
|
# @param OrganizationName: 签署方企业名称
|
9474
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9475
9481
|
# @type OrganizationName: String
|
9476
9482
|
# @param SignId: 签署参与人在本流程中的编号ID(每个流程不同),可用此ID来定位签署参与人在本流程的签署节点,也可用于后续创建签署链接等操作。
|
9477
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9478
9483
|
# @type SignId: String
|
9479
9484
|
# @param ApproverRoleName: 自定义签署人角色
|
9480
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9481
9485
|
# @type ApproverRoleName: String
|
9482
9486
|
# @param RecipientId: 模板配置中的参与方ID,与控件绑定
|
9483
9487
|
# @type RecipientId: String
|
9484
9488
|
|
9485
9489
|
attr_accessor :ApproveMessage, :ApproveName, :ApproveStatus, :ReceiptId, :CustomUserId, :Mobile, :SignOrder, :ApproveTime, :ApproveType, :ApproverSource, :CustomApproverTag, :OrganizationId, :OrganizationName, :SignId, :ApproverRoleName, :RecipientId
|
9486
9490
|
extend Gem::Deprecate
|
9487
|
-
deprecate :ReceiptId, :none, 2025,
|
9488
|
-
deprecate :ReceiptId=, :none, 2025,
|
9491
|
+
deprecate :ReceiptId, :none, 2025, 3
|
9492
|
+
deprecate :ReceiptId=, :none, 2025, 3
|
9489
9493
|
|
9490
9494
|
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)
|
9491
9495
|
@ApproveMessage = approvemessage
|
@@ -9617,7 +9621,6 @@ module TencentCloud
|
|
9617
9621
|
# @param FlowName: 合同流程的名称。
|
9618
9622
|
# @type FlowName: String
|
9619
9623
|
# @param FlowDescription: 合同流程描述信息。
|
9620
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9621
9624
|
# @type FlowDescription: String
|
9622
9625
|
# @param FlowType: 合同流程的类别分类(如销售合同/入职合同等)。
|
9623
9626
|
# @type FlowType: String
|
@@ -9634,19 +9637,14 @@ module TencentCloud
|
|
9634
9637
|
# <li> **9** : 部分填写</li>
|
9635
9638
|
# <li> **10** : 已拒填</li>
|
9636
9639
|
# <li> **21** : 已解除</li></ul>
|
9637
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9638
9640
|
# @type FlowStatus: Integer
|
9639
9641
|
# @param CreatedOn: 合同流程创建时间,格式为Unix标准时间戳(秒)。
|
9640
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9641
9642
|
# @type CreatedOn: Integer
|
9642
9643
|
# @param FlowMessage: 当合同流程状态为已拒签(即 FlowStatus=3)或已撤销(即 FlowStatus=6)时,此字段 FlowMessage 为拒签或撤销原因。
|
9643
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9644
9644
|
# @type FlowMessage: String
|
9645
9645
|
# @param Creator: 合同流程发起方的员工编号, 即员工在腾讯电子签平台的唯一身份标识。
|
9646
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9647
9646
|
# @type Creator: String
|
9648
9647
|
# @param Deadline: 合同流程的签署截止时间,格式为Unix标准时间戳(秒)。
|
9649
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9650
9648
|
# @type Deadline: Integer
|
9651
9649
|
|
9652
9650
|
attr_accessor :FlowId, :FlowName, :FlowDescription, :FlowType, :FlowStatus, :CreatedOn, :FlowMessage, :Creator, :Deadline
|
@@ -9863,8 +9861,8 @@ module TencentCloud
|
|
9863
9861
|
|
9864
9862
|
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
|
9865
9863
|
extend Gem::Deprecate
|
9866
|
-
deprecate :JumpUrl, :none, 2025,
|
9867
|
-
deprecate :JumpUrl=, :none, 2025,
|
9864
|
+
deprecate :JumpUrl, :none, 2025, 3
|
9865
|
+
deprecate :JumpUrl=, :none, 2025, 3
|
9868
9866
|
|
9869
9867
|
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)
|
9870
9868
|
@ApproverType = approvertype
|
@@ -9961,15 +9959,12 @@ module TencentCloud
|
|
9961
9959
|
# @param FlowName: 合同流程的名称(可自定义此名称),长度不能超过200,只能由中文、字母、数字和下划线组成。
|
9962
9960
|
# @type FlowName: String
|
9963
9961
|
# @param FlowType: 合同流程的类别分类(如销售合同/入职合同等)。
|
9964
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9965
9962
|
# @type FlowType: String
|
9966
9963
|
# @param FlowStatus: 合同流程当前的签署状态, 会存在下列的状态值 <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li> <li> **1** : 待签署</li> <li> **2** : 部分签署</li> <li> **3** : 已拒签</li> <li> **4** : 已签署</li> <li> **5** : 已过期</li> <li> **6** : 已撤销</li> <li> **7** : 未开启流程(合同中存在填写环节)</li> <li> **8** : 等待填写</li> <li> **9** : 部分填写</li> <li> **10** : 已拒填</li> <li> **21** : 已解除</li></ul>
|
9967
9964
|
# @type FlowStatus: Integer
|
9968
9965
|
# @param FlowMessage: 当合同流程状态为已拒签(即 FlowStatus=3)或已撤销(即 FlowStatus=6)时,此字段 FlowMessage 为拒签或撤销原因。
|
9969
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9970
9966
|
# @type FlowMessage: String
|
9971
9967
|
# @param FlowDescription: 合同流程描述信息。
|
9972
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9973
9968
|
# @type FlowDescription: String
|
9974
9969
|
# @param CreatedOn: 合同流程的创建时间戳,格式为Unix标准时间戳(秒)。
|
9975
9970
|
# @type CreatedOn: Integer
|
@@ -9978,7 +9973,6 @@ module TencentCloud
|
|
9978
9973
|
# @param CcInfos: 合同流程的关注方信息数组
|
9979
9974
|
# @type CcInfos: Array
|
9980
9975
|
# @param Creator: 合同流程发起方的员工编号, 即员工在腾讯电子签平台的唯一身份标识。
|
9981
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9982
9976
|
# @type Creator: String
|
9983
9977
|
|
9984
9978
|
attr_accessor :FlowId, :FlowName, :FlowType, :FlowStatus, :FlowMessage, :FlowDescription, :CreatedOn, :FlowApproverInfos, :CcInfos, :Creator
|
@@ -10047,10 +10041,8 @@ module TencentCloud
|
|
10047
10041
|
# 合同组签署方信息
|
10048
10042
|
class FlowGroupApprovers < TencentCloud::Common::AbstractModel
|
10049
10043
|
# @param FlowId: 合同流程ID
|
10050
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10051
10044
|
# @type FlowId: String
|
10052
10045
|
# @param Approvers: 签署方信息,包含合同ID和角色ID用于定位RecipientId。
|
10053
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10054
10046
|
# @type Approvers: Array
|
10055
10047
|
|
10056
10048
|
attr_accessor :FlowId, :Approvers
|
@@ -10130,8 +10122,8 @@ module TencentCloud
|
|
10130
10122
|
|
10131
10123
|
attr_accessor :FlowName, :Approvers, :FileIds, :TemplateId, :FlowType, :FlowDescription, :Deadline, :CallbackUrl, :UserData, :Unordered, :Components, :NeedSignReview, :AutoSignScene, :FlowDisplayType
|
10132
10124
|
extend Gem::Deprecate
|
10133
|
-
deprecate :CallbackUrl, :none, 2025,
|
10134
|
-
deprecate :CallbackUrl=, :none, 2025,
|
10125
|
+
deprecate :CallbackUrl, :none, 2025, 3
|
10126
|
+
deprecate :CallbackUrl=, :none, 2025, 3
|
10135
10127
|
|
10136
10128
|
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)
|
10137
10129
|
@FlowName = flowname
|
@@ -10547,8 +10539,8 @@ module TencentCloud
|
|
10547
10539
|
|
10548
10540
|
attr_accessor :TaskId, :Operator, :Agent, :Organization
|
10549
10541
|
extend Gem::Deprecate
|
10550
|
-
deprecate :Organization, :none, 2025,
|
10551
|
-
deprecate :Organization=, :none, 2025,
|
10542
|
+
deprecate :Organization, :none, 2025, 3
|
10543
|
+
deprecate :Organization=, :none, 2025, 3
|
10552
10544
|
|
10553
10545
|
def initialize(taskid=nil, operator=nil, agent=nil, organization=nil)
|
10554
10546
|
@TaskId = taskid
|
@@ -10621,16 +10613,12 @@ module TencentCloud
|
|
10621
10613
|
# 成员企业信息
|
10622
10614
|
class GroupOrganization < TencentCloud::Common::AbstractModel
|
10623
10615
|
# @param Name: 成员企业名
|
10624
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10625
10616
|
# @type Name: String
|
10626
10617
|
# @param Alias: 成员企业别名
|
10627
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10628
10618
|
# @type Alias: String
|
10629
10619
|
# @param OrganizationId: 成员企业id,为 32 位字符串,可在电子签PC 控制台,企业设置->企业电子签账号 获取
|
10630
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10631
10620
|
# @type OrganizationId: String
|
10632
10621
|
# @param UpdateTime: 记录更新时间, unix时间戳,单位秒
|
10633
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10634
10622
|
# @type UpdateTime: Integer
|
10635
10623
|
# @param Status: 成员企业加入集团的当前状态
|
10636
10624
|
# <ul><li> **1**:待授权</li>
|
@@ -10639,31 +10627,22 @@ module TencentCloud
|
|
10639
10627
|
# <li> **4**:已解除</li>
|
10640
10628
|
# <li> **5**:已加入</li>
|
10641
10629
|
# </ul>
|
10642
|
-
|
10643
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10644
10630
|
# @type Status: Integer
|
10645
10631
|
# @param IsMainOrganization: 是否为集团主企业
|
10646
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10647
10632
|
# @type IsMainOrganization: Boolean
|
10648
10633
|
# @param IdCardNumber: 企业社会信用代码
|
10649
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10650
10634
|
# @type IdCardNumber: String
|
10651
10635
|
# @param AdminInfo: 企业超管信息
|
10652
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10653
10636
|
# @type AdminInfo: :class:`Tencentcloud::Ess.v20201111.models.Admin`
|
10654
10637
|
# @param License: 企业许可证Id,此字段暂时不需要关注
|
10655
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10656
10638
|
# @type License: String
|
10657
10639
|
# @param LicenseExpireTime: 企业许可证过期时间,unix时间戳,单位秒
|
10658
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10659
10640
|
# @type LicenseExpireTime: Integer
|
10660
10641
|
# @param JoinTime: 成员企业加入集团时间,unix时间戳,单位秒
|
10661
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10662
10642
|
# @type JoinTime: Integer
|
10663
10643
|
# @param FlowEngineEnable: 是否使用自建审批流引擎(即不是企微审批流引擎)
|
10664
10644
|
# <ul><li> **true**:是</li>
|
10665
10645
|
# <li> **false**:否</li></ul>
|
10666
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10667
10646
|
# @type FlowEngineEnable: Boolean
|
10668
10647
|
|
10669
10648
|
attr_accessor :Name, :Alias, :OrganizationId, :UpdateTime, :Status, :IsMainOrganization, :IdCardNumber, :AdminInfo, :License, :LicenseExpireTime, :JoinTime, :FlowEngineEnable
|
@@ -10705,25 +10684,18 @@ module TencentCloud
|
|
10705
10684
|
# 授权企业列表(目前仅用于“企业自动签 -> 合作企业授权”)
|
10706
10685
|
class HasAuthOrganization < TencentCloud::Common::AbstractModel
|
10707
10686
|
# @param OrganizationId: 授权企业id
|
10708
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10709
10687
|
# @type OrganizationId: String
|
10710
10688
|
# @param OrganizationName: 授权企业名称
|
10711
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10712
10689
|
# @type OrganizationName: String
|
10713
10690
|
# @param AuthorizedOrganizationId: 被授权企业id
|
10714
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10715
10691
|
# @type AuthorizedOrganizationId: String
|
10716
10692
|
# @param AuthorizedOrganizationName: 被授权企业名称
|
10717
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10718
10693
|
# @type AuthorizedOrganizationName: String
|
10719
10694
|
# @param TemplateId: 授权模板id(仅当授权方式为模板授权时有值)
|
10720
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10721
10695
|
# @type TemplateId: String
|
10722
10696
|
# @param TemplateName: 授权模板名称(仅当授权方式为模板授权时有值)
|
10723
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10724
10697
|
# @type TemplateName: String
|
10725
10698
|
# @param AuthorizeTime: 授权时间,格式为时间戳,单位s
|
10726
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10727
10699
|
# @type AuthorizeTime: Integer
|
10728
10700
|
|
10729
10701
|
attr_accessor :OrganizationId, :OrganizationName, :AuthorizedOrganizationId, :AuthorizedOrganizationName, :TemplateId, :TemplateName, :AuthorizeTime
|
@@ -10752,15 +10724,12 @@ module TencentCloud
|
|
10752
10724
|
# 被授权的用户信息
|
10753
10725
|
class HasAuthUser < TencentCloud::Common::AbstractModel
|
10754
10726
|
# @param UserId: 员工在腾讯电子签平台的唯一身份标识,为32位字符串。
|
10755
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10756
10727
|
# @type UserId: String
|
10757
10728
|
# @param BelongTo: 当前员工的归属情况,可能值是:
|
10758
10729
|
# MainOrg:在集团企业的场景下,返回此值代表是归属主企业
|
10759
10730
|
# CurrentOrg:在普通企业场景下返回此值;或者在集团企业的场景下,返回此值代表归属子企业
|
10760
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10761
10731
|
# @type BelongTo: String
|
10762
10732
|
# @param MainOrganizationId: 集团主企业id,当前企业为集团子企业时,该字段有值
|
10763
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10764
10733
|
# @type MainOrganizationId: String
|
10765
10734
|
|
10766
10735
|
attr_accessor :UserId, :BelongTo, :MainOrganizationId
|
@@ -10781,22 +10750,16 @@ module TencentCloud
|
|
10781
10750
|
# 企业角色数据信息
|
10782
10751
|
class IntegrateRole < TencentCloud::Common::AbstractModel
|
10783
10752
|
# @param RoleId: 角色id
|
10784
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10785
10753
|
# @type RoleId: String
|
10786
10754
|
# @param RoleName: 角色名
|
10787
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10788
10755
|
# @type RoleName: String
|
10789
10756
|
# @param RoleStatus: 角色状态,1-启用,2-禁用
|
10790
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10791
10757
|
# @type RoleStatus: Integer
|
10792
10758
|
# @param IsGroupRole: 是否是集团角色,true-是,false-否
|
10793
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10794
10759
|
# @type IsGroupRole: Boolean
|
10795
10760
|
# @param SubOrgIdList: 管辖的子企业列表
|
10796
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10797
10761
|
# @type SubOrgIdList: Array
|
10798
10762
|
# @param PermissionGroups: 权限树
|
10799
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10800
10763
|
# @type PermissionGroups: Array
|
10801
10764
|
|
10802
10765
|
attr_accessor :RoleId, :RoleName, :RoleStatus, :IsGroupRole, :SubOrgIdList, :PermissionGroups
|
@@ -10830,19 +10793,14 @@ module TencentCloud
|
|
10830
10793
|
# 部门信息
|
10831
10794
|
class IntegrationDepartment < TencentCloud::Common::AbstractModel
|
10832
10795
|
# @param DeptId: 部门ID。
|
10833
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10834
10796
|
# @type DeptId: String
|
10835
10797
|
# @param DeptName: 部门名。
|
10836
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10837
10798
|
# @type DeptName: String
|
10838
10799
|
# @param ParentDeptId: 父部门ID
|
10839
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10840
10800
|
# @type ParentDeptId: String
|
10841
10801
|
# @param DeptOpenId: 客户系统部门ID
|
10842
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10843
10802
|
# @type DeptOpenId: String
|
10844
10803
|
# @param OrderNo: 序列号。
|
10845
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10846
10804
|
# @type OrderNo: Integer
|
10847
10805
|
|
10848
10806
|
attr_accessor :DeptId, :DeptName, :ParentDeptId, :DeptOpenId, :OrderNo
|
@@ -10955,7 +10913,6 @@ module TencentCloud
|
|
10955
10913
|
# 意愿核身点头确认模式结果详细数据
|
10956
10914
|
class IntentionActionResultDetail < TencentCloud::Common::AbstractModel
|
10957
10915
|
# @param Video: 视频base64编码(其中包含全程提示文本和点头音频,mp4格式)
|
10958
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10959
10916
|
# @type Video: String
|
10960
10917
|
|
10961
10918
|
attr_accessor :Video
|
@@ -10994,13 +10951,10 @@ module TencentCloud
|
|
10994
10951
|
# @param Video: 视频base64(其中包含全程问题和回答音频,mp4格式)
|
10995
10952
|
|
10996
10953
|
# 注:`需进行base64解码获取视频文件`
|
10997
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10998
10954
|
# @type Video: String
|
10999
10955
|
# @param ResultCode: 和答案匹配结果列表
|
11000
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11001
10956
|
# @type ResultCode: Array
|
11002
10957
|
# @param AsrResult: 回答问题语音识别结果列表
|
11003
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11004
10958
|
# @type AsrResult: Array
|
11005
10959
|
|
11006
10960
|
attr_accessor :Video, :ResultCode, :AsrResult
|
@@ -11431,7 +11385,6 @@ module TencentCloud
|
|
11431
11385
|
# @param SealStatus: 印章状态,有以下六种:CHECKING(审核中)SUCCESS(已启用)FAIL(审核拒绝)CHECKING-SADM(待超管审核)DISABLE(已停用)STOPPED(已终止)
|
11432
11386
|
# @type SealStatus: String
|
11433
11387
|
# @param FailReason: 审核失败原因
|
11434
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11435
11388
|
# @type FailReason: String
|
11436
11389
|
# @param Url: 印章图片url,5分钟内有效
|
11437
11390
|
# @type Url: String
|
@@ -11440,10 +11393,8 @@ module TencentCloud
|
|
11440
11393
|
# @param IsAllTime: 用印申请是否为永久授权,true-是,false-否
|
11441
11394
|
# @type IsAllTime: Boolean
|
11442
11395
|
# @param AuthorizedUsers: 授权人列表
|
11443
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11444
11396
|
# @type AuthorizedUsers: Array
|
11445
11397
|
# @param ExtendScene: 印章扩展数据信息
|
11446
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11447
11398
|
# @type ExtendScene: :class:`Tencentcloud::Ess.v20201111.models.ExtendScene`
|
11448
11399
|
|
11449
11400
|
attr_accessor :SealId, :SealName, :CreateOn, :Creator, :SealPolicyId, :SealStatus, :FailReason, :Url, :SealType, :IsAllTime, :AuthorizedUsers, :ExtendScene
|
@@ -11570,43 +11521,28 @@ module TencentCloud
|
|
11570
11521
|
# @param OrganizationName: 组织机构名称。
|
11571
11522
|
# 请确认该名称与企业营业执照中注册的名称一致。
|
11572
11523
|
# 如果名称中包含英文括号(),请使用中文括号()代替。
|
11573
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11574
11524
|
# @type OrganizationName: String
|
11575
11525
|
# @param UniformSocialCreditCode: 组织机构企业统一社会信用代码。
|
11576
11526
|
# 请确认该企业统一社会信用代码与企业营业执照中注册的统一社会信用代码一致。
|
11577
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11578
11527
|
# @type UniformSocialCreditCode: String
|
11579
11528
|
# @param LegalName: 组织机构法人的姓名。
|
11580
11529
|
# 请确认该企业统一社会信用代码与企业营业执照中注册的法人姓名一致。
|
11581
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11582
11530
|
# @type LegalName: String
|
11583
11531
|
# @param LegalIdCardType: 组织机构法人的证件类型
|
11584
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11585
11532
|
# @type LegalIdCardType: String
|
11586
11533
|
# @param LegalIdCardNumber: 组织机构法人的证件号码
|
11587
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11588
11534
|
# @type LegalIdCardNumber: String
|
11589
11535
|
# @param AdminName: 组织机构超管姓名。
|
11590
|
-
|
11591
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11592
11536
|
# @type AdminName: String
|
11593
11537
|
# @param AdminMobile: 组织机构超管手机号。
|
11594
|
-
|
11595
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11596
11538
|
# @type AdminMobile: String
|
11597
11539
|
# @param AdminIdCardType: 组织机构超管证件类型
|
11598
|
-
|
11599
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11600
11540
|
# @type AdminIdCardType: String
|
11601
11541
|
# @param AdminIdCardNumber: 组织机构超管证件号码
|
11602
|
-
|
11603
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11604
11542
|
# @type AdminIdCardNumber: String
|
11605
11543
|
# @param OldAdminName: 原超管姓名
|
11606
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11607
11544
|
# @type OldAdminName: String
|
11608
11545
|
# @param OldAdminMobile: 原超管手机号
|
11609
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11610
11546
|
# @type OldAdminMobile: String
|
11611
11547
|
# @param OldAdminIdCardType: 原超管证件类型
|
11612
11548
|
# @type OldAdminIdCardType: String
|
@@ -11663,16 +11599,16 @@ module TencentCloud
|
|
11663
11599
|
|
11664
11600
|
attr_accessor :OrganizationId, :Channel, :OrganizationOpenId, :ClientIp, :ProxyIp
|
11665
11601
|
extend Gem::Deprecate
|
11666
|
-
deprecate :OrganizationId, :none, 2025,
|
11667
|
-
deprecate :OrganizationId=, :none, 2025,
|
11668
|
-
deprecate :Channel, :none, 2025,
|
11669
|
-
deprecate :Channel=, :none, 2025,
|
11670
|
-
deprecate :OrganizationOpenId, :none, 2025,
|
11671
|
-
deprecate :OrganizationOpenId=, :none, 2025,
|
11672
|
-
deprecate :ClientIp, :none, 2025,
|
11673
|
-
deprecate :ClientIp=, :none, 2025,
|
11674
|
-
deprecate :ProxyIp, :none, 2025,
|
11675
|
-
deprecate :ProxyIp=, :none, 2025,
|
11602
|
+
deprecate :OrganizationId, :none, 2025, 3
|
11603
|
+
deprecate :OrganizationId=, :none, 2025, 3
|
11604
|
+
deprecate :Channel, :none, 2025, 3
|
11605
|
+
deprecate :Channel=, :none, 2025, 3
|
11606
|
+
deprecate :OrganizationOpenId, :none, 2025, 3
|
11607
|
+
deprecate :OrganizationOpenId=, :none, 2025, 3
|
11608
|
+
deprecate :ClientIp, :none, 2025, 3
|
11609
|
+
deprecate :ClientIp=, :none, 2025, 3
|
11610
|
+
deprecate :ProxyIp, :none, 2025, 3
|
11611
|
+
deprecate :ProxyIp=, :none, 2025, 3
|
11676
11612
|
|
11677
11613
|
def initialize(organizationid=nil, channel=nil, organizationopenid=nil, clientip=nil, proxyip=nil)
|
11678
11614
|
@OrganizationId = organizationid
|
@@ -11766,37 +11702,26 @@ module TencentCloud
|
|
11766
11702
|
# 权限树节点权限
|
11767
11703
|
class Permission < TencentCloud::Common::AbstractModel
|
11768
11704
|
# @param Name: 权限名称
|
11769
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11770
11705
|
# @type Name: String
|
11771
11706
|
# @param Key: 权限key
|
11772
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11773
11707
|
# @type Key: String
|
11774
11708
|
# @param Type: 权限类型 1前端,2后端
|
11775
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11776
11709
|
# @type Type: Integer
|
11777
11710
|
# @param Hide: 是否隐藏
|
11778
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11779
11711
|
# @type Hide: Integer
|
11780
11712
|
# @param DataLabel: 数据权限标签 1:表示根节点,2:表示叶子结点
|
11781
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11782
11713
|
# @type DataLabel: Integer
|
11783
11714
|
# @param DataType: 数据权限独有,1:关联其他模块鉴权,2:表示关联自己模块鉴权
|
11784
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11785
11715
|
# @type DataType: Integer
|
11786
11716
|
# @param DataRange: 数据权限独有,表示数据范围,1:全公司,2:部门及下级部门,3:自己
|
11787
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11788
11717
|
# @type DataRange: Integer
|
11789
11718
|
# @param DataTo: 关联权限, 表示这个功能权限要受哪个数据权限管控
|
11790
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11791
11719
|
# @type DataTo: String
|
11792
11720
|
# @param ParentKey: 父级权限key
|
11793
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11794
11721
|
# @type ParentKey: String
|
11795
11722
|
# @param IsChecked: 是否选中
|
11796
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11797
11723
|
# @type IsChecked: Boolean
|
11798
11724
|
# @param Children: 子权限集合
|
11799
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11800
11725
|
# @type Children: Array
|
11801
11726
|
|
11802
11727
|
attr_accessor :Name, :Key, :Type, :Hide, :DataLabel, :DataType, :DataRange, :DataTo, :ParentKey, :IsChecked, :Children
|
@@ -11840,16 +11765,12 @@ module TencentCloud
|
|
11840
11765
|
# 权限树中的权限组
|
11841
11766
|
class PermissionGroup < TencentCloud::Common::AbstractModel
|
11842
11767
|
# @param GroupName: 权限组名称
|
11843
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11844
11768
|
# @type GroupName: String
|
11845
11769
|
# @param GroupKey: 权限组key
|
11846
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11847
11770
|
# @type GroupKey: String
|
11848
11771
|
# @param Hide: 是否隐藏分组,0否1是
|
11849
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11850
11772
|
# @type Hide: Integer
|
11851
11773
|
# @param Permissions: 权限集合
|
11852
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11853
11774
|
# @type Permissions: Array
|
11854
11775
|
|
11855
11776
|
attr_accessor :GroupName, :GroupKey, :Hide, :Permissions
|
@@ -11976,23 +11897,18 @@ module TencentCloud
|
|
11976
11897
|
# 参与方填写控件信息
|
11977
11898
|
class RecipientComponentInfo < TencentCloud::Common::AbstractModel
|
11978
11899
|
# @param RecipientId: 签署方经办人在合同流程中的参与方ID,与控件绑定,是控件的归属方
|
11979
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11980
11900
|
# @type RecipientId: String
|
11981
11901
|
# @param RecipientFillStatus: 参与方填写状态
|
11982
11902
|
# <ul>
|
11983
11903
|
# <li>**空值** : 此参与方没有填写控件</li>
|
11984
11904
|
# <li>**0**: 未填写, 表示此参与方还没有填写合同的填写控件</li>
|
11985
11905
|
# <li>**1**: 已填写, 表示此参与方已经填写所有的填写控件</li></ul>
|
11986
|
-
|
11987
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11988
11906
|
# @type RecipientFillStatus: String
|
11989
11907
|
# @param IsPromoter: 是否为发起方
|
11990
11908
|
# <ul><li>true-发起方</li>
|
11991
11909
|
# <li>false-参与方</li></ul>
|
11992
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11993
11910
|
# @type IsPromoter: Boolean
|
11994
11911
|
# @param Components: 改参与方填写控件信息列表
|
11995
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11996
11912
|
# @type Components: Array
|
11997
11913
|
|
11998
11914
|
attr_accessor :RecipientId, :RecipientFillStatus, :IsPromoter, :Components
|
@@ -12022,19 +11938,17 @@ module TencentCloud
|
|
12022
11938
|
# 发起流程快速注册相关信息
|
12023
11939
|
class RegisterInfo < TencentCloud::Common::AbstractModel
|
12024
11940
|
# @param LegalName: 法人姓名
|
12025
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12026
11941
|
# @type LegalName: String
|
12027
11942
|
# @param Uscc: 社会统一信用代码
|
12028
11943
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
12029
11944
|
# @type Uscc: String
|
12030
11945
|
# @param UnifiedSocialCreditCode: 社会统一信用代码
|
12031
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12032
11946
|
# @type UnifiedSocialCreditCode: String
|
12033
11947
|
|
12034
11948
|
attr_accessor :LegalName, :Uscc, :UnifiedSocialCreditCode
|
12035
11949
|
extend Gem::Deprecate
|
12036
|
-
deprecate :Uscc, :none, 2025,
|
12037
|
-
deprecate :Uscc=, :none, 2025,
|
11950
|
+
deprecate :Uscc, :none, 2025, 3
|
11951
|
+
deprecate :Uscc=, :none, 2025, 3
|
12038
11952
|
|
12039
11953
|
def initialize(legalname=nil, uscc=nil, unifiedsocialcreditcode=nil)
|
12040
11954
|
@LegalName = legalname
|
@@ -12164,8 +12078,8 @@ module TencentCloud
|
|
12164
12078
|
|
12165
12079
|
attr_accessor :Name, :Mobile, :RelievedApproverReceiptId, :ApproverType, :ApproverSignComponentType, :ApproverSignRole, :ApproverSignSealId, :RelievedApproverRecipientId
|
12166
12080
|
extend Gem::Deprecate
|
12167
|
-
deprecate :RelievedApproverReceiptId, :none, 2025,
|
12168
|
-
deprecate :RelievedApproverReceiptId=, :none, 2025,
|
12081
|
+
deprecate :RelievedApproverReceiptId, :none, 2025, 3
|
12082
|
+
deprecate :RelievedApproverReceiptId=, :none, 2025, 3
|
12169
12083
|
|
12170
12084
|
def initialize(name=nil, mobile=nil, relievedapproverreceiptid=nil, approvertype=nil, approversigncomponenttype=nil, approversignrole=nil, approversignsealid=nil, relievedapproverrecipientid=nil)
|
12171
12085
|
@Name = name
|
@@ -12335,16 +12249,13 @@ module TencentCloud
|
|
12335
12249
|
# 模板中指定的印章信息
|
12336
12250
|
class SealInfo < TencentCloud::Common::AbstractModel
|
12337
12251
|
# @param SealId: 印章ID
|
12338
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12339
12252
|
# @type SealId: String
|
12340
12253
|
# @param SealType: 印章类型。LEGAL_PERSON_SEAL: 法定代表人章;
|
12341
12254
|
# ORGANIZATIONSEAL:企业印章;
|
12342
12255
|
# OFFICIAL:企业公章;
|
12343
12256
|
# CONTRACT:合同专用章
|
12344
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12345
12257
|
# @type SealType: String
|
12346
12258
|
# @param SealName: 印章名称
|
12347
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12348
12259
|
# @type SealName: String
|
12349
12260
|
|
12350
12261
|
attr_accessor :SealId, :SealType, :SealName
|
@@ -12428,18 +12339,14 @@ module TencentCloud
|
|
12428
12339
|
# @param Mobile: 用户手机号码, 支持国内手机号11位数字(无需加+86前缀或其他字符)。
|
12429
12340
|
# @type Mobile: String
|
12430
12341
|
# @param Email: 用户邮箱。
|
12431
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12432
12342
|
# @type Email: String
|
12433
12343
|
# @param OpenId: 用户在第三方平台ID。
|
12434
12344
|
# 注:`如需在此接口提醒员工实名,该参数不传。`
|
12435
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12436
12345
|
# @type OpenId: String
|
12437
12346
|
# @param Roles: 员工角色信息。
|
12438
12347
|
# 注:`创建和更新场景无需填写。`
|
12439
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12440
12348
|
# @type Roles: Array
|
12441
12349
|
# @param Department: 员工部门信息。
|
12442
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12443
12350
|
# @type Department: :class:`Tencentcloud::Ess.v20201111.models.Department`
|
12444
12351
|
# @param Verified: 员工是否实名。
|
12445
12352
|
# 注:`创建和更新场景无需填写。`
|
@@ -12449,12 +12356,10 @@ module TencentCloud
|
|
12449
12356
|
# @type CreatedOn: Integer
|
12450
12357
|
# @param VerifiedOn: 员工实名时间戳,单位秒。
|
12451
12358
|
# 注:`创建和更新场景无需填写。`
|
12452
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12453
12359
|
# @type VerifiedOn: Integer
|
12454
12360
|
# @param QuiteJob: 员工是否离职:
|
12455
12361
|
# <ul><li>**0**:未离职</li><li>**1**:离职</li></ul>
|
12456
12362
|
# 注:`创建和更新场景无需填写。`
|
12457
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12458
12363
|
# @type QuiteJob: Integer
|
12459
12364
|
# @param ReceiveUserId: 员工离职交接人用户ID。
|
12460
12365
|
# 注:`创建和更新场景无需填写。`
|
@@ -12464,7 +12369,6 @@ module TencentCloud
|
|
12464
12369
|
# @type ReceiveOpenId: String
|
12465
12370
|
# @param WeworkOpenId: 企业微信用户账号ID。
|
12466
12371
|
# 注:`仅企微类型的企业创建员工接口支持该字段。`
|
12467
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12468
12372
|
# @type WeworkOpenId: String
|
12469
12373
|
|
12470
12374
|
attr_accessor :UserId, :DisplayName, :Mobile, :Email, :OpenId, :Roles, :Department, :Verified, :CreatedOn, :VerifiedOn, :QuiteJob, :ReceiveUserId, :ReceiveOpenId, :WeworkOpenId
|
@@ -12517,10 +12421,8 @@ module TencentCloud
|
|
12517
12421
|
# 集成版企业角色信息。
|
12518
12422
|
class StaffRole < TencentCloud::Common::AbstractModel
|
12519
12423
|
# @param RoleId: 角色ID。
|
12520
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12521
12424
|
# @type RoleId: String
|
12522
12425
|
# @param RoleName: 角色名称。
|
12523
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12524
12426
|
# @type RoleName: String
|
12525
12427
|
|
12526
12428
|
attr_accessor :RoleId, :RoleName
|
@@ -12555,8 +12457,8 @@ module TencentCloud
|
|
12555
12457
|
|
12556
12458
|
attr_accessor :Operator, :FlowId, :ClientToken, :Agent, :CcNotifyType
|
12557
12459
|
extend Gem::Deprecate
|
12558
|
-
deprecate :ClientToken, :none, 2025,
|
12559
|
-
deprecate :ClientToken=, :none, 2025,
|
12460
|
+
deprecate :ClientToken, :none, 2025, 3
|
12461
|
+
deprecate :ClientToken=, :none, 2025, 3
|
12560
12462
|
|
12561
12463
|
def initialize(operator=nil, flowid=nil, clienttoken=nil, agent=nil, ccnotifytype=nil)
|
12562
12464
|
@Operator = operator
|
@@ -12678,7 +12580,6 @@ module TencentCloud
|
|
12678
12580
|
# @param UserId: 员工在电子签平台的id
|
12679
12581
|
# @type UserId: String
|
12680
12582
|
# @param Note: 提示,当创建已存在未实名用户时,该字段有值
|
12681
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12682
12583
|
# @type Note: String
|
12683
12584
|
# @param WeworkOpenId: 传入的企微账号id
|
12684
12585
|
# @type WeworkOpenId: String
|
@@ -12839,30 +12740,23 @@ module TencentCloud
|
|
12839
12740
|
# 您可以通过浏览器直接打开此链接预览模板,或将其嵌入到 iframe 中进行预览。
|
12840
12741
|
|
12841
12742
|
# 注意:只有在请求接口时将 <b>WithPreviewUrl </b>参数设置为 true,才会生成预览链接。
|
12842
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12843
12743
|
# @type PreviewUrl: String
|
12844
12744
|
# @param UserFlowType: 用户自定义合同类型。
|
12845
12745
|
|
12846
12746
|
# 返回配置模板的时候选择的合同类型。[点击查看配置的位置](https://qcloudimg.tencent-cloud.cn/raw/4a766f0540253bf2a05d50c58bd14990.png)
|
12847
12747
|
|
12848
12748
|
# 自定义合同类型配置的地方如链接图所示。[点击查看自定义合同类型管理的位置](https://qcloudimg.tencent-cloud.cn/raw/36582cea03ae6a2559894844942b5d5c.png)
|
12849
|
-
|
12850
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12851
12749
|
# @type UserFlowType: :class:`Tencentcloud::Ess.v20201111.models.UserFlowType`
|
12852
12750
|
# @param TemplateVersion: 模板版本的编号,旨在标识其独特的版本信息,通常呈现为一串字符串,由日期和递增的数字组成
|
12853
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12854
12751
|
# @type TemplateVersion: String
|
12855
12752
|
# @param Published: 模板是否已发布可以分为以下两种状态:
|
12856
12753
|
|
12857
12754
|
# <b>true</b>:已发布状态,表示该模板已经发布并可以正常使用。
|
12858
12755
|
# <b>false</b>:未发布状态,表示该模板还未发布,无法使用。
|
12859
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12860
12756
|
# @type Published: Boolean
|
12861
12757
|
# @param ShareTemplateId: <b>集体账号场景下</b>: 集团账号分享给子企业的模板的来源模板ID。
|
12862
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12863
12758
|
# @type ShareTemplateId: String
|
12864
12759
|
# @param TemplateSeals: 此模板配置的预填印章列表(包括自动签署指定的印章)
|
12865
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
12866
12760
|
# @type TemplateSeals: Array
|
12867
12761
|
# @param Seals: 模板内部指定的印章列表
|
12868
12762
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
@@ -12870,8 +12764,8 @@ module TencentCloud
|
|
12870
12764
|
|
12871
12765
|
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
|
12872
12766
|
extend Gem::Deprecate
|
12873
|
-
deprecate :Seals, :none, 2025,
|
12874
|
-
deprecate :Seals=, :none, 2025,
|
12767
|
+
deprecate :Seals, :none, 2025, 3
|
12768
|
+
deprecate :Seals=, :none, 2025, 3
|
12875
12769
|
|
12876
12770
|
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)
|
12877
12771
|
@TemplateId = templateid
|
@@ -13199,8 +13093,8 @@ module TencentCloud
|
|
13199
13093
|
|
13200
13094
|
attr_accessor :BusinessType, :Caller, :FileInfos, :FileType, :CoverRect, :CustomIds, :FileUrls, :Agent
|
13201
13095
|
extend Gem::Deprecate
|
13202
|
-
deprecate :FileUrls, :none, 2025,
|
13203
|
-
deprecate :FileUrls=, :none, 2025,
|
13096
|
+
deprecate :FileUrls, :none, 2025, 3
|
13097
|
+
deprecate :FileUrls=, :none, 2025, 3
|
13204
13098
|
|
13205
13099
|
def initialize(businesstype=nil, caller=nil, fileinfos=nil, filetype=nil, coverrect=nil, customids=nil, fileurls=nil, agent=nil)
|
13206
13100
|
@BusinessType = businesstype
|
@@ -13267,13 +13161,10 @@ module TencentCloud
|
|
13267
13161
|
# 用户自定义合同类型, 自定义合同类型的管理可以[点击查看在控制台位置的截图](https://qcloudimg.tencent-cloud.cn/raw/85a9b2ebce07b0cd6d75d5327d538235.png)
|
13268
13162
|
class UserFlowType < TencentCloud::Common::AbstractModel
|
13269
13163
|
# @param UserFlowTypeId: 合同类型ID
|
13270
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
13271
13164
|
# @type UserFlowTypeId: String
|
13272
13165
|
# @param Name: 合同类型名称
|
13273
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
13274
13166
|
# @type Name: String
|
13275
13167
|
# @param Description: 合同类型说明
|
13276
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
13277
13168
|
# @type Description: String
|
13278
13169
|
|
13279
13170
|
attr_accessor :UserFlowTypeId, :Name, :Description
|
@@ -13306,14 +13197,14 @@ module TencentCloud
|
|
13306
13197
|
|
13307
13198
|
attr_accessor :UserId, :Channel, :OpenId, :ClientIp, :ProxyIp
|
13308
13199
|
extend Gem::Deprecate
|
13309
|
-
deprecate :Channel, :none, 2025,
|
13310
|
-
deprecate :Channel=, :none, 2025,
|
13311
|
-
deprecate :OpenId, :none, 2025,
|
13312
|
-
deprecate :OpenId=, :none, 2025,
|
13313
|
-
deprecate :ClientIp, :none, 2025,
|
13314
|
-
deprecate :ClientIp=, :none, 2025,
|
13315
|
-
deprecate :ProxyIp, :none, 2025,
|
13316
|
-
deprecate :ProxyIp=, :none, 2025,
|
13200
|
+
deprecate :Channel, :none, 2025, 3
|
13201
|
+
deprecate :Channel=, :none, 2025, 3
|
13202
|
+
deprecate :OpenId, :none, 2025, 3
|
13203
|
+
deprecate :OpenId=, :none, 2025, 3
|
13204
|
+
deprecate :ClientIp, :none, 2025, 3
|
13205
|
+
deprecate :ClientIp=, :none, 2025, 3
|
13206
|
+
deprecate :ProxyIp, :none, 2025, 3
|
13207
|
+
deprecate :ProxyIp=, :none, 2025, 3
|
13317
13208
|
|
13318
13209
|
def initialize(userid=nil, channel=nil, openid=nil, clientip=nil, proxyip=nil)
|
13319
13210
|
@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.1009
|
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-02
|
11
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|