tencentcloud-sdk-essbasic 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/v20210526/client.rb +28 -0
- data/lib/v20210526/models.rb +196 -260
- 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: 8db545bd1b0533b12c999c95d71d5649736262b9
|
4
|
+
data.tar.gz: 26652d0ae5971eb0a4d3090d3beb126e54dbb562
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e8de4a9a737df2da9d8826555591aea8aae9187f98dda84c77b6ee63a05ef40d676cd3b4169e8974e685e2e1b6daced4719de1596c5b4ef1becb6c70e1261ed
|
7
|
+
data.tar.gz: 078a0dd52a77ce47f6b5dde5cf1a4acc369a2573a6cafee71923728ec0d9448bb2f9b3cfbd375a4985e536cd48cedde4884d087951fd18e42f0a6b26ce80f28a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1009
|
data/lib/v20210526/client.rb
CHANGED
@@ -2014,6 +2014,34 @@ module TencentCloud
|
|
2014
2014
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2015
2015
|
end
|
2016
2016
|
|
2017
|
+
# 生成员工信息变更链接,当前仅支持变更手机号
|
2018
|
+
|
2019
|
+
# 注:
|
2020
|
+
# 1. 目前仅支持修改员工手机号,待修改员工必须已经实名且在职
|
2021
|
+
# 2. 仅支持返回小程序链接
|
2022
|
+
|
2023
|
+
# @param request: Request instance for CreateEmployeeChangeUrl.
|
2024
|
+
# @type request: :class:`Tencentcloud::essbasic::V20210526::CreateEmployeeChangeUrlRequest`
|
2025
|
+
# @rtype: :class:`Tencentcloud::essbasic::V20210526::CreateEmployeeChangeUrlResponse`
|
2026
|
+
def CreateEmployeeChangeUrl(request)
|
2027
|
+
body = send_request('CreateEmployeeChangeUrl', request.serialize)
|
2028
|
+
response = JSON.parse(body)
|
2029
|
+
if response['Response'].key?('Error') == false
|
2030
|
+
model = CreateEmployeeChangeUrlResponse.new
|
2031
|
+
model.deserialize(response['Response'])
|
2032
|
+
model
|
2033
|
+
else
|
2034
|
+
code = response['Response']['Error']['Code']
|
2035
|
+
message = response['Response']['Error']['Message']
|
2036
|
+
reqid = response['Response']['RequestId']
|
2037
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2038
|
+
end
|
2039
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2040
|
+
raise e
|
2041
|
+
rescue StandardError => e
|
2042
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2043
|
+
end
|
2044
|
+
|
2017
2045
|
# 该接口用于获取个人授权执业章给企业的二维码,需要个人用户通过微信扫码。
|
2018
2046
|
|
2019
2047
|
# 扫描后将跳转到腾讯电子签小程序,进入到授权执业章的流程。
|
data/lib/v20210526/models.rb
CHANGED
@@ -37,8 +37,8 @@ module TencentCloud
|
|
37
37
|
|
38
38
|
attr_accessor :AppId, :ProxyOrganizationOpenId, :ProxyOperator, :ProxyAppId, :ProxyOrganizationId
|
39
39
|
extend Gem::Deprecate
|
40
|
-
deprecate :ProxyOrganizationId, :none, 2025,
|
41
|
-
deprecate :ProxyOrganizationId=, :none, 2025,
|
40
|
+
deprecate :ProxyOrganizationId, :none, 2025, 3
|
41
|
+
deprecate :ProxyOrganizationId=, :none, 2025, 3
|
42
42
|
|
43
43
|
def initialize(appid=nil, proxyorganizationopenid=nil, proxyoperator=nil, proxyappid=nil, proxyorganizationid=nil)
|
44
44
|
@AppId = appid
|
@@ -93,15 +93,12 @@ module TencentCloud
|
|
93
93
|
# @param SignId: 签署方唯一编号
|
94
94
|
|
95
95
|
# 在<a href="https://qian.tencent.com/developers/company/dynamic_signer" target="_blank">动态补充签署人</a>场景下,可以用此编号确定参与方
|
96
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
97
96
|
# @type SignId: String
|
98
97
|
# @param RecipientId: 签署方角色编号
|
99
98
|
|
100
99
|
# 在<a href="https://qian.tencent.com/developers/company/dynamic_signer" target="_blank">动态补充签署人</a>场景下,可以用此编号确定参与方
|
101
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
102
100
|
# @type RecipientId: String
|
103
101
|
# @param ApproverRoleName: 签署方角色名称
|
104
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
105
102
|
# @type ApproverRoleName: String
|
106
103
|
|
107
104
|
attr_accessor :SignId, :RecipientId, :ApproverRoleName
|
@@ -290,22 +287,16 @@ module TencentCloud
|
|
290
287
|
# 企业扩展服务授权列表详情
|
291
288
|
class AuthInfoDetail < TencentCloud::Common::AbstractModel
|
292
289
|
# @param Type: 扩展服务类型,和入参一致
|
293
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
294
290
|
# @type Type: String
|
295
291
|
# @param Name: 扩展服务名称
|
296
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
297
292
|
# @type Name: String
|
298
293
|
# @param HasAuthUserList: 授权员工列表
|
299
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
300
294
|
# @type HasAuthUserList: Array
|
301
295
|
# @param HasAuthOrganizationList: 授权企业列表(企业自动签时,该字段有值)
|
302
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
303
296
|
# @type HasAuthOrganizationList: Array
|
304
297
|
# @param AuthUserTotal: 授权员工列表总数
|
305
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
306
298
|
# @type AuthUserTotal: Integer
|
307
299
|
# @param AuthOrganizationTotal: 授权企业列表总数
|
308
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
309
300
|
# @type AuthOrganizationTotal: Integer
|
310
301
|
|
311
302
|
attr_accessor :Type, :Name, :HasAuthUserList, :HasAuthOrganizationList, :AuthUserTotal, :AuthOrganizationTotal
|
@@ -403,8 +394,8 @@ module TencentCloud
|
|
403
394
|
|
404
395
|
attr_accessor :UserInfo, :CertInfoCallback, :UserDefineSeal, :SealImgCallback, :CallbackUrl, :VerifyChannels, :LicenseType, :JumpUrl
|
405
396
|
extend Gem::Deprecate
|
406
|
-
deprecate :CallbackUrl, :none, 2025,
|
407
|
-
deprecate :CallbackUrl=, :none, 2025,
|
397
|
+
deprecate :CallbackUrl, :none, 2025, 3
|
398
|
+
deprecate :CallbackUrl=, :none, 2025, 3
|
408
399
|
|
409
400
|
def initialize(userinfo=nil, certinfocallback=nil, userdefineseal=nil, sealimgcallback=nil, callbackurl=nil, verifychannels=nil, licensetype=nil, jumpurl=nil)
|
410
401
|
@UserInfo = userinfo
|
@@ -643,8 +634,8 @@ module TencentCloud
|
|
643
634
|
|
644
635
|
attr_accessor :Agent, :FlowIds, :CancelMessage, :CancelMessageFormat, :Operator
|
645
636
|
extend Gem::Deprecate
|
646
|
-
deprecate :Operator, :none, 2025,
|
647
|
-
deprecate :Operator=, :none, 2025,
|
637
|
+
deprecate :Operator, :none, 2025, 3
|
638
|
+
deprecate :Operator=, :none, 2025, 3
|
648
639
|
|
649
640
|
def initialize(agent=nil, flowids=nil, cancelmessage=nil, cancelmessageformat=nil, operator=nil)
|
650
641
|
@Agent = agent
|
@@ -815,8 +806,8 @@ module TencentCloud
|
|
815
806
|
|
816
807
|
attr_accessor :FlowId, :Agent, :CancelMessage, :CancelMessageFormat, :Operator
|
817
808
|
extend Gem::Deprecate
|
818
|
-
deprecate :Operator, :none, 2025,
|
819
|
-
deprecate :Operator=, :none, 2025,
|
809
|
+
deprecate :Operator, :none, 2025, 3
|
810
|
+
deprecate :Operator=, :none, 2025, 3
|
820
811
|
|
821
812
|
def initialize(flowid=nil, agent=nil, cancelmessage=nil, cancelmessageformat=nil, operator=nil)
|
822
813
|
@FlowId = flowid
|
@@ -876,8 +867,8 @@ module TencentCloud
|
|
876
867
|
|
877
868
|
attr_accessor :Agent, :QrCodeId, :Operator
|
878
869
|
extend Gem::Deprecate
|
879
|
-
deprecate :Operator, :none, 2025,
|
880
|
-
deprecate :Operator=, :none, 2025,
|
870
|
+
deprecate :Operator, :none, 2025, 3
|
871
|
+
deprecate :Operator=, :none, 2025, 3
|
881
872
|
|
882
873
|
def initialize(agent=nil, qrcodeid=nil, operator=nil)
|
883
874
|
@Agent = agent
|
@@ -987,8 +978,8 @@ module TencentCloud
|
|
987
978
|
|
988
979
|
attr_accessor :Agent, :FlowIds, :Operator
|
989
980
|
extend Gem::Deprecate
|
990
|
-
deprecate :Operator, :none, 2025,
|
991
|
-
deprecate :Operator=, :none, 2025,
|
981
|
+
deprecate :Operator, :none, 2025, 3
|
982
|
+
deprecate :Operator=, :none, 2025, 3
|
992
983
|
|
993
984
|
def initialize(agent=nil, flowids=nil, operator=nil)
|
994
985
|
@Agent = agent
|
@@ -1362,8 +1353,8 @@ module TencentCloud
|
|
1362
1353
|
|
1363
1354
|
attr_accessor :Agent, :FlowIds, :Operator
|
1364
1355
|
extend Gem::Deprecate
|
1365
|
-
deprecate :Operator, :none, 2025,
|
1366
|
-
deprecate :Operator=, :none, 2025,
|
1356
|
+
deprecate :Operator, :none, 2025, 3
|
1357
|
+
deprecate :Operator=, :none, 2025, 3
|
1367
1358
|
|
1368
1359
|
def initialize(agent=nil, flowids=nil, operator=nil)
|
1369
1360
|
@Agent = agent
|
@@ -1440,10 +1431,10 @@ module TencentCloud
|
|
1440
1431
|
|
1441
1432
|
attr_accessor :Agent, :ResourceType, :ResourceName, :ResourceId, :Operator, :Organization
|
1442
1433
|
extend Gem::Deprecate
|
1443
|
-
deprecate :Operator, :none, 2025,
|
1444
|
-
deprecate :Operator=, :none, 2025,
|
1445
|
-
deprecate :Organization, :none, 2025,
|
1446
|
-
deprecate :Organization=, :none, 2025,
|
1434
|
+
deprecate :Operator, :none, 2025, 3
|
1435
|
+
deprecate :Operator=, :none, 2025, 3
|
1436
|
+
deprecate :Organization, :none, 2025, 3
|
1437
|
+
deprecate :Organization=, :none, 2025, 3
|
1447
1438
|
|
1448
1439
|
def initialize(agent=nil, resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, organization=nil)
|
1449
1440
|
@Agent = agent
|
@@ -1611,8 +1602,8 @@ module TencentCloud
|
|
1611
1602
|
|
1612
1603
|
attr_accessor :Agent, :EmbedType, :BusinessId, :HiddenComponents, :Operator, :UserData, :Option
|
1613
1604
|
extend Gem::Deprecate
|
1614
|
-
deprecate :Operator, :none, 2025,
|
1615
|
-
deprecate :Operator=, :none, 2025,
|
1605
|
+
deprecate :Operator, :none, 2025, 3
|
1606
|
+
deprecate :Operator=, :none, 2025, 3
|
1616
1607
|
|
1617
1608
|
def initialize(agent=nil, embedtype=nil, businessid=nil, hiddencomponents=nil, operator=nil, userdata=nil, option=nil)
|
1618
1609
|
@Agent = agent
|
@@ -1872,12 +1863,12 @@ module TencentCloud
|
|
1872
1863
|
|
1873
1864
|
attr_accessor :Agent, :FlowName, :FlowDescription, :FlowApprovers, :FileIds, :Components, :Deadline, :CallbackUrl, :Unordered, :FlowType, :CustomShowMap, :CustomerData, :NeedSignReview, :ApproverVerifyType, :SignBeanTag, :CcInfos, :CcNotifyType, :AutoSignScene, :Operator, :FlowDisplayType, :NeedPreview, :PreviewType, :OpenDynamicFlow, :OpenDynamicSignFlow
|
1874
1865
|
extend Gem::Deprecate
|
1875
|
-
deprecate :CallbackUrl, :none, 2025,
|
1876
|
-
deprecate :CallbackUrl=, :none, 2025,
|
1877
|
-
deprecate :Operator, :none, 2025,
|
1878
|
-
deprecate :Operator=, :none, 2025,
|
1879
|
-
deprecate :OpenDynamicFlow, :none, 2025,
|
1880
|
-
deprecate :OpenDynamicFlow=, :none, 2025,
|
1866
|
+
deprecate :CallbackUrl, :none, 2025, 3
|
1867
|
+
deprecate :CallbackUrl=, :none, 2025, 3
|
1868
|
+
deprecate :Operator, :none, 2025, 3
|
1869
|
+
deprecate :Operator=, :none, 2025, 3
|
1870
|
+
deprecate :OpenDynamicFlow, :none, 2025, 3
|
1871
|
+
deprecate :OpenDynamicFlow=, :none, 2025, 3
|
1881
1872
|
|
1882
1873
|
def initialize(agent=nil, flowname=nil, flowdescription=nil, flowapprovers=nil, fileids=nil, components=nil, deadline=nil, callbackurl=nil, unordered=nil, flowtype=nil, customshowmap=nil, customerdata=nil, needsignreview=nil, approververifytype=nil, signbeantag=nil, ccinfos=nil, ccnotifytype=nil, autosignscene=nil, operator=nil, flowdisplaytype=nil, needpreview=nil, previewtype=nil, opendynamicflow=nil, opendynamicsignflow=nil)
|
1883
1874
|
@Agent = agent
|
@@ -2031,8 +2022,8 @@ module TencentCloud
|
|
2031
2022
|
|
2032
2023
|
attr_accessor :FlowFileInfos, :FlowGroupName, :Agent, :ApproverVerifyType, :FlowGroupOptions, :Operator
|
2033
2024
|
extend Gem::Deprecate
|
2034
|
-
deprecate :Operator, :none, 2025,
|
2035
|
-
deprecate :Operator=, :none, 2025,
|
2025
|
+
deprecate :Operator, :none, 2025, 3
|
2026
|
+
deprecate :Operator=, :none, 2025, 3
|
2036
2027
|
|
2037
2028
|
def initialize(flowfileinfos=nil, flowgroupname=nil, agent=nil, approververifytype=nil, flowgroupoptions=nil, operator=nil)
|
2038
2029
|
@FlowFileInfos = flowfileinfos
|
@@ -2382,10 +2373,10 @@ module TencentCloud
|
|
2382
2373
|
|
2383
2374
|
attr_accessor :Agent, :FlowId, :FlowApproverInfos, :Operator, :Organization, :JumpUrl, :UrlType
|
2384
2375
|
extend Gem::Deprecate
|
2385
|
-
deprecate :Operator, :none, 2025,
|
2386
|
-
deprecate :Operator=, :none, 2025,
|
2387
|
-
deprecate :Organization, :none, 2025,
|
2388
|
-
deprecate :Organization=, :none, 2025,
|
2376
|
+
deprecate :Operator, :none, 2025, 3
|
2377
|
+
deprecate :Operator=, :none, 2025, 3
|
2378
|
+
deprecate :Organization, :none, 2025, 3
|
2379
|
+
deprecate :Organization=, :none, 2025, 3
|
2389
2380
|
|
2390
2381
|
def initialize(agent=nil, flowid=nil, flowapproverinfos=nil, operator=nil, organization=nil, jumpurl=nil, urltype=nil)
|
2391
2382
|
@Agent = agent
|
@@ -2492,12 +2483,12 @@ module TencentCloud
|
|
2492
2483
|
|
2493
2484
|
attr_accessor :Agent, :TemplateId, :FlowName, :MaxFlowNum, :FlowEffectiveDay, :QrEffectiveDay, :Restrictions, :ApproverComponentLimitTypes, :CallbackUrl, :ApproverRestrictions, :Operator, :ForbidPersonalMultipleSign, :FlowNameAppendScannerInfo
|
2494
2485
|
extend Gem::Deprecate
|
2495
|
-
deprecate :CallbackUrl, :none, 2025,
|
2496
|
-
deprecate :CallbackUrl=, :none, 2025,
|
2497
|
-
deprecate :ApproverRestrictions, :none, 2025,
|
2498
|
-
deprecate :ApproverRestrictions=, :none, 2025,
|
2499
|
-
deprecate :Operator, :none, 2025,
|
2500
|
-
deprecate :Operator=, :none, 2025,
|
2486
|
+
deprecate :CallbackUrl, :none, 2025, 3
|
2487
|
+
deprecate :CallbackUrl=, :none, 2025, 3
|
2488
|
+
deprecate :ApproverRestrictions, :none, 2025, 3
|
2489
|
+
deprecate :ApproverRestrictions=, :none, 2025, 3
|
2490
|
+
deprecate :Operator, :none, 2025, 3
|
2491
|
+
deprecate :Operator=, :none, 2025, 3
|
2501
2492
|
|
2502
2493
|
def initialize(agent=nil, templateid=nil, flowname=nil, maxflownum=nil, floweffectiveday=nil, qreffectiveday=nil, restrictions=nil, approvercomponentlimittypes=nil, callbackurl=nil, approverrestrictions=nil, operator=nil, forbidpersonalmultiplesign=nil, flownameappendscannerinfo=nil)
|
2503
2494
|
@Agent = agent
|
@@ -2743,12 +2734,12 @@ module TencentCloud
|
|
2743
2734
|
|
2744
2735
|
attr_accessor :ResourceType, :FlowInfo, :Agent, :ResourceId, :FlowOption, :FlowApproverList, :FlowId, :NeedPreview, :Organization, :Operator
|
2745
2736
|
extend Gem::Deprecate
|
2746
|
-
deprecate :NeedPreview, :none, 2025,
|
2747
|
-
deprecate :NeedPreview=, :none, 2025,
|
2748
|
-
deprecate :Organization, :none, 2025,
|
2749
|
-
deprecate :Organization=, :none, 2025,
|
2750
|
-
deprecate :Operator, :none, 2025,
|
2751
|
-
deprecate :Operator=, :none, 2025,
|
2737
|
+
deprecate :NeedPreview, :none, 2025, 3
|
2738
|
+
deprecate :NeedPreview=, :none, 2025, 3
|
2739
|
+
deprecate :Organization, :none, 2025, 3
|
2740
|
+
deprecate :Organization=, :none, 2025, 3
|
2741
|
+
deprecate :Operator, :none, 2025, 3
|
2742
|
+
deprecate :Operator=, :none, 2025, 3
|
2752
2743
|
|
2753
2744
|
def initialize(resourcetype=nil, flowinfo=nil, agent=nil, resourceid=nil, flowoption=nil, flowapproverlist=nil, flowid=nil, needpreview=nil, organization=nil, operator=nil)
|
2754
2745
|
@ResourceType = resourcetype
|
@@ -2972,12 +2963,12 @@ module TencentCloud
|
|
2972
2963
|
|
2973
2964
|
attr_accessor :Agent, :NeedRelievedFlowId, :ReliveInfo, :ReleasedApprovers, :CallbackUrl, :Organization, :Operator, :Deadline, :UserData
|
2974
2965
|
extend Gem::Deprecate
|
2975
|
-
deprecate :CallbackUrl, :none, 2025,
|
2976
|
-
deprecate :CallbackUrl=, :none, 2025,
|
2977
|
-
deprecate :Organization, :none, 2025,
|
2978
|
-
deprecate :Organization=, :none, 2025,
|
2979
|
-
deprecate :Operator, :none, 2025,
|
2980
|
-
deprecate :Operator=, :none, 2025,
|
2966
|
+
deprecate :CallbackUrl, :none, 2025, 3
|
2967
|
+
deprecate :CallbackUrl=, :none, 2025, 3
|
2968
|
+
deprecate :Organization, :none, 2025, 3
|
2969
|
+
deprecate :Organization=, :none, 2025, 3
|
2970
|
+
deprecate :Operator, :none, 2025, 3
|
2971
|
+
deprecate :Operator=, :none, 2025, 3
|
2981
2972
|
|
2982
2973
|
def initialize(agent=nil, needrelievedflowid=nil, reliveinfo=nil, releasedapprovers=nil, callbackurl=nil, organization=nil, operator=nil, deadline=nil, userdata=nil)
|
2983
2974
|
@Agent = agent
|
@@ -3138,10 +3129,10 @@ module TencentCloud
|
|
3138
3129
|
|
3139
3130
|
attr_accessor :Agent, :SealId, :UserIds, :Operator, :Organization
|
3140
3131
|
extend Gem::Deprecate
|
3141
|
-
deprecate :Operator, :none, 2025,
|
3142
|
-
deprecate :Operator=, :none, 2025,
|
3143
|
-
deprecate :Organization, :none, 2025,
|
3144
|
-
deprecate :Organization=, :none, 2025,
|
3132
|
+
deprecate :Operator, :none, 2025, 3
|
3133
|
+
deprecate :Operator=, :none, 2025, 3
|
3134
|
+
deprecate :Organization, :none, 2025, 3
|
3135
|
+
deprecate :Organization=, :none, 2025, 3
|
3145
3136
|
|
3146
3137
|
def initialize(agent=nil, sealid=nil, userids=nil, operator=nil, organization=nil)
|
3147
3138
|
@Agent = agent
|
@@ -3403,8 +3394,8 @@ module TencentCloud
|
|
3403
3394
|
|
3404
3395
|
attr_accessor :Agent, :RoleIds, :UserIds, :OpenIds, :Operator
|
3405
3396
|
extend Gem::Deprecate
|
3406
|
-
deprecate :Operator, :none, 2025,
|
3407
|
-
deprecate :Operator=, :none, 2025,
|
3397
|
+
deprecate :Operator, :none, 2025, 3
|
3398
|
+
deprecate :Operator=, :none, 2025, 3
|
3408
3399
|
|
3409
3400
|
def initialize(agent=nil, roleids=nil, userids=nil, openids=nil, operator=nil)
|
3410
3401
|
@Agent = agent
|
@@ -3569,8 +3560,8 @@ module TencentCloud
|
|
3569
3560
|
|
3570
3561
|
attr_accessor :Agent, :RoleId, :UserIds, :Operator, :OpenIds
|
3571
3562
|
extend Gem::Deprecate
|
3572
|
-
deprecate :Operator, :none, 2025,
|
3573
|
-
deprecate :Operator=, :none, 2025,
|
3563
|
+
deprecate :Operator, :none, 2025, 3
|
3564
|
+
deprecate :Operator=, :none, 2025, 3
|
3574
3565
|
|
3575
3566
|
def initialize(agent=nil, roleid=nil, userids=nil, operator=nil, openids=nil)
|
3576
3567
|
@Agent = agent
|
@@ -3632,10 +3623,10 @@ module TencentCloud
|
|
3632
3623
|
|
3633
3624
|
attr_accessor :Agent, :SealId, :UserIds, :Organization, :Operator
|
3634
3625
|
extend Gem::Deprecate
|
3635
|
-
deprecate :Organization, :none, 2025,
|
3636
|
-
deprecate :Organization=, :none, 2025,
|
3637
|
-
deprecate :Operator, :none, 2025,
|
3638
|
-
deprecate :Operator=, :none, 2025,
|
3626
|
+
deprecate :Organization, :none, 2025, 3
|
3627
|
+
deprecate :Organization=, :none, 2025, 3
|
3628
|
+
deprecate :Operator, :none, 2025, 3
|
3629
|
+
deprecate :Operator=, :none, 2025, 3
|
3639
3630
|
|
3640
3631
|
def initialize(agent=nil, sealid=nil, userids=nil, organization=nil, operator=nil)
|
3641
3632
|
@Agent = agent
|
@@ -3863,8 +3854,8 @@ module TencentCloud
|
|
3863
3854
|
|
3864
3855
|
attr_accessor :Agent, :Limit, :Filters, :Offset, :Operator
|
3865
3856
|
extend Gem::Deprecate
|
3866
|
-
deprecate :Operator, :none, 2025,
|
3867
|
-
deprecate :Operator=, :none, 2025,
|
3857
|
+
deprecate :Operator, :none, 2025, 3
|
3858
|
+
deprecate :Operator=, :none, 2025, 3
|
3868
3859
|
|
3869
3860
|
def initialize(agent=nil, limit=nil, filters=nil, offset=nil, operator=nil)
|
3870
3861
|
@Agent = agent
|
@@ -4118,8 +4109,8 @@ module TencentCloud
|
|
4118
4109
|
|
4119
4110
|
attr_accessor :Agent, :Limit, :Filters, :Offset, :Operator
|
4120
4111
|
extend Gem::Deprecate
|
4121
|
-
deprecate :Operator, :none, 2025,
|
4122
|
-
deprecate :Operator=, :none, 2025,
|
4112
|
+
deprecate :Operator, :none, 2025, 3
|
4113
|
+
deprecate :Operator=, :none, 2025, 3
|
4123
4114
|
|
4124
4115
|
def initialize(agent=nil, limit=nil, filters=nil, offset=nil, operator=nil)
|
4125
4116
|
@Agent = agent
|
@@ -4420,10 +4411,10 @@ module TencentCloud
|
|
4420
4411
|
|
4421
4412
|
attr_accessor :Agent, :TaskId, :Operator, :Organization
|
4422
4413
|
extend Gem::Deprecate
|
4423
|
-
deprecate :Operator, :none, 2025,
|
4424
|
-
deprecate :Operator=, :none, 2025,
|
4425
|
-
deprecate :Organization, :none, 2025,
|
4426
|
-
deprecate :Organization=, :none, 2025,
|
4414
|
+
deprecate :Operator, :none, 2025, 3
|
4415
|
+
deprecate :Operator=, :none, 2025, 3
|
4416
|
+
deprecate :Organization, :none, 2025, 3
|
4417
|
+
deprecate :Organization=, :none, 2025, 3
|
4427
4418
|
|
4428
4419
|
def initialize(agent=nil, taskid=nil, operator=nil, organization=nil)
|
4429
4420
|
@Agent = agent
|
@@ -4479,8 +4470,8 @@ module TencentCloud
|
|
4479
4470
|
|
4480
4471
|
attr_accessor :TaskId, :TaskStatus, :TaskMessage, :ResourceId, :PreviewUrl, :RequestId
|
4481
4472
|
extend Gem::Deprecate
|
4482
|
-
deprecate :PreviewUrl, :none, 2025,
|
4483
|
-
deprecate :PreviewUrl=, :none, 2025,
|
4473
|
+
deprecate :PreviewUrl, :none, 2025, 3
|
4474
|
+
deprecate :PreviewUrl=, :none, 2025, 3
|
4484
4475
|
|
4485
4476
|
def initialize(taskid=nil, taskstatus=nil, taskmessage=nil, resourceid=nil, previewurl=nil, requestid=nil)
|
4486
4477
|
@TaskId = taskid
|
@@ -4710,17 +4701,14 @@ module TencentCloud
|
|
4710
4701
|
# 角色信息
|
4711
4702
|
class ChannelRole < TencentCloud::Common::AbstractModel
|
4712
4703
|
# @param RoleId: 角色ID,为32位字符串
|
4713
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
4714
4704
|
# @type RoleId: String
|
4715
4705
|
# @param RoleName: 角色的名称
|
4716
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
4717
4706
|
# @type RoleName: String
|
4718
4707
|
# @param RoleStatus: 此角色状态
|
4719
4708
|
# 1: 已经启用
|
4720
4709
|
# 2: 已经禁用
|
4721
4710
|
# @type RoleStatus: Integer
|
4722
4711
|
# @param PermissionGroups: 此角色对应的权限列表
|
4723
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
4724
4712
|
# @type PermissionGroups: Array
|
4725
4713
|
|
4726
4714
|
attr_accessor :RoleId, :RoleName, :RoleStatus, :PermissionGroups
|
@@ -4763,8 +4751,8 @@ module TencentCloud
|
|
4763
4751
|
|
4764
4752
|
attr_accessor :Agent, :Status, :SealId, :Reason, :Operator
|
4765
4753
|
extend Gem::Deprecate
|
4766
|
-
deprecate :Operator, :none, 2025,
|
4767
|
-
deprecate :Operator=, :none, 2025,
|
4754
|
+
deprecate :Operator, :none, 2025, 3
|
4755
|
+
deprecate :Operator=, :none, 2025, 3
|
4768
4756
|
|
4769
4757
|
def initialize(agent=nil, status=nil, sealid=nil, reason=nil, operator=nil)
|
4770
4758
|
@Agent = agent
|
@@ -4824,8 +4812,8 @@ module TencentCloud
|
|
4824
4812
|
|
4825
4813
|
attr_accessor :FlowId, :Agent, :Operator
|
4826
4814
|
extend Gem::Deprecate
|
4827
|
-
deprecate :Operator, :none, 2025,
|
4828
|
-
deprecate :Operator=, :none, 2025,
|
4815
|
+
deprecate :Operator, :none, 2025, 3
|
4816
|
+
deprecate :Operator=, :none, 2025, 3
|
4829
4817
|
|
4830
4818
|
def initialize(flowid=nil, agent=nil, operator=nil)
|
4831
4819
|
@FlowId = flowid
|
@@ -5319,17 +5307,14 @@ module TencentCloud
|
|
5319
5307
|
# @type KeywordIndexes: Array
|
5320
5308
|
# @param Placeholder: 填写控件在腾讯电子签小程序填写界面展示的提示信息,例如,在身份证号码填写控件中,提示信息可以设置成“请输入18位身份证号码”。
|
5321
5309
|
# 注:`签署控件设置此字段无效`
|
5322
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
5323
5310
|
# @type Placeholder: String
|
5324
5311
|
# @param LockComponentValue: **web嵌入发起合同场景下**, 是否锁定填写和签署控件值不允许嵌入页面进行编辑
|
5325
5312
|
# <ul><li>false(默认):不锁定控件值,允许在页面编辑控件值</li>
|
5326
5313
|
# <li>true:锁定控件值,在页面编辑控件值</li></ul>
|
5327
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
5328
5314
|
# @type LockComponentValue: Boolean
|
5329
5315
|
# @param ForbidMoveAndDelete: **web嵌入发起合同场景下**,是否禁止移动和删除填写和签署控件
|
5330
5316
|
# <ul><li> <b>false(默认)</b> :不禁止移动和删除控件</li>
|
5331
5317
|
# <li> <b>true</b> : 可以移动和删除控件</li></ul>
|
5332
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
5333
5318
|
# @type ForbidMoveAndDelete: Boolean
|
5334
5319
|
|
5335
5320
|
attr_accessor :ComponentId, :ComponentType, :ComponentName, :ComponentRequired, :ComponentRecipientId, :FileIndex, :GenerateMode, :ComponentWidth, :ComponentHeight, :ComponentPage, :ComponentPosX, :ComponentPosY, :ComponentExtra, :ComponentValue, :ComponentDateFontSize, :DocumentId, :ComponentDescription, :OffsetX, :OffsetY, :ChannelComponentId, :KeywordOrder, :KeywordPage, :RelativeLocation, :KeywordIndexes, :Placeholder, :LockComponentValue, :ForbidMoveAndDelete
|
@@ -5690,8 +5675,8 @@ module TencentCloud
|
|
5690
5675
|
|
5691
5676
|
attr_accessor :Agent, :FlowId, :Operator, :ReportType
|
5692
5677
|
extend Gem::Deprecate
|
5693
|
-
deprecate :Operator, :none, 2025,
|
5694
|
-
deprecate :Operator=, :none, 2025,
|
5678
|
+
deprecate :Operator, :none, 2025, 3
|
5679
|
+
deprecate :Operator=, :none, 2025, 3
|
5695
5680
|
|
5696
5681
|
def initialize(agent=nil, flowid=nil, operator=nil, reporttype=nil)
|
5697
5682
|
@Agent = agent
|
@@ -6037,8 +6022,8 @@ module TencentCloud
|
|
6037
6022
|
|
6038
6023
|
attr_accessor :Agent, :ProxyOrganizationName, :UniformSocialCreditCode, :ProxyOperatorName, :ProxyOperatorMobile, :Module, :ModuleId, :MenuStatus, :Endpoint, :AutoJumpBackEvent, :AuthorizationTypes, :Operator, :ProxyOperatorIdCardNumber, :AutoJumpUrl, :TopNavigationStatus, :AutoActive, :BusinessLicense, :ProxyAddress, :ProxyLegalName, :PowerOfAttorneys, :OrganizationAuthorizationOptions
|
6039
6024
|
extend Gem::Deprecate
|
6040
|
-
deprecate :Operator, :none, 2025,
|
6041
|
-
deprecate :Operator=, :none, 2025,
|
6025
|
+
deprecate :Operator, :none, 2025, 3
|
6026
|
+
deprecate :Operator=, :none, 2025, 3
|
6042
6027
|
|
6043
6028
|
def initialize(agent=nil, proxyorganizationname=nil, uniformsocialcreditcode=nil, proxyoperatorname=nil, proxyoperatormobile=nil, _module=nil, moduleid=nil, menustatus=nil, endpoint=nil, autojumpbackevent=nil, authorizationtypes=nil, operator=nil, proxyoperatoridcardnumber=nil, autojumpurl=nil, topnavigationstatus=nil, autoactive=nil, businesslicense=nil, proxyaddress=nil, proxylegalname=nil, powerofattorneys=nil, organizationauthorizationoptions=nil)
|
6044
6029
|
@Agent = agent
|
@@ -6139,6 +6124,66 @@ module TencentCloud
|
|
6139
6124
|
end
|
6140
6125
|
end
|
6141
6126
|
|
6127
|
+
# CreateEmployeeChangeUrl请求参数结构体
|
6128
|
+
class CreateEmployeeChangeUrlRequest < TencentCloud::Common::AbstractModel
|
6129
|
+
# @param Agent: 关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。
|
6130
|
+
|
6131
|
+
# 此接口下面信息必填。
|
6132
|
+
# <ul>
|
6133
|
+
# <li>渠道应用标识: Agent.AppId</li>
|
6134
|
+
# <li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId</li>
|
6135
|
+
# <li>第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId</li>
|
6136
|
+
# </ul>
|
6137
|
+
# 第三方平台子客企业和员工必须已经经过实名认证
|
6138
|
+
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
6139
|
+
# @param OpenId: 待修改的员工OpenId
|
6140
|
+
# @type OpenId: String
|
6141
|
+
# @param NewMobile: 待修改的员工手机号,支持海外格式
|
6142
|
+
# @type NewMobile: String
|
6143
|
+
|
6144
|
+
attr_accessor :Agent, :OpenId, :NewMobile
|
6145
|
+
|
6146
|
+
def initialize(agent=nil, openid=nil, newmobile=nil)
|
6147
|
+
@Agent = agent
|
6148
|
+
@OpenId = openid
|
6149
|
+
@NewMobile = newmobile
|
6150
|
+
end
|
6151
|
+
|
6152
|
+
def deserialize(params)
|
6153
|
+
unless params['Agent'].nil?
|
6154
|
+
@Agent = Agent.new
|
6155
|
+
@Agent.deserialize(params['Agent'])
|
6156
|
+
end
|
6157
|
+
@OpenId = params['OpenId']
|
6158
|
+
@NewMobile = params['NewMobile']
|
6159
|
+
end
|
6160
|
+
end
|
6161
|
+
|
6162
|
+
# CreateEmployeeChangeUrl返回参数结构体
|
6163
|
+
class CreateEmployeeChangeUrlResponse < TencentCloud::Common::AbstractModel
|
6164
|
+
# @param MiniAppPath: 修改员工信息的小程序链接<br>跳转到腾讯电子签小程序的实现可以参考微信的官方文档:<a href="https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/launchApp.html" target="_blank">开放能力/打开 App</a>
|
6165
|
+
# @type MiniAppPath: String
|
6166
|
+
# @param ExpireTime: 链接过期时间以 Unix 时间戳格式表示,从生成链接时间起,往后7天有效期。过期后短链将失效,无法打开。
|
6167
|
+
|
6168
|
+
# @type ExpireTime: Integer
|
6169
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6170
|
+
# @type RequestId: String
|
6171
|
+
|
6172
|
+
attr_accessor :MiniAppPath, :ExpireTime, :RequestId
|
6173
|
+
|
6174
|
+
def initialize(miniapppath=nil, expiretime=nil, requestid=nil)
|
6175
|
+
@MiniAppPath = miniapppath
|
6176
|
+
@ExpireTime = expiretime
|
6177
|
+
@RequestId = requestid
|
6178
|
+
end
|
6179
|
+
|
6180
|
+
def deserialize(params)
|
6181
|
+
@MiniAppPath = params['MiniAppPath']
|
6182
|
+
@ExpireTime = params['ExpireTime']
|
6183
|
+
@RequestId = params['RequestId']
|
6184
|
+
end
|
6185
|
+
end
|
6186
|
+
|
6142
6187
|
# CreateEmployeeQualificationSealQrCode请求参数结构体
|
6143
6188
|
class CreateEmployeeQualificationSealQrCodeRequest < TencentCloud::Common::AbstractModel
|
6144
6189
|
# @param Agent: 关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。此接口下面信息必填。<ul><li>渠道应用标识: Agent.AppId</li><li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId</li><li>第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId</li></ul>第三方平台子客企业和员工必须已经经过实名认证
|
@@ -6406,8 +6451,8 @@ module TencentCloud
|
|
6406
6451
|
|
6407
6452
|
attr_accessor :Agent, :FlowInfos, :NeedPreview, :PreviewType, :Operator
|
6408
6453
|
extend Gem::Deprecate
|
6409
|
-
deprecate :Operator, :none, 2025,
|
6410
|
-
deprecate :Operator=, :none, 2025,
|
6454
|
+
deprecate :Operator, :none, 2025, 3
|
6455
|
+
deprecate :Operator=, :none, 2025, 3
|
6411
6456
|
|
6412
6457
|
def initialize(agent=nil, flowinfos=nil, needpreview=nil, previewtype=nil, operator=nil)
|
6413
6458
|
@Agent = agent
|
@@ -6522,10 +6567,10 @@ module TencentCloud
|
|
6522
6567
|
|
6523
6568
|
attr_accessor :Agent, :Operator, :Organization
|
6524
6569
|
extend Gem::Deprecate
|
6525
|
-
deprecate :Operator, :none, 2025,
|
6526
|
-
deprecate :Operator=, :none, 2025,
|
6527
|
-
deprecate :Organization, :none, 2025,
|
6528
|
-
deprecate :Organization=, :none, 2025,
|
6570
|
+
deprecate :Operator, :none, 2025, 3
|
6571
|
+
deprecate :Operator=, :none, 2025, 3
|
6572
|
+
deprecate :Organization, :none, 2025, 3
|
6573
|
+
deprecate :Organization=, :none, 2025, 3
|
6529
6574
|
|
6530
6575
|
def initialize(agent=nil, operator=nil, organization=nil)
|
6531
6576
|
@Agent = agent
|
@@ -6854,8 +6899,8 @@ module TencentCloud
|
|
6854
6899
|
|
6855
6900
|
attr_accessor :Agent, :SealName, :SealImage, :Operator, :GenerateSource, :SealType, :SealHorizontalText, :SealStyle, :SealSize, :TaxIdentifyCode
|
6856
6901
|
extend Gem::Deprecate
|
6857
|
-
deprecate :Operator, :none, 2025,
|
6858
|
-
deprecate :Operator=, :none, 2025,
|
6902
|
+
deprecate :Operator, :none, 2025, 3
|
6903
|
+
deprecate :Operator=, :none, 2025, 3
|
6859
6904
|
|
6860
6905
|
def initialize(agent=nil, sealname=nil, sealimage=nil, operator=nil, generatesource=nil, sealtype=nil, sealhorizontaltext=nil, sealstyle=nil, sealsize=nil, taxidentifycode=nil)
|
6861
6906
|
@Agent = agent
|
@@ -7016,8 +7061,8 @@ module TencentCloud
|
|
7016
7061
|
|
7017
7062
|
attr_accessor :Agent, :FlowIds, :FlowGroupId, :Endpoint, :GenerateType, :OrganizationName, :Name, :Mobile, :IdCardType, :IdCardNumber, :OrganizationOpenId, :OpenId, :AutoJumpBack, :JumpUrl, :Operator, :Hides, :RecipientIds, :FlowGroupUrlInfo, :UrlUseEnv
|
7018
7063
|
extend Gem::Deprecate
|
7019
|
-
deprecate :Operator, :none, 2025,
|
7020
|
-
deprecate :Operator=, :none, 2025,
|
7064
|
+
deprecate :Operator, :none, 2025, 3
|
7065
|
+
deprecate :Operator=, :none, 2025, 3
|
7021
7066
|
|
7022
7067
|
def initialize(agent=nil, flowids=nil, flowgroupid=nil, endpoint=nil, generatetype=nil, organizationname=nil, name=nil, mobile=nil, idcardtype=nil, idcardnumber=nil, organizationopenid=nil, openid=nil, autojumpback=nil, jumpurl=nil, operator=nil, hides=nil, recipientids=nil, flowgroupurlinfo=nil, urluseenv=nil)
|
7023
7068
|
@Agent = agent
|
@@ -7198,10 +7243,8 @@ module TencentCloud
|
|
7198
7243
|
# 第三方应用集成员工部门信息
|
7199
7244
|
class Department < TencentCloud::Common::AbstractModel
|
7200
7245
|
# @param DepartmentId: 部门id
|
7201
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
7202
7246
|
# @type DepartmentId: String
|
7203
7247
|
# @param DepartmentName: 部门名称
|
7204
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
7205
7248
|
# @type DepartmentName: String
|
7206
7249
|
|
7207
7250
|
attr_accessor :DepartmentId, :DepartmentName
|
@@ -7365,8 +7408,8 @@ module TencentCloud
|
|
7365
7408
|
|
7366
7409
|
attr_accessor :Agent, :ReportId, :Operator, :ReportType
|
7367
7410
|
extend Gem::Deprecate
|
7368
|
-
deprecate :Operator, :none, 2025,
|
7369
|
-
deprecate :Operator=, :none, 2025,
|
7411
|
+
deprecate :Operator, :none, 2025, 3
|
7412
|
+
deprecate :Operator=, :none, 2025, 3
|
7370
7413
|
|
7371
7414
|
def initialize(agent=nil, reportid=nil, operator=nil, reporttype=nil)
|
7372
7415
|
@Agent = agent
|
@@ -7709,8 +7752,8 @@ module TencentCloud
|
|
7709
7752
|
|
7710
7753
|
attr_accessor :Agent, :FlowIds, :FlowGroupId, :Operator
|
7711
7754
|
extend Gem::Deprecate
|
7712
|
-
deprecate :Operator, :none, 2025,
|
7713
|
-
deprecate :Operator=, :none, 2025,
|
7755
|
+
deprecate :Operator, :none, 2025, 3
|
7756
|
+
deprecate :Operator=, :none, 2025, 3
|
7714
7757
|
|
7715
7758
|
def initialize(agent=nil, flowids=nil, flowgroupid=nil, operator=nil)
|
7716
7759
|
@Agent = agent
|
@@ -7796,8 +7839,8 @@ module TencentCloud
|
|
7796
7839
|
|
7797
7840
|
attr_accessor :Agent, :FlowIds, :Operator
|
7798
7841
|
extend Gem::Deprecate
|
7799
|
-
deprecate :Operator, :none, 2025,
|
7800
|
-
deprecate :Operator=, :none, 2025,
|
7842
|
+
deprecate :Operator, :none, 2025, 3
|
7843
|
+
deprecate :Operator=, :none, 2025, 3
|
7801
7844
|
|
7802
7845
|
def initialize(agent=nil, flowids=nil, operator=nil)
|
7803
7846
|
@Agent = agent
|
@@ -7922,8 +7965,8 @@ module TencentCloud
|
|
7922
7965
|
|
7923
7966
|
attr_accessor :Agent, :TemplateId, :ContentType, :TemplateIds, :Limit, :Offset, :TemplateName, :ChannelTemplateId, :QueryAllComponents, :WithPreviewUrl, :WithPdfUrl, :Operator
|
7924
7967
|
extend Gem::Deprecate
|
7925
|
-
deprecate :Operator, :none, 2025,
|
7926
|
-
deprecate :Operator=, :none, 2025,
|
7968
|
+
deprecate :Operator, :none, 2025, 3
|
7969
|
+
deprecate :Operator=, :none, 2025, 3
|
7927
7970
|
|
7928
7971
|
def initialize(agent=nil, templateid=nil, contenttype=nil, templateids=nil, limit=nil, offset=nil, templatename=nil, channeltemplateid=nil, queryallcomponents=nil, withpreviewurl=nil, withpdfurl=nil, operator=nil)
|
7929
7972
|
@Agent = agent
|
@@ -8035,8 +8078,8 @@ module TencentCloud
|
|
8035
8078
|
|
8036
8079
|
attr_accessor :Agent, :StartDate, :EndDate, :NeedAggregate, :Limit, :Offset, :Operator
|
8037
8080
|
extend Gem::Deprecate
|
8038
|
-
deprecate :Operator, :none, 2025,
|
8039
|
-
deprecate :Operator=, :none, 2025,
|
8081
|
+
deprecate :Operator, :none, 2025, 3
|
8082
|
+
deprecate :Operator=, :none, 2025, 3
|
8040
8083
|
|
8041
8084
|
def initialize(agent=nil, startdate=nil, enddate=nil, needaggregate=nil, limit=nil, offset=nil, operator=nil)
|
8042
8085
|
@Agent = agent
|
@@ -8101,7 +8144,6 @@ module TencentCloud
|
|
8101
8144
|
# @param LiveNessVideo: 活体视频的base64编码,mp4格式
|
8102
8145
|
|
8103
8146
|
# 注:`需进行base64解码获取活体视频文件`
|
8104
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8105
8147
|
# @type LiveNessVideo: String
|
8106
8148
|
|
8107
8149
|
attr_accessor :LiveNessVideo
|
@@ -8275,10 +8317,8 @@ module TencentCloud
|
|
8275
8317
|
# **DISABLE**:未开通
|
8276
8318
|
# @type Status: String
|
8277
8319
|
# @param OperatorOpenId: 操作扩展服务的操作人第三方应用平台的用户openid
|
8278
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8279
8320
|
# @type OperatorOpenId: String
|
8280
8321
|
# @param OperateOn: 扩展服务的操作时间,格式为Unix标准时间戳(秒)。
|
8281
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8282
8322
|
# @type OperateOn: Integer
|
8283
8323
|
|
8284
8324
|
attr_accessor :Type, :Name, :Status, :OperatorOpenId, :OperateOn
|
@@ -8303,10 +8343,8 @@ module TencentCloud
|
|
8303
8343
|
# 绑定失败的用户角色信息
|
8304
8344
|
class FailedCreateRoleData < TencentCloud::Common::AbstractModel
|
8305
8345
|
# @param UserId: 用户userId
|
8306
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8307
8346
|
# @type UserId: String
|
8308
8347
|
# @param RoleIds: 角色RoleId列表
|
8309
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8310
8348
|
# @type RoleIds: Array
|
8311
8349
|
|
8312
8350
|
attr_accessor :UserId, :RoleIds
|
@@ -8393,13 +8431,10 @@ module TencentCloud
|
|
8393
8431
|
# 批量补充签署人时,补充失败的报错说明
|
8394
8432
|
class FillError < TencentCloud::Common::AbstractModel
|
8395
8433
|
# @param RecipientId: 为签署方经办人在签署合同中的参与方ID,与控件绑定,是控件的归属方,ID为32位字符串。与入参中补充的签署人角色ID对应,批量补充部分失败返回对应的错误信息。
|
8396
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8397
8434
|
# @type RecipientId: String
|
8398
8435
|
# @param ErrMessage: 补充失败错误说明
|
8399
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8400
8436
|
# @type ErrMessage: String
|
8401
8437
|
# @param FlowId: 合同流程ID,为32位字符串。
|
8402
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8403
8438
|
# @type FlowId: String
|
8404
8439
|
|
8405
8440
|
attr_accessor :RecipientId, :ErrMessage, :FlowId
|
@@ -8478,7 +8513,6 @@ module TencentCloud
|
|
8478
8513
|
# @param ReceiptId: 模板配置时候的签署人角色ID(用PDF文件发起也可以指定,如果不指定则自动生成此角色ID), 所有的填写控件和签署控件都归属不同的角色
|
8479
8514
|
# @type ReceiptId: String
|
8480
8515
|
# @param ProxyOrganizationOpenId: 第三方平台子客企业的唯一标识,定义Agent中的ProxyOrganizationOpenId一样, 可以参考<a href="https://qian.tencent.com/developers/partnerApis/dataTypes/#agent" target="_blank">Agent结构体</a>
|
8481
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8482
8516
|
# @type ProxyOrganizationOpenId: String
|
8483
8517
|
# @param ProxyOperatorOpenId: 第三方平台子客企业员工的唯一标识
|
8484
8518
|
# @type ProxyOperatorOpenId: String
|
@@ -8490,7 +8524,6 @@ module TencentCloud
|
|
8490
8524
|
# @type SignOrder: Integer
|
8491
8525
|
# @param ApproveName: 签署方经办人的姓名。
|
8492
8526
|
# 经办人的姓名将用于身份认证和电子签名,请确保填写的姓名为签署方的真实姓名,而非昵称等代名。
|
8493
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8494
8527
|
# @type ApproveName: String
|
8495
8528
|
# @param ApproveStatus: 当前签署人的状态, 状态如下
|
8496
8529
|
# <ul><li> **PENDING** :待签署</li>
|
@@ -8505,31 +8538,26 @@ module TencentCloud
|
|
8505
8538
|
# <li> **FORWARD** :已经转他人处理</li>
|
8506
8539
|
# <li> **STOP** :流程已终止</li>
|
8507
8540
|
# <li> **RELIEVED** :解除协议(已解除)</li></ul>
|
8508
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8509
8541
|
# @type ApproveStatus: String
|
8510
8542
|
# @param ApproveMessage: 签署人拒签等情况的时候填写的原因
|
8511
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8512
8543
|
# @type ApproveMessage: String
|
8513
8544
|
# @param ApproveTime: 签署人签署时间戳,单位秒
|
8514
8545
|
# @type ApproveTime: Integer
|
8515
8546
|
# @param ApproveType: 参与者类型
|
8516
8547
|
# <ul><li> **ORGANIZATION** :企业签署人</li>
|
8517
8548
|
# <li> **PERSON** :个人签署人</li></ul>
|
8518
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8519
8549
|
# @type ApproveType: String
|
8520
8550
|
# @param ApproverRoleName: 自定义签署人的角色名, 如: 收款人、开具人、见证人等
|
8521
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8522
8551
|
# @type ApproverRoleName: String
|
8523
8552
|
# @param SignId: 签署参与人在本流程中的编号ID(每个流程不同),可用此ID来定位签署参与人在本流程的签署节点。
|
8524
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8525
8553
|
# @type SignId: String
|
8526
8554
|
# @param RecipientId: 模板配置时候的签署人角色ID(用PDF文件发起也可以指定,如果不指定则自动生成此角色ID), 所有的填写控件和签署控件都归属不同的角色
|
8527
8555
|
# @type RecipientId: String
|
8528
8556
|
|
8529
8557
|
attr_accessor :ReceiptId, :ProxyOrganizationOpenId, :ProxyOperatorOpenId, :ProxyOrganizationName, :Mobile, :SignOrder, :ApproveName, :ApproveStatus, :ApproveMessage, :ApproveTime, :ApproveType, :ApproverRoleName, :SignId, :RecipientId
|
8530
8558
|
extend Gem::Deprecate
|
8531
|
-
deprecate :ReceiptId, :none, 2025,
|
8532
|
-
deprecate :ReceiptId=, :none, 2025,
|
8559
|
+
deprecate :ReceiptId, :none, 2025, 3
|
8560
|
+
deprecate :ReceiptId=, :none, 2025, 3
|
8533
8561
|
|
8534
8562
|
def initialize(receiptid=nil, proxyorganizationopenid=nil, proxyoperatoropenid=nil, proxyorganizationname=nil, mobile=nil, signorder=nil, approvename=nil, approvestatus=nil, approvemessage=nil, approvetime=nil, approvetype=nil, approverrolename=nil, signid=nil, recipientid=nil)
|
8535
8563
|
@ReceiptId = receiptid
|
@@ -8754,8 +8782,8 @@ module TencentCloud
|
|
8754
8782
|
|
8755
8783
|
attr_accessor :Name, :IdCardType, :IdCardNumber, :Mobile, :OrganizationName, :NotChannelOrganization, :OpenId, :OrganizationOpenId, :ApproverType, :RecipientId, :Deadline, :CallbackUrl, :SignComponents, :ComponentLimitType, :PreReadTime, :JumpUrl, :ApproverOption, :ApproverNeedSignReview, :ApproverVerifyTypes, :ApproverSignTypes, :SignId, :NotifyType, :AddSignComponentsLimits, :ApproverRoleName, :SignTypeSelector, :Components, :Intention, :SignEndpoints
|
8756
8784
|
extend Gem::Deprecate
|
8757
|
-
deprecate :CallbackUrl, :none, 2025,
|
8758
|
-
deprecate :CallbackUrl=, :none, 2025,
|
8785
|
+
deprecate :CallbackUrl, :none, 2025, 3
|
8786
|
+
deprecate :CallbackUrl=, :none, 2025, 3
|
8759
8787
|
|
8760
8788
|
def initialize(name=nil, idcardtype=nil, idcardnumber=nil, mobile=nil, organizationname=nil, notchannelorganization=nil, openid=nil, organizationopenid=nil, approvertype=nil, recipientid=nil, deadline=nil, callbackurl=nil, signcomponents=nil, componentlimittype=nil, prereadtime=nil, jumpurl=nil, approveroption=nil, approverneedsignreview=nil, approververifytypes=nil, approversigntypes=nil, signid=nil, notifytype=nil, addsigncomponentslimits=nil, approverrolename=nil, signtypeselector=nil, components=nil, intention=nil, signendpoints=nil)
|
8761
8789
|
@Name = name
|
@@ -8850,10 +8878,8 @@ module TencentCloud
|
|
8850
8878
|
# 签署方信息,如角色ID、角色名称等
|
8851
8879
|
class FlowApproverItem < TencentCloud::Common::AbstractModel
|
8852
8880
|
# @param FlowId: 合同编号
|
8853
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8854
8881
|
# @type FlowId: String
|
8855
8882
|
# @param Approvers: 签署方信息,如角色ID、角色名称等
|
8856
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8857
8883
|
# @type Approvers: Array
|
8858
8884
|
|
8859
8885
|
attr_accessor :FlowId, :Approvers
|
@@ -8898,7 +8924,6 @@ module TencentCloud
|
|
8898
8924
|
# 1. 该链接有效期为**30分钟**,同时需要注意保密,不要外泄给无关用户。
|
8899
8925
|
# 2. 该链接不支持小程序嵌入,仅支持**移动端浏览器**打开。
|
8900
8926
|
# 3. <font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
|
8901
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8902
8927
|
# @type LongUrl: String
|
8903
8928
|
|
8904
8929
|
attr_accessor :SignUrl, :ApproverType, :Name, :Mobile, :LongUrl
|
@@ -9075,8 +9100,8 @@ module TencentCloud
|
|
9075
9100
|
|
9076
9101
|
attr_accessor :FileIds, :FlowName, :FlowApprovers, :Deadline, :FlowDescription, :FlowType, :CallbackUrl, :CustomerData, :Unordered, :Components, :CustomShowMap, :NeedSignReview, :FlowDisplayType
|
9077
9102
|
extend Gem::Deprecate
|
9078
|
-
deprecate :CallbackUrl, :none, 2025,
|
9079
|
-
deprecate :CallbackUrl=, :none, 2025,
|
9103
|
+
deprecate :CallbackUrl, :none, 2025, 3
|
9104
|
+
deprecate :CallbackUrl=, :none, 2025, 3
|
9080
9105
|
|
9081
9106
|
def initialize(fileids=nil, flowname=nil, flowapprovers=nil, deadline=nil, flowdescription=nil, flowtype=nil, callbackurl=nil, customerdata=nil, unordered=nil, components=nil, customshowmap=nil, needsignreview=nil, flowdisplaytype=nil)
|
9082
9107
|
@FileIds = fileids
|
@@ -9148,10 +9173,8 @@ module TencentCloud
|
|
9148
9173
|
# 合同组签署方信息
|
9149
9174
|
class FlowGroupApprovers < TencentCloud::Common::AbstractModel
|
9150
9175
|
# @param FlowId: 合同流程ID
|
9151
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9152
9176
|
# @type FlowId: String
|
9153
9177
|
# @param Approvers: 签署方信息,包含合同ID和角色ID用于定位RecipientId。
|
9154
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9155
9178
|
# @type Approvers: Array
|
9156
9179
|
|
9157
9180
|
attr_accessor :FlowId, :Approvers
|
@@ -9302,8 +9325,8 @@ module TencentCloud
|
|
9302
9325
|
|
9303
9326
|
attr_accessor :FlowName, :Deadline, :TemplateId, :FlowApprovers, :FormFields, :CallbackUrl, :FlowType, :FlowDescription, :CustomerData, :CustomShowMap, :CcInfos, :NeedSignReview, :CcNotifyType, :AutoSignScene, :FlowDisplayType
|
9304
9327
|
extend Gem::Deprecate
|
9305
|
-
deprecate :CallbackUrl, :none, 2025,
|
9306
|
-
deprecate :CallbackUrl=, :none, 2025,
|
9328
|
+
deprecate :CallbackUrl, :none, 2025, 3
|
9329
|
+
deprecate :CallbackUrl=, :none, 2025, 3
|
9307
9330
|
|
9308
9331
|
def initialize(flowname=nil, deadline=nil, templateid=nil, flowapprovers=nil, formfields=nil, callbackurl=nil, flowtype=nil, flowdescription=nil, customerdata=nil, customshowmap=nil, ccinfos=nil, needsignreview=nil, ccnotifytype=nil, autosignscene=nil, flowdisplaytype=nil)
|
9309
9332
|
@FlowName = flowname
|
@@ -9366,10 +9389,8 @@ module TencentCloud
|
|
9366
9389
|
# 流程对应资源链接信息
|
9367
9390
|
class FlowResourceUrlInfo < TencentCloud::Common::AbstractModel
|
9368
9391
|
# @param FlowId: 合同流程的ID
|
9369
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9370
9392
|
# @type FlowId: String
|
9371
9393
|
# @param ResourceUrlInfos: 对应的合同流程的PDF下载链接
|
9372
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9373
9394
|
# @type ResourceUrlInfos: Array
|
9374
9395
|
|
9375
9396
|
attr_accessor :FlowId, :ResourceUrlInfos
|
@@ -9641,15 +9662,12 @@ module TencentCloud
|
|
9641
9662
|
# CreateFlowsByTemplates 接口不使用此字段。
|
9642
9663
|
|
9643
9664
|
# <a href="https://dyn.ess.tencent.cn/guide/apivideo/channel_component_name.mp4" target="_blank">点击此处查看模板上控件ID的获取方式</a>
|
9644
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9645
9665
|
# @type ComponentId: String
|
9646
9666
|
# @param ComponentName: 控件的名字,跟ComponentId二选一,不能全为空
|
9647
9667
|
|
9648
9668
|
# <a href="https://dyn.ess.tencent.cn/guide/apivideo/channel_component_name.mp4" target="_blank">点击此处查看模板上控件名字的获取方式</a>
|
9649
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9650
9669
|
# @type ComponentName: String
|
9651
9670
|
# @param LockComponentValue: 是否锁定模板控件值,锁定后无法修改(用于嵌入式发起合同),true-锁定,false-不锁定
|
9652
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9653
9671
|
# @type LockComponentValue: Boolean
|
9654
9672
|
|
9655
9673
|
attr_accessor :ComponentValue, :ComponentId, :ComponentName, :LockComponentValue
|
@@ -9694,8 +9712,8 @@ module TencentCloud
|
|
9694
9712
|
|
9695
9713
|
attr_accessor :Agent, :DownLoadFlows, :Operator
|
9696
9714
|
extend Gem::Deprecate
|
9697
|
-
deprecate :Operator, :none, 2025,
|
9698
|
-
deprecate :Operator=, :none, 2025,
|
9715
|
+
deprecate :Operator, :none, 2025, 3
|
9716
|
+
deprecate :Operator=, :none, 2025, 3
|
9699
9717
|
|
9700
9718
|
def initialize(agent=nil, downloadflows=nil, operator=nil)
|
9701
9719
|
@Agent = agent
|
@@ -9746,19 +9764,14 @@ module TencentCloud
|
|
9746
9764
|
# 授权企业列表(目前仅用于“企业自动签 -> 合作企业授权”)
|
9747
9765
|
class HasAuthOrganization < TencentCloud::Common::AbstractModel
|
9748
9766
|
# @param OrganizationOpenId: 授权企业openid,
|
9749
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9750
9767
|
# @type OrganizationOpenId: String
|
9751
9768
|
# @param OrganizationName: 授权企业名称
|
9752
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9753
9769
|
# @type OrganizationName: String
|
9754
9770
|
# @param AuthorizedOrganizationOpenId: 被授权企业openid,
|
9755
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9756
9771
|
# @type AuthorizedOrganizationOpenId: String
|
9757
9772
|
# @param AuthorizedOrganizationName: 被授权企业名称
|
9758
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9759
9773
|
# @type AuthorizedOrganizationName: String
|
9760
9774
|
# @param AuthorizeTime: 授权时间,格式为时间戳,单位s
|
9761
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9762
9775
|
# @type AuthorizeTime: Integer
|
9763
9776
|
|
9764
9777
|
attr_accessor :OrganizationOpenId, :OrganizationName, :AuthorizedOrganizationOpenId, :AuthorizedOrganizationName, :AuthorizeTime
|
@@ -9784,8 +9797,6 @@ module TencentCloud
|
|
9784
9797
|
class HasAuthUser < TencentCloud::Common::AbstractModel
|
9785
9798
|
# @param OpenId: 第三方应用平台自定义,对应第三方平台子客企业员工的唯一标识。
|
9786
9799
|
|
9787
|
-
|
9788
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9789
9800
|
# @type OpenId: String
|
9790
9801
|
|
9791
9802
|
attr_accessor :OpenId
|
@@ -9866,7 +9877,6 @@ module TencentCloud
|
|
9866
9877
|
# 意愿核身点头确认模式结果
|
9867
9878
|
class IntentionActionResult < TencentCloud::Common::AbstractModel
|
9868
9879
|
# @param Details: 意愿核身结果详细数据,与每段点头确认过程一一对应
|
9869
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9870
9880
|
# @type Details: Array
|
9871
9881
|
|
9872
9882
|
attr_accessor :Details
|
@@ -9890,7 +9900,6 @@ module TencentCloud
|
|
9890
9900
|
# 意愿核身点头确认模式结果详细数据
|
9891
9901
|
class IntentionActionResultDetail < TencentCloud::Common::AbstractModel
|
9892
9902
|
# @param Video: 视频base64编码(其中包含全程提示文本和点头音频,mp4格式)
|
9893
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9894
9903
|
# @type Video: String
|
9895
9904
|
|
9896
9905
|
attr_accessor :Video
|
@@ -9929,13 +9938,10 @@ module TencentCloud
|
|
9929
9938
|
# @param Video: 视频base64(其中包含全程问题和回答音频,mp4格式)
|
9930
9939
|
|
9931
9940
|
# 注:`需进行base64解码获取视频文件`
|
9932
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9933
9941
|
# @type Video: String
|
9934
9942
|
# @param ResultCode: 和答案匹配结果列表
|
9935
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9936
9943
|
# @type ResultCode: Array
|
9937
9944
|
# @param AsrResult: 回答问题语音识别结果列表
|
9938
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9939
9945
|
# @type AsrResult: Array
|
9940
9946
|
|
9941
9947
|
attr_accessor :Video, :ResultCode, :AsrResult
|
@@ -10151,7 +10157,6 @@ module TencentCloud
|
|
10151
10157
|
# @param SealStatus: 印章状态,有以下六种:CHECKING(审核中)SUCCESS(已启用)FAIL(审核拒绝)CHECKING-SADM(待超管审核)DISABLE(已停用)STOPPED(已终止)
|
10152
10158
|
# @type SealStatus: String
|
10153
10159
|
# @param FailReason: 审核失败原因
|
10154
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10155
10160
|
# @type FailReason: String
|
10156
10161
|
# @param Url: 印章图片url,5分钟内有效
|
10157
10162
|
# @type Url: String
|
@@ -10251,8 +10256,8 @@ module TencentCloud
|
|
10251
10256
|
|
10252
10257
|
attr_accessor :Agent, :OperateType, :TemplateId, :ProxyOrganizationOpenIds, :AuthTag, :Available, :Operator
|
10253
10258
|
extend Gem::Deprecate
|
10254
|
-
deprecate :Operator, :none, 2025,
|
10255
|
-
deprecate :Operator=, :none, 2025,
|
10259
|
+
deprecate :Operator, :none, 2025, 3
|
10260
|
+
deprecate :Operator=, :none, 2025, 3
|
10256
10261
|
|
10257
10262
|
def initialize(agent=nil, operatetype=nil, templateid=nil, proxyorganizationopenids=nil, authtag=nil, available=nil, operator=nil)
|
10258
10263
|
@Agent = agent
|
@@ -10391,49 +10396,32 @@ module TencentCloud
|
|
10391
10396
|
# @param OrganizationName: 组织机构名称。
|
10392
10397
|
# 请确认该名称与企业营业执照中注册的名称一致。
|
10393
10398
|
# 如果名称中包含英文括号(),请使用中文括号()代替。
|
10394
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10395
10399
|
# @type OrganizationName: String
|
10396
10400
|
# @param UniformSocialCreditCode: 组织机构企业统一社会信用代码。
|
10397
10401
|
# 请确认该企业统一社会信用代码与企业营业执照中注册的统一社会信用代码一致。
|
10398
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10399
10402
|
# @type UniformSocialCreditCode: String
|
10400
10403
|
# @param LegalName: 组织机构法人的姓名。
|
10401
10404
|
# 请确认该企业统一社会信用代码与企业营业执照中注册的法人姓名一致。
|
10402
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10403
10405
|
# @type LegalName: String
|
10404
10406
|
# @param LegalIdCardType: 组织机构法人的证件类型
|
10405
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10406
10407
|
# @type LegalIdCardType: String
|
10407
10408
|
# @param LegalIdCardNumber: 组织机构法人的证件号码
|
10408
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10409
10409
|
# @type LegalIdCardNumber: String
|
10410
10410
|
# @param AdminName: 组织机构超管姓名。
|
10411
|
-
|
10412
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10413
10411
|
# @type AdminName: String
|
10414
10412
|
# @param AdminMobile: 组织机构超管手机号。
|
10415
|
-
|
10416
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10417
10413
|
# @type AdminMobile: String
|
10418
10414
|
# @param AdminIdCardType: 组织机构超管证件类型
|
10419
|
-
|
10420
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10421
10415
|
# @type AdminIdCardType: String
|
10422
10416
|
# @param AdminIdCardNumber: 组织机构超管证件号码
|
10423
|
-
|
10424
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10425
10417
|
# @type AdminIdCardNumber: String
|
10426
10418
|
# @param OldAdminName: 原超管姓名
|
10427
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10428
10419
|
# @type OldAdminName: String
|
10429
10420
|
# @param OldAdminMobile: 原超管手机号
|
10430
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10431
10421
|
# @type OldAdminMobile: String
|
10432
10422
|
# @param OldAdminIdCardType: 原超管证件类型
|
10433
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10434
10423
|
# @type OldAdminIdCardType: String
|
10435
10424
|
# @param OldAdminIdCardNumber: 原超管证件号码
|
10436
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10437
10425
|
# @type OldAdminIdCardNumber: String
|
10438
10426
|
|
10439
10427
|
attr_accessor :OrganizationName, :UniformSocialCreditCode, :LegalName, :LegalIdCardType, :LegalIdCardNumber, :AdminName, :AdminMobile, :AdminIdCardType, :AdminIdCardNumber, :OldAdminName, :OldAdminMobile, :OldAdminIdCardType, :OldAdminIdCardNumber
|
@@ -10486,10 +10474,10 @@ module TencentCloud
|
|
10486
10474
|
|
10487
10475
|
attr_accessor :OrganizationOpenId, :OrganizationId, :Channel, :ClientIp, :ProxyIp
|
10488
10476
|
extend Gem::Deprecate
|
10489
|
-
deprecate :ClientIp, :none, 2025,
|
10490
|
-
deprecate :ClientIp=, :none, 2025,
|
10491
|
-
deprecate :ProxyIp, :none, 2025,
|
10492
|
-
deprecate :ProxyIp=, :none, 2025,
|
10477
|
+
deprecate :ClientIp, :none, 2025, 3
|
10478
|
+
deprecate :ClientIp=, :none, 2025, 3
|
10479
|
+
deprecate :ProxyIp, :none, 2025, 3
|
10480
|
+
deprecate :ProxyIp=, :none, 2025, 3
|
10493
10481
|
|
10494
10482
|
def initialize(organizationopenid=nil, organizationid=nil, channel=nil, clientip=nil, proxyip=nil)
|
10495
10483
|
@OrganizationOpenId = organizationopenid
|
@@ -10593,37 +10581,26 @@ module TencentCloud
|
|
10593
10581
|
# 权限树节点权限
|
10594
10582
|
class Permission < TencentCloud::Common::AbstractModel
|
10595
10583
|
# @param Name: 权限名称
|
10596
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10597
10584
|
# @type Name: String
|
10598
10585
|
# @param Key: 权限key
|
10599
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10600
10586
|
# @type Key: String
|
10601
10587
|
# @param Type: 权限类型 1前端,2后端
|
10602
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10603
10588
|
# @type Type: Integer
|
10604
10589
|
# @param Hide: 是否隐藏
|
10605
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10606
10590
|
# @type Hide: Integer
|
10607
10591
|
# @param DataLabel: 数据权限标签 1:表示根节点,2:表示叶子结点
|
10608
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10609
10592
|
# @type DataLabel: Integer
|
10610
10593
|
# @param DataType: 数据权限独有,1:关联其他模块鉴权,2:表示关联自己模块鉴权
|
10611
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10612
10594
|
# @type DataType: Integer
|
10613
10595
|
# @param DataRange: 数据权限独有,表示数据范围,1:全公司,2:部门及下级部门,3:自己
|
10614
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10615
10596
|
# @type DataRange: Integer
|
10616
10597
|
# @param DataTo: 关联权限, 表示这个功能权限要受哪个数据权限管控
|
10617
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10618
10598
|
# @type DataTo: String
|
10619
10599
|
# @param ParentKey: 父级权限key
|
10620
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10621
10600
|
# @type ParentKey: String
|
10622
10601
|
# @param IsChecked: 是否选中
|
10623
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10624
10602
|
# @type IsChecked: Boolean
|
10625
10603
|
# @param Children: 子权限集合
|
10626
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10627
10604
|
# @type Children: Array
|
10628
10605
|
|
10629
10606
|
attr_accessor :Name, :Key, :Type, :Hide, :DataLabel, :DataType, :DataRange, :DataTo, :ParentKey, :IsChecked, :Children
|
@@ -10667,16 +10644,12 @@ module TencentCloud
|
|
10667
10644
|
# 权限树中的权限组
|
10668
10645
|
class PermissionGroup < TencentCloud::Common::AbstractModel
|
10669
10646
|
# @param GroupName: 权限组名称
|
10670
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10671
10647
|
# @type GroupName: String
|
10672
10648
|
# @param GroupKey: 权限组key
|
10673
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10674
10649
|
# @type GroupKey: String
|
10675
10650
|
# @param Hide: 是否隐藏分组,0否1是
|
10676
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10677
10651
|
# @type Hide: Integer
|
10678
10652
|
# @param Permissions: 权限集合
|
10679
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10680
10653
|
# @type Permissions: Array
|
10681
10654
|
|
10682
10655
|
attr_accessor :GroupName, :GroupKey, :Hide, :Permissions
|
@@ -10716,8 +10689,8 @@ module TencentCloud
|
|
10716
10689
|
|
10717
10690
|
attr_accessor :Agent, :FlowInfos, :JumpUrl, :Operator
|
10718
10691
|
extend Gem::Deprecate
|
10719
|
-
deprecate :Operator, :none, 2025,
|
10720
|
-
deprecate :Operator=, :none, 2025,
|
10692
|
+
deprecate :Operator, :none, 2025, 3
|
10693
|
+
deprecate :Operator=, :none, 2025, 3
|
10721
10694
|
|
10722
10695
|
def initialize(agent=nil, flowinfos=nil, jumpurl=nil, operator=nil)
|
10723
10696
|
@Agent = agent
|
@@ -10901,10 +10874,8 @@ module TencentCloud
|
|
10901
10874
|
|
10902
10875
|
# <ul><li> **true** : 是发起方角色</li>
|
10903
10876
|
# <li> **false** : 不是发起方角色</li></ul>
|
10904
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10905
10877
|
# @type IsPromoter: Boolean
|
10906
10878
|
# @param Components: 此角色的填写控件列表
|
10907
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
10908
10879
|
# @type Components: Array
|
10909
10880
|
|
10910
10881
|
attr_accessor :RecipientId, :RecipientFillStatus, :IsPromoter, :Components
|
@@ -11181,13 +11152,10 @@ module TencentCloud
|
|
11181
11152
|
# 资源链接信息
|
11182
11153
|
class ResourceUrlInfo < TencentCloud::Common::AbstractModel
|
11183
11154
|
# @param Url: 资源链接地址,过期时间5分钟
|
11184
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11185
11155
|
# @type Url: String
|
11186
11156
|
# @param Name: 资源名称
|
11187
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11188
11157
|
# @type Name: String
|
11189
11158
|
# @param Type: 资源类型
|
11190
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11191
11159
|
# @type Type: String
|
11192
11160
|
|
11193
11161
|
attr_accessor :Url, :Name, :Type
|
@@ -11265,54 +11233,41 @@ module TencentCloud
|
|
11265
11233
|
# @param SignUrl: 签署链接,过期时间为90天
|
11266
11234
|
|
11267
11235
|
# 注:<font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
|
11268
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11269
11236
|
# @type SignUrl: String
|
11270
11237
|
# @param Deadline: 合同过期时间戳,单位秒
|
11271
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11272
11238
|
# @type Deadline: Integer
|
11273
11239
|
# @param SignOrder: 当流程为顺序签署此参数有效时,数字越小优先级越高,暂不支持并行签署 可选
|
11274
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11275
11240
|
# @type SignOrder: Integer
|
11276
11241
|
# @param SignId: 签署人编号
|
11277
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11278
11242
|
# @type SignId: String
|
11279
11243
|
# @param CustomUserId: 自定义用户编号
|
11280
11244
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11281
11245
|
# @type CustomUserId: String
|
11282
11246
|
# @param Name: 用户姓名
|
11283
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11284
11247
|
# @type Name: String
|
11285
11248
|
# @param Mobile: 用户手机号码
|
11286
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11287
11249
|
# @type Mobile: String
|
11288
11250
|
# @param OrganizationName: 签署参与者机构名字
|
11289
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11290
11251
|
# @type OrganizationName: String
|
11291
11252
|
# @param ApproverType: 参与者类型, 类型如下:
|
11292
11253
|
# **ORGANIZATION**:企业经办人
|
11293
11254
|
# **PERSON**: 自然人
|
11294
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11295
11255
|
# @type ApproverType: String
|
11296
11256
|
# @param IdCardNumber: 经办人身份证号
|
11297
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11298
11257
|
# @type IdCardNumber: String
|
11299
11258
|
# @param FlowId: 签署链接对应流程Id
|
11300
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11301
11259
|
# @type FlowId: String
|
11302
11260
|
# @param OpenId: 企业经办人 用户在渠道的编号
|
11303
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11304
11261
|
# @type OpenId: String
|
11305
11262
|
# @param FlowGroupId: 合同组签署链接对应的合同组id
|
11306
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11307
11263
|
# @type FlowGroupId: String
|
11308
11264
|
# @param SignQrcodeUrl: 二维码,在生成动态签署人跳转封面页链接时返回
|
11309
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11310
11265
|
# @type SignQrcodeUrl: String
|
11311
11266
|
|
11312
11267
|
attr_accessor :SignUrl, :Deadline, :SignOrder, :SignId, :CustomUserId, :Name, :Mobile, :OrganizationName, :ApproverType, :IdCardNumber, :FlowId, :OpenId, :FlowGroupId, :SignQrcodeUrl
|
11313
11268
|
extend Gem::Deprecate
|
11314
|
-
deprecate :CustomUserId, :none, 2025,
|
11315
|
-
deprecate :CustomUserId=, :none, 2025,
|
11269
|
+
deprecate :CustomUserId, :none, 2025, 3
|
11270
|
+
deprecate :CustomUserId=, :none, 2025, 3
|
11316
11271
|
|
11317
11272
|
def initialize(signurl=nil, deadline=nil, signorder=nil, signid=nil, customuserid=nil, name=nil, mobile=nil, organizationname=nil, approvertype=nil, idcardnumber=nil, flowid=nil, openid=nil, flowgroupid=nil, signqrcodeurl=nil)
|
11318
11273
|
@SignUrl = signurl
|
@@ -11360,16 +11315,12 @@ module TencentCloud
|
|
11360
11315
|
# 注意:2024-07-08 及之后创建的应用号,该字段返回的是打码信息
|
11361
11316
|
# @type Mobile: String
|
11362
11317
|
# @param Email: 员工邮箱
|
11363
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11364
11318
|
# @type Email: String
|
11365
11319
|
# @param OpenId: 员工在第三方应用平台的用户ID
|
11366
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11367
11320
|
# @type OpenId: String
|
11368
11321
|
# @param Roles: 员工角色
|
11369
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11370
11322
|
# @type Roles: Array
|
11371
11323
|
# @param Department: 员工部门
|
11372
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11373
11324
|
# @type Department: :class:`Tencentcloud::Essbasic.v20210526.models.Department`
|
11374
11325
|
# @param Verified: 员工是否实名
|
11375
11326
|
# @type Verified: Boolean
|
@@ -11424,10 +11375,8 @@ module TencentCloud
|
|
11424
11375
|
# 第三方应用集成员工角色信息
|
11425
11376
|
class StaffRole < TencentCloud::Common::AbstractModel
|
11426
11377
|
# @param RoleId: 角色id
|
11427
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11428
11378
|
# @type RoleId: String
|
11429
11379
|
# @param RoleName: 角色名称
|
11430
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11431
11380
|
# @type RoleName: String
|
11432
11381
|
|
11433
11382
|
attr_accessor :RoleId, :RoleName
|
@@ -11448,7 +11397,6 @@ module TencentCloud
|
|
11448
11397
|
# @param Id: 企业员工标识(即OpenId)
|
11449
11398
|
# @type Id: String
|
11450
11399
|
# @param Message: 新增员工或者员工离职失败原因, 可能存证ID不符合规范、证件号码不合法等原因
|
11451
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11452
11400
|
# @type Message: String
|
11453
11401
|
|
11454
11402
|
attr_accessor :Id, :Message
|
@@ -11487,8 +11435,8 @@ module TencentCloud
|
|
11487
11435
|
|
11488
11436
|
attr_accessor :Agent, :OperatorType, :ProxyOrganizationOperators, :Operator
|
11489
11437
|
extend Gem::Deprecate
|
11490
|
-
deprecate :Operator, :none, 2025,
|
11491
|
-
deprecate :Operator=, :none, 2025,
|
11438
|
+
deprecate :Operator, :none, 2025, 3
|
11439
|
+
deprecate :Operator=, :none, 2025, 3
|
11492
11440
|
|
11493
11441
|
def initialize(agent=nil, operatortype=nil, proxyorganizationoperators=nil, operator=nil)
|
11494
11442
|
@Agent = agent
|
@@ -11587,8 +11535,8 @@ module TencentCloud
|
|
11587
11535
|
|
11588
11536
|
attr_accessor :Agent, :ProxyOrganizationName, :BusinessLicense, :UniformSocialCreditCode, :ProxyLegalName, :Operator, :ProxyLegalIdCardType, :ProxyLegalIdCardNumber, :ProxyAddress
|
11589
11537
|
extend Gem::Deprecate
|
11590
|
-
deprecate :Operator, :none, 2025,
|
11591
|
-
deprecate :Operator=, :none, 2025,
|
11538
|
+
deprecate :Operator, :none, 2025, 3
|
11539
|
+
deprecate :Operator=, :none, 2025, 3
|
11592
11540
|
|
11593
11541
|
def initialize(agent=nil, proxyorganizationname=nil, businesslicense=nil, uniformsocialcreditcode=nil, proxylegalname=nil, operator=nil, proxylegalidcardtype=nil, proxylegalidcardnumber=nil, proxyaddress=nil)
|
11594
11542
|
@Agent = agent
|
@@ -11640,10 +11588,8 @@ module TencentCloud
|
|
11640
11588
|
# 复杂文档合成任务的任务信息
|
11641
11589
|
class TaskInfo < TencentCloud::Common::AbstractModel
|
11642
11590
|
# @param TaskId: 合成任务Id,可以通过 ChannelGetTaskResultApi 接口获取任务信息
|
11643
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11644
11591
|
# @type TaskId: String
|
11645
11592
|
# @param TaskStatus: 任务状态:READY - 任务已完成;NOTREADY - 任务未完成;
|
11646
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11647
11593
|
# @type TaskStatus: String
|
11648
11594
|
|
11649
11595
|
attr_accessor :TaskId, :TaskStatus
|
@@ -11703,37 +11649,31 @@ module TencentCloud
|
|
11703
11649
|
# 您可以通过浏览器直接打开此链接预览模板,或将其嵌入到 iframe 中进行预览。
|
11704
11650
|
|
11705
11651
|
# 注意:只有在请求接口时将 <b>WithPreviewUrl </b>参数设置为 true,才会生成预览链接。
|
11706
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11707
11652
|
# @type PreviewUrl: String
|
11708
11653
|
# @param PdfUrl: 第三方应用集成-模板PDF文件链接,有效期5分钟。
|
11709
11654
|
# 请求参数WithPdfUrl=true时返回
|
11710
11655
|
# (此功能开放需要联系客户经理)。
|
11711
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11712
11656
|
# @type PdfUrl: String
|
11713
11657
|
# @param ChannelTemplateId: 本模板关联的第三方应用平台企业模板ID
|
11714
11658
|
# @type ChannelTemplateId: String
|
11715
11659
|
# @param ChannelTemplateName: 本模板关联的三方应用平台平台企业模板名称
|
11716
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11717
11660
|
# @type ChannelTemplateName: String
|
11718
11661
|
# @param ChannelAutoSave: 0-需要子客企业手动领取平台企业的模板(默认);
|
11719
11662
|
# 1-平台自动设置子客模板
|
11720
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11721
11663
|
# @type ChannelAutoSave: Integer
|
11722
11664
|
# @param TemplateVersion: 模板版本,由全数字字符组成。
|
11723
11665
|
# 默认为空,模板版本号由日期和序号组成,初始版本为yyyyMMdd001,yyyyMMdd002表示第二个版本,以此类推。
|
11724
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11725
11666
|
# @type TemplateVersion: String
|
11726
11667
|
# @param Available: 模板可用状态的取值通常为以下两种:
|
11727
11668
|
|
11728
11669
|
# <ul><li>1:启用(默认),表示模板处于启用状态,可以被用户正常使用。</li>
|
11729
11670
|
# <li>2:停用,表示模板处于停用状态,禁止用户使用该模板。</li></ul>
|
11730
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11731
11671
|
# @type Available: Integer
|
11732
11672
|
|
11733
11673
|
attr_accessor :TemplateId, :TemplateName, :Description, :Components, :Recipients, :SignComponents, :TemplateType, :IsPromoter, :Creator, :CreatedOn, :PreviewUrl, :PdfUrl, :ChannelTemplateId, :ChannelTemplateName, :ChannelAutoSave, :TemplateVersion, :Available
|
11734
11674
|
extend Gem::Deprecate
|
11735
|
-
deprecate :IsPromoter, :none, 2025,
|
11736
|
-
deprecate :IsPromoter=, :none, 2025,
|
11675
|
+
deprecate :IsPromoter, :none, 2025, 3
|
11676
|
+
deprecate :IsPromoter=, :none, 2025, 3
|
11737
11677
|
|
11738
11678
|
def initialize(templateid=nil, templatename=nil, description=nil, components=nil, recipients=nil, signcomponents=nil, templatetype=nil, ispromoter=nil, creator=nil, createdon=nil, previewurl=nil, pdfurl=nil, channeltemplateid=nil, channeltemplatename=nil, channelautosave=nil, templateversion=nil, available=nil)
|
11739
11679
|
@TemplateId = templateid
|
@@ -11844,8 +11784,8 @@ module TencentCloud
|
|
11844
11784
|
|
11845
11785
|
attr_accessor :Agent, :BusinessType, :FileInfos, :Operator
|
11846
11786
|
extend Gem::Deprecate
|
11847
|
-
deprecate :Operator, :none, 2025,
|
11848
|
-
deprecate :Operator=, :none, 2025,
|
11787
|
+
deprecate :Operator, :none, 2025, 3
|
11788
|
+
deprecate :Operator=, :none, 2025, 3
|
11849
11789
|
|
11850
11790
|
def initialize(agent=nil, businesstype=nil, fileinfos=nil, operator=nil)
|
11851
11791
|
@Agent = agent
|
@@ -11911,18 +11851,14 @@ module TencentCloud
|
|
11911
11851
|
# @param ProxyOrganizationOpenId: 子客企业标识
|
11912
11852
|
# @type ProxyOrganizationOpenId: String
|
11913
11853
|
# @param ProxyOrganizationName: 子客企业名
|
11914
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11915
11854
|
# @type ProxyOrganizationName: String
|
11916
11855
|
# @param Date: 对应的消耗日期, **如果是汇总数据则为1970-01-01**
|
11917
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11918
11856
|
# @type Date: String
|
11919
11857
|
# @param Usage: 消耗合同数量
|
11920
11858
|
# @type Usage: Integer
|
11921
11859
|
# @param Cancel: 撤回合同数量
|
11922
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11923
11860
|
# @type Cancel: Integer
|
11924
11861
|
# @param FlowChannel: 消耗渠道
|
11925
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11926
11862
|
# @type FlowChannel: String
|
11927
11863
|
|
11928
11864
|
attr_accessor :ProxyOrganizationOpenId, :ProxyOrganizationName, :Date, :Usage, :Cancel, :FlowChannel
|
@@ -11968,14 +11904,14 @@ module TencentCloud
|
|
11968
11904
|
|
11969
11905
|
attr_accessor :OpenId, :Channel, :CustomUserId, :ClientIp, :ProxyIp
|
11970
11906
|
extend Gem::Deprecate
|
11971
|
-
deprecate :Channel, :none, 2025,
|
11972
|
-
deprecate :Channel=, :none, 2025,
|
11973
|
-
deprecate :CustomUserId, :none, 2025,
|
11974
|
-
deprecate :CustomUserId=, :none, 2025,
|
11975
|
-
deprecate :ClientIp, :none, 2025,
|
11976
|
-
deprecate :ClientIp=, :none, 2025,
|
11977
|
-
deprecate :ProxyIp, :none, 2025,
|
11978
|
-
deprecate :ProxyIp=, :none, 2025,
|
11907
|
+
deprecate :Channel, :none, 2025, 3
|
11908
|
+
deprecate :Channel=, :none, 2025, 3
|
11909
|
+
deprecate :CustomUserId, :none, 2025, 3
|
11910
|
+
deprecate :CustomUserId=, :none, 2025, 3
|
11911
|
+
deprecate :ClientIp, :none, 2025, 3
|
11912
|
+
deprecate :ClientIp=, :none, 2025, 3
|
11913
|
+
deprecate :ProxyIp, :none, 2025, 3
|
11914
|
+
deprecate :ProxyIp=, :none, 2025, 3
|
11979
11915
|
|
11980
11916
|
def initialize(openid=nil, channel=nil, customuserid=nil, clientip=nil, proxyip=nil)
|
11981
11917
|
@OpenId = openid
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-essbasic
|
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
|