tencentcloud-sdk-essbasic 3.0.1056 → 3.0.1057
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 +235 -144
- 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: d40534305d1b6b247e42948d8c9e1ee65572885b
|
4
|
+
data.tar.gz: bce33c241f4859b7929c7da4173c2590990abfb2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ec5f4ab9dc7758e86bee097549da8d98454c31056fe27fdf014d6053c280a355f40d3b2dd95cc780039afa458e1c51c2cdd2cacad3f0697db1f3c2e2203ba03
|
7
|
+
data.tar.gz: 29d3bcca8c0221b598e2d18d88bacb1d425e91aee343f5fac9654d4b0429f5e76e1a3a76c61a390e6508b577832ca4bd12c167a7a5f19a83ce9ac60406fc1205
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1057
|
data/lib/v20210526/client.rb
CHANGED
@@ -957,6 +957,34 @@ module TencentCloud
|
|
957
957
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
958
958
|
end
|
959
959
|
|
960
|
+
# 接口(ChannelCreatePrepareFlowGroup)用于创建嵌入式合同组签署流程。
|
961
|
+
|
962
|
+
# - 该接口当前仅支持文件发起
|
963
|
+
# - 该接口能力和ChannelCreateFlowGroupByFiles,~~ChannelCreateFlowGroupByTemplates~~保持一致。
|
964
|
+
# - 返回的FlowGroupId 为临时id,只有在页面内成功发起后FlowGroupId才会有效。
|
965
|
+
|
966
|
+
# @param request: Request instance for ChannelCreatePrepareFlowGroup.
|
967
|
+
# @type request: :class:`Tencentcloud::essbasic::V20210526::ChannelCreatePrepareFlowGroupRequest`
|
968
|
+
# @rtype: :class:`Tencentcloud::essbasic::V20210526::ChannelCreatePrepareFlowGroupResponse`
|
969
|
+
def ChannelCreatePrepareFlowGroup(request)
|
970
|
+
body = send_request('ChannelCreatePrepareFlowGroup', request.serialize)
|
971
|
+
response = JSON.parse(body)
|
972
|
+
if response['Response'].key?('Error') == false
|
973
|
+
model = ChannelCreatePrepareFlowGroupResponse.new
|
974
|
+
model.deserialize(response['Response'])
|
975
|
+
model
|
976
|
+
else
|
977
|
+
code = response['Response']['Error']['Code']
|
978
|
+
message = response['Response']['Error']['Message']
|
979
|
+
reqid = response['Response']['RequestId']
|
980
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
981
|
+
end
|
982
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
983
|
+
raise e
|
984
|
+
rescue StandardError => e
|
985
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
986
|
+
end
|
987
|
+
|
960
988
|
# 本接口(ChannelCreatePreparedPersonalEsign)用于创建导入个人印章(处方单场景专用,使用此接口请与客户经理确认)。
|
961
989
|
|
962
990
|
# @param request: Request instance for ChannelCreatePreparedPersonalEsign.
|
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, 5
|
41
|
+
deprecate :ProxyOrganizationId=, :none, 2025, 5
|
42
42
|
|
43
43
|
def initialize(appid=nil, proxyorganizationopenid=nil, proxyoperator=nil, proxyappid=nil, proxyorganizationid=nil)
|
44
44
|
@AppId = appid
|
@@ -394,8 +394,8 @@ module TencentCloud
|
|
394
394
|
|
395
395
|
attr_accessor :UserInfo, :CertInfoCallback, :UserDefineSeal, :SealImgCallback, :CallbackUrl, :VerifyChannels, :LicenseType, :JumpUrl
|
396
396
|
extend Gem::Deprecate
|
397
|
-
deprecate :CallbackUrl, :none, 2025,
|
398
|
-
deprecate :CallbackUrl=, :none, 2025,
|
397
|
+
deprecate :CallbackUrl, :none, 2025, 5
|
398
|
+
deprecate :CallbackUrl=, :none, 2025, 5
|
399
399
|
|
400
400
|
def initialize(userinfo=nil, certinfocallback=nil, userdefineseal=nil, sealimgcallback=nil, callbackurl=nil, verifychannels=nil, licensetype=nil, jumpurl=nil)
|
401
401
|
@UserInfo = userinfo
|
@@ -468,10 +468,14 @@ module TencentCloud
|
|
468
468
|
# @type Components: Array
|
469
469
|
# @param FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li><li> <b>3</b> :文书</li></ul>效果如下:
|
470
470
|
# @type FlowDisplayType: Integer
|
471
|
+
# @param FileIds: 签署文件资源Id列表,目前仅支持单个文件
|
472
|
+
# @type FileIds: Array
|
473
|
+
# @param Approvers: 合同签署人信息
|
474
|
+
# @type Approvers: Array
|
471
475
|
|
472
|
-
attr_accessor :FlowName, :Deadline, :FlowType, :FlowDescription, :Unordered, :IntelligentStatus, :FormFields, :NeedSignReview, :UserData, :CcInfos, :NeedCreateReview, :Components, :FlowDisplayType
|
476
|
+
attr_accessor :FlowName, :Deadline, :FlowType, :FlowDescription, :Unordered, :IntelligentStatus, :FormFields, :NeedSignReview, :UserData, :CcInfos, :NeedCreateReview, :Components, :FlowDisplayType, :FileIds, :Approvers
|
473
477
|
|
474
|
-
def initialize(flowname=nil, deadline=nil, flowtype=nil, flowdescription=nil, unordered=nil, intelligentstatus=nil, formfields=nil, needsignreview=nil, userdata=nil, ccinfos=nil, needcreatereview=nil, components=nil, flowdisplaytype=nil)
|
478
|
+
def initialize(flowname=nil, deadline=nil, flowtype=nil, flowdescription=nil, unordered=nil, intelligentstatus=nil, formfields=nil, needsignreview=nil, userdata=nil, ccinfos=nil, needcreatereview=nil, components=nil, flowdisplaytype=nil, fileids=nil, approvers=nil)
|
475
479
|
@FlowName = flowname
|
476
480
|
@Deadline = deadline
|
477
481
|
@FlowType = flowtype
|
@@ -485,6 +489,8 @@ module TencentCloud
|
|
485
489
|
@NeedCreateReview = needcreatereview
|
486
490
|
@Components = components
|
487
491
|
@FlowDisplayType = flowdisplaytype
|
492
|
+
@FileIds = fileids
|
493
|
+
@Approvers = approvers
|
488
494
|
end
|
489
495
|
|
490
496
|
def deserialize(params)
|
@@ -522,6 +528,15 @@ module TencentCloud
|
|
522
528
|
end
|
523
529
|
end
|
524
530
|
@FlowDisplayType = params['FlowDisplayType']
|
531
|
+
@FileIds = params['FileIds']
|
532
|
+
unless params['Approvers'].nil?
|
533
|
+
@Approvers = []
|
534
|
+
params['Approvers'].each do |i|
|
535
|
+
commonflowapprover_tmp = CommonFlowApprover.new
|
536
|
+
commonflowapprover_tmp.deserialize(i)
|
537
|
+
@Approvers << commonflowapprover_tmp
|
538
|
+
end
|
539
|
+
end
|
525
540
|
end
|
526
541
|
end
|
527
542
|
|
@@ -634,8 +649,8 @@ module TencentCloud
|
|
634
649
|
|
635
650
|
attr_accessor :Agent, :FlowIds, :CancelMessage, :CancelMessageFormat, :Operator
|
636
651
|
extend Gem::Deprecate
|
637
|
-
deprecate :Operator, :none, 2025,
|
638
|
-
deprecate :Operator=, :none, 2025,
|
652
|
+
deprecate :Operator, :none, 2025, 5
|
653
|
+
deprecate :Operator=, :none, 2025, 5
|
639
654
|
|
640
655
|
def initialize(agent=nil, flowids=nil, cancelmessage=nil, cancelmessageformat=nil, operator=nil)
|
641
656
|
@Agent = agent
|
@@ -806,8 +821,8 @@ module TencentCloud
|
|
806
821
|
|
807
822
|
attr_accessor :FlowId, :Agent, :CancelMessage, :CancelMessageFormat, :Operator
|
808
823
|
extend Gem::Deprecate
|
809
|
-
deprecate :Operator, :none, 2025,
|
810
|
-
deprecate :Operator=, :none, 2025,
|
824
|
+
deprecate :Operator, :none, 2025, 5
|
825
|
+
deprecate :Operator=, :none, 2025, 5
|
811
826
|
|
812
827
|
def initialize(flowid=nil, agent=nil, cancelmessage=nil, cancelmessageformat=nil, operator=nil)
|
813
828
|
@FlowId = flowid
|
@@ -867,8 +882,8 @@ module TencentCloud
|
|
867
882
|
|
868
883
|
attr_accessor :Agent, :QrCodeId, :Operator
|
869
884
|
extend Gem::Deprecate
|
870
|
-
deprecate :Operator, :none, 2025,
|
871
|
-
deprecate :Operator=, :none, 2025,
|
885
|
+
deprecate :Operator, :none, 2025, 5
|
886
|
+
deprecate :Operator=, :none, 2025, 5
|
872
887
|
|
873
888
|
def initialize(agent=nil, qrcodeid=nil, operator=nil)
|
874
889
|
@Agent = agent
|
@@ -978,8 +993,8 @@ module TencentCloud
|
|
978
993
|
|
979
994
|
attr_accessor :Agent, :FlowIds, :Operator
|
980
995
|
extend Gem::Deprecate
|
981
|
-
deprecate :Operator, :none, 2025,
|
982
|
-
deprecate :Operator=, :none, 2025,
|
996
|
+
deprecate :Operator, :none, 2025, 5
|
997
|
+
deprecate :Operator=, :none, 2025, 5
|
983
998
|
|
984
999
|
def initialize(agent=nil, flowids=nil, operator=nil)
|
985
1000
|
@Agent = agent
|
@@ -1380,8 +1395,8 @@ module TencentCloud
|
|
1380
1395
|
|
1381
1396
|
attr_accessor :Agent, :FlowIds, :Operator
|
1382
1397
|
extend Gem::Deprecate
|
1383
|
-
deprecate :Operator, :none, 2025,
|
1384
|
-
deprecate :Operator=, :none, 2025,
|
1398
|
+
deprecate :Operator, :none, 2025, 5
|
1399
|
+
deprecate :Operator=, :none, 2025, 5
|
1385
1400
|
|
1386
1401
|
def initialize(agent=nil, flowids=nil, operator=nil)
|
1387
1402
|
@Agent = agent
|
@@ -1458,10 +1473,10 @@ module TencentCloud
|
|
1458
1473
|
|
1459
1474
|
attr_accessor :Agent, :ResourceType, :ResourceName, :ResourceId, :Operator, :Organization
|
1460
1475
|
extend Gem::Deprecate
|
1461
|
-
deprecate :Operator, :none, 2025,
|
1462
|
-
deprecate :Operator=, :none, 2025,
|
1463
|
-
deprecate :Organization, :none, 2025,
|
1464
|
-
deprecate :Organization=, :none, 2025,
|
1476
|
+
deprecate :Operator, :none, 2025, 5
|
1477
|
+
deprecate :Operator=, :none, 2025, 5
|
1478
|
+
deprecate :Organization, :none, 2025, 5
|
1479
|
+
deprecate :Organization=, :none, 2025, 5
|
1465
1480
|
|
1466
1481
|
def initialize(agent=nil, resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, organization=nil)
|
1467
1482
|
@Agent = agent
|
@@ -1629,8 +1644,8 @@ module TencentCloud
|
|
1629
1644
|
|
1630
1645
|
attr_accessor :Agent, :EmbedType, :BusinessId, :HiddenComponents, :Operator, :UserData, :Option
|
1631
1646
|
extend Gem::Deprecate
|
1632
|
-
deprecate :Operator, :none, 2025,
|
1633
|
-
deprecate :Operator=, :none, 2025,
|
1647
|
+
deprecate :Operator, :none, 2025, 5
|
1648
|
+
deprecate :Operator=, :none, 2025, 5
|
1634
1649
|
|
1635
1650
|
def initialize(agent=nil, embedtype=nil, businessid=nil, hiddencomponents=nil, operator=nil, userdata=nil, option=nil)
|
1636
1651
|
@Agent = agent
|
@@ -1893,12 +1908,12 @@ module TencentCloud
|
|
1893
1908
|
|
1894
1909
|
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
|
1895
1910
|
extend Gem::Deprecate
|
1896
|
-
deprecate :CallbackUrl, :none, 2025,
|
1897
|
-
deprecate :CallbackUrl=, :none, 2025,
|
1898
|
-
deprecate :Operator, :none, 2025,
|
1899
|
-
deprecate :Operator=, :none, 2025,
|
1900
|
-
deprecate :OpenDynamicFlow, :none, 2025,
|
1901
|
-
deprecate :OpenDynamicFlow=, :none, 2025,
|
1911
|
+
deprecate :CallbackUrl, :none, 2025, 5
|
1912
|
+
deprecate :CallbackUrl=, :none, 2025, 5
|
1913
|
+
deprecate :Operator, :none, 2025, 5
|
1914
|
+
deprecate :Operator=, :none, 2025, 5
|
1915
|
+
deprecate :OpenDynamicFlow, :none, 2025, 5
|
1916
|
+
deprecate :OpenDynamicFlow=, :none, 2025, 5
|
1902
1917
|
|
1903
1918
|
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)
|
1904
1919
|
@Agent = agent
|
@@ -2052,8 +2067,8 @@ module TencentCloud
|
|
2052
2067
|
|
2053
2068
|
attr_accessor :FlowFileInfos, :FlowGroupName, :Agent, :ApproverVerifyType, :FlowGroupOptions, :Operator
|
2054
2069
|
extend Gem::Deprecate
|
2055
|
-
deprecate :Operator, :none, 2025,
|
2056
|
-
deprecate :Operator=, :none, 2025,
|
2070
|
+
deprecate :Operator, :none, 2025, 5
|
2071
|
+
deprecate :Operator=, :none, 2025, 5
|
2057
2072
|
|
2058
2073
|
def initialize(flowfileinfos=nil, flowgroupname=nil, agent=nil, approververifytype=nil, flowgroupoptions=nil, operator=nil)
|
2059
2074
|
@FlowFileInfos = flowfileinfos
|
@@ -2403,10 +2418,10 @@ module TencentCloud
|
|
2403
2418
|
|
2404
2419
|
attr_accessor :Agent, :FlowId, :FlowApproverInfos, :Operator, :Organization, :JumpUrl, :UrlType
|
2405
2420
|
extend Gem::Deprecate
|
2406
|
-
deprecate :Operator, :none, 2025,
|
2407
|
-
deprecate :Operator=, :none, 2025,
|
2408
|
-
deprecate :Organization, :none, 2025,
|
2409
|
-
deprecate :Organization=, :none, 2025,
|
2421
|
+
deprecate :Operator, :none, 2025, 5
|
2422
|
+
deprecate :Operator=, :none, 2025, 5
|
2423
|
+
deprecate :Organization, :none, 2025, 5
|
2424
|
+
deprecate :Organization=, :none, 2025, 5
|
2410
2425
|
|
2411
2426
|
def initialize(agent=nil, flowid=nil, flowapproverinfos=nil, operator=nil, organization=nil, jumpurl=nil, urltype=nil)
|
2412
2427
|
@Agent = agent
|
@@ -2513,12 +2528,12 @@ module TencentCloud
|
|
2513
2528
|
|
2514
2529
|
attr_accessor :Agent, :TemplateId, :FlowName, :MaxFlowNum, :FlowEffectiveDay, :QrEffectiveDay, :Restrictions, :ApproverComponentLimitTypes, :CallbackUrl, :ApproverRestrictions, :Operator, :ForbidPersonalMultipleSign, :FlowNameAppendScannerInfo
|
2515
2530
|
extend Gem::Deprecate
|
2516
|
-
deprecate :CallbackUrl, :none, 2025,
|
2517
|
-
deprecate :CallbackUrl=, :none, 2025,
|
2518
|
-
deprecate :ApproverRestrictions, :none, 2025,
|
2519
|
-
deprecate :ApproverRestrictions=, :none, 2025,
|
2520
|
-
deprecate :Operator, :none, 2025,
|
2521
|
-
deprecate :Operator=, :none, 2025,
|
2531
|
+
deprecate :CallbackUrl, :none, 2025, 5
|
2532
|
+
deprecate :CallbackUrl=, :none, 2025, 5
|
2533
|
+
deprecate :ApproverRestrictions, :none, 2025, 5
|
2534
|
+
deprecate :ApproverRestrictions=, :none, 2025, 5
|
2535
|
+
deprecate :Operator, :none, 2025, 5
|
2536
|
+
deprecate :Operator=, :none, 2025, 5
|
2522
2537
|
|
2523
2538
|
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)
|
2524
2539
|
@Agent = agent
|
@@ -2626,15 +2641,18 @@ module TencentCloud
|
|
2626
2641
|
# @type Name: String
|
2627
2642
|
# @param Mobile: 员工手机号,必须与姓名一起使用。 如果OpenId为空,则此字段不能为空。同时,姓名和手机号码必须与传入合同(FlowId)中的签署人信息一致。
|
2628
2643
|
# @type Mobile: String
|
2644
|
+
# @param FlowGroupId: 合同组Id,传入此参数则可以不传FlowIds
|
2645
|
+
# @type FlowGroupId: String
|
2629
2646
|
|
2630
|
-
attr_accessor :Agent, :FlowIds, :OpenId, :Name, :Mobile
|
2647
|
+
attr_accessor :Agent, :FlowIds, :OpenId, :Name, :Mobile, :FlowGroupId
|
2631
2648
|
|
2632
|
-
def initialize(agent=nil, flowids=nil, openid=nil, name=nil, mobile=nil)
|
2649
|
+
def initialize(agent=nil, flowids=nil, openid=nil, name=nil, mobile=nil, flowgroupid=nil)
|
2633
2650
|
@Agent = agent
|
2634
2651
|
@FlowIds = flowids
|
2635
2652
|
@OpenId = openid
|
2636
2653
|
@Name = name
|
2637
2654
|
@Mobile = mobile
|
2655
|
+
@FlowGroupId = flowgroupid
|
2638
2656
|
end
|
2639
2657
|
|
2640
2658
|
def deserialize(params)
|
@@ -2646,6 +2664,7 @@ module TencentCloud
|
|
2646
2664
|
@OpenId = params['OpenId']
|
2647
2665
|
@Name = params['Name']
|
2648
2666
|
@Mobile = params['Mobile']
|
2667
|
+
@FlowGroupId = params['FlowGroupId']
|
2649
2668
|
end
|
2650
2669
|
end
|
2651
2670
|
|
@@ -2723,6 +2742,78 @@ module TencentCloud
|
|
2723
2742
|
end
|
2724
2743
|
end
|
2725
2744
|
|
2745
|
+
# ChannelCreatePrepareFlowGroup请求参数结构体
|
2746
|
+
class ChannelCreatePrepareFlowGroupRequest < TencentCloud::Common::AbstractModel
|
2747
|
+
# @param BaseFlowInfos: 合同组中每个合同签署流程的信息,合同组中最少包含2个合同,不能超过50个合同。
|
2748
|
+
# @type BaseFlowInfos: Array
|
2749
|
+
# @param FlowGroupName: 合同组的名称(可自定义此名称),长度不能超过200,只能由中文、字母、数字和下划线组成。
|
2750
|
+
# @type FlowGroupName: String
|
2751
|
+
# @param ResourceType: 资源类型,取值有: <ul><li> **1**:模板</li> <li> **2**:文件</li></ul>
|
2752
|
+
# @type ResourceType: Integer
|
2753
|
+
# @param Agent: 合同的发起企业和发起人信息,<a href="https://qcloudimg.tencent-cloud.cn/raw/b69f8aad306c40b7b78d096e39b2edbb.png" target="_blank">点击查看合同发起企业和人展示的位置</a>
|
2754
|
+
|
2755
|
+
# 此接口下面信息必填。
|
2756
|
+
# <ul>
|
2757
|
+
# <li>渠道应用标识: <a href="https://qcloudimg.tencent-cloud.cn/raw/a71872de3d540d55451e3e73a2ad1a6e.png" target="_blank">Agent.AppId</a></li>
|
2758
|
+
# <li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId(合同的发起企业)</li>
|
2759
|
+
# <li>第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId (合同的发起人)</li>
|
2760
|
+
# </ul>
|
2761
|
+
|
2762
|
+
# 合同的发起企业和发起人必需已经完成实名,并加入企业
|
2763
|
+
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
2764
|
+
|
2765
|
+
attr_accessor :BaseFlowInfos, :FlowGroupName, :ResourceType, :Agent
|
2766
|
+
|
2767
|
+
def initialize(baseflowinfos=nil, flowgroupname=nil, resourcetype=nil, agent=nil)
|
2768
|
+
@BaseFlowInfos = baseflowinfos
|
2769
|
+
@FlowGroupName = flowgroupname
|
2770
|
+
@ResourceType = resourcetype
|
2771
|
+
@Agent = agent
|
2772
|
+
end
|
2773
|
+
|
2774
|
+
def deserialize(params)
|
2775
|
+
unless params['BaseFlowInfos'].nil?
|
2776
|
+
@BaseFlowInfos = []
|
2777
|
+
params['BaseFlowInfos'].each do |i|
|
2778
|
+
baseflowinfo_tmp = BaseFlowInfo.new
|
2779
|
+
baseflowinfo_tmp.deserialize(i)
|
2780
|
+
@BaseFlowInfos << baseflowinfo_tmp
|
2781
|
+
end
|
2782
|
+
end
|
2783
|
+
@FlowGroupName = params['FlowGroupName']
|
2784
|
+
@ResourceType = params['ResourceType']
|
2785
|
+
unless params['Agent'].nil?
|
2786
|
+
@Agent = Agent.new
|
2787
|
+
@Agent.deserialize(params['Agent'])
|
2788
|
+
end
|
2789
|
+
end
|
2790
|
+
end
|
2791
|
+
|
2792
|
+
# ChannelCreatePrepareFlowGroup返回参数结构体
|
2793
|
+
class ChannelCreatePrepareFlowGroupResponse < TencentCloud::Common::AbstractModel
|
2794
|
+
# @param FlowGroupId: 合同组ID,为32位字符串。
|
2795
|
+
# 建议开发者妥善保存此合同组ID,以便于顺利进行后续操作。
|
2796
|
+
# @type FlowGroupId: String
|
2797
|
+
# @param PrepareUrl: 嵌入式发起链接
|
2798
|
+
# @type PrepareUrl: String
|
2799
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2800
|
+
# @type RequestId: String
|
2801
|
+
|
2802
|
+
attr_accessor :FlowGroupId, :PrepareUrl, :RequestId
|
2803
|
+
|
2804
|
+
def initialize(flowgroupid=nil, prepareurl=nil, requestid=nil)
|
2805
|
+
@FlowGroupId = flowgroupid
|
2806
|
+
@PrepareUrl = prepareurl
|
2807
|
+
@RequestId = requestid
|
2808
|
+
end
|
2809
|
+
|
2810
|
+
def deserialize(params)
|
2811
|
+
@FlowGroupId = params['FlowGroupId']
|
2812
|
+
@PrepareUrl = params['PrepareUrl']
|
2813
|
+
@RequestId = params['RequestId']
|
2814
|
+
end
|
2815
|
+
end
|
2816
|
+
|
2726
2817
|
# ChannelCreatePrepareFlow请求参数结构体
|
2727
2818
|
class ChannelCreatePrepareFlowRequest < TencentCloud::Common::AbstractModel
|
2728
2819
|
# @param ResourceType: 资源类型,取值有:
|
@@ -2769,14 +2860,14 @@ module TencentCloud
|
|
2769
2860
|
|
2770
2861
|
attr_accessor :ResourceType, :FlowInfo, :Agent, :ResourceId, :FlowOption, :FlowApproverList, :FlowId, :NeedPreview, :Organization, :Operator, :SignComponentConfig
|
2771
2862
|
extend Gem::Deprecate
|
2772
|
-
deprecate :NeedPreview, :none, 2025,
|
2773
|
-
deprecate :NeedPreview=, :none, 2025,
|
2774
|
-
deprecate :Organization, :none, 2025,
|
2775
|
-
deprecate :Organization=, :none, 2025,
|
2776
|
-
deprecate :Operator, :none, 2025,
|
2777
|
-
deprecate :Operator=, :none, 2025,
|
2778
|
-
deprecate :SignComponentConfig, :none, 2025,
|
2779
|
-
deprecate :SignComponentConfig=, :none, 2025,
|
2863
|
+
deprecate :NeedPreview, :none, 2025, 5
|
2864
|
+
deprecate :NeedPreview=, :none, 2025, 5
|
2865
|
+
deprecate :Organization, :none, 2025, 5
|
2866
|
+
deprecate :Organization=, :none, 2025, 5
|
2867
|
+
deprecate :Operator, :none, 2025, 5
|
2868
|
+
deprecate :Operator=, :none, 2025, 5
|
2869
|
+
deprecate :SignComponentConfig, :none, 2025, 5
|
2870
|
+
deprecate :SignComponentConfig=, :none, 2025, 5
|
2780
2871
|
|
2781
2872
|
def initialize(resourcetype=nil, flowinfo=nil, agent=nil, resourceid=nil, flowoption=nil, flowapproverlist=nil, flowid=nil, needpreview=nil, organization=nil, operator=nil, signcomponentconfig=nil)
|
2782
2873
|
@ResourceType = resourcetype
|
@@ -3005,12 +3096,12 @@ module TencentCloud
|
|
3005
3096
|
|
3006
3097
|
attr_accessor :Agent, :NeedRelievedFlowId, :ReliveInfo, :ReleasedApprovers, :CallbackUrl, :Organization, :Operator, :Deadline, :UserData
|
3007
3098
|
extend Gem::Deprecate
|
3008
|
-
deprecate :CallbackUrl, :none, 2025,
|
3009
|
-
deprecate :CallbackUrl=, :none, 2025,
|
3010
|
-
deprecate :Organization, :none, 2025,
|
3011
|
-
deprecate :Organization=, :none, 2025,
|
3012
|
-
deprecate :Operator, :none, 2025,
|
3013
|
-
deprecate :Operator=, :none, 2025,
|
3099
|
+
deprecate :CallbackUrl, :none, 2025, 5
|
3100
|
+
deprecate :CallbackUrl=, :none, 2025, 5
|
3101
|
+
deprecate :Organization, :none, 2025, 5
|
3102
|
+
deprecate :Organization=, :none, 2025, 5
|
3103
|
+
deprecate :Operator, :none, 2025, 5
|
3104
|
+
deprecate :Operator=, :none, 2025, 5
|
3014
3105
|
|
3015
3106
|
def initialize(agent=nil, needrelievedflowid=nil, reliveinfo=nil, releasedapprovers=nil, callbackurl=nil, organization=nil, operator=nil, deadline=nil, userdata=nil)
|
3016
3107
|
@Agent = agent
|
@@ -3171,10 +3262,10 @@ module TencentCloud
|
|
3171
3262
|
|
3172
3263
|
attr_accessor :Agent, :SealId, :UserIds, :Operator, :Organization
|
3173
3264
|
extend Gem::Deprecate
|
3174
|
-
deprecate :Operator, :none, 2025,
|
3175
|
-
deprecate :Operator=, :none, 2025,
|
3176
|
-
deprecate :Organization, :none, 2025,
|
3177
|
-
deprecate :Organization=, :none, 2025,
|
3265
|
+
deprecate :Operator, :none, 2025, 5
|
3266
|
+
deprecate :Operator=, :none, 2025, 5
|
3267
|
+
deprecate :Organization, :none, 2025, 5
|
3268
|
+
deprecate :Organization=, :none, 2025, 5
|
3178
3269
|
|
3179
3270
|
def initialize(agent=nil, sealid=nil, userids=nil, operator=nil, organization=nil)
|
3180
3271
|
@Agent = agent
|
@@ -3436,8 +3527,8 @@ module TencentCloud
|
|
3436
3527
|
|
3437
3528
|
attr_accessor :Agent, :RoleIds, :UserIds, :OpenIds, :Operator
|
3438
3529
|
extend Gem::Deprecate
|
3439
|
-
deprecate :Operator, :none, 2025,
|
3440
|
-
deprecate :Operator=, :none, 2025,
|
3530
|
+
deprecate :Operator, :none, 2025, 5
|
3531
|
+
deprecate :Operator=, :none, 2025, 5
|
3441
3532
|
|
3442
3533
|
def initialize(agent=nil, roleids=nil, userids=nil, openids=nil, operator=nil)
|
3443
3534
|
@Agent = agent
|
@@ -3602,8 +3693,8 @@ module TencentCloud
|
|
3602
3693
|
|
3603
3694
|
attr_accessor :Agent, :RoleId, :UserIds, :Operator, :OpenIds
|
3604
3695
|
extend Gem::Deprecate
|
3605
|
-
deprecate :Operator, :none, 2025,
|
3606
|
-
deprecate :Operator=, :none, 2025,
|
3696
|
+
deprecate :Operator, :none, 2025, 5
|
3697
|
+
deprecate :Operator=, :none, 2025, 5
|
3607
3698
|
|
3608
3699
|
def initialize(agent=nil, roleid=nil, userids=nil, operator=nil, openids=nil)
|
3609
3700
|
@Agent = agent
|
@@ -3665,10 +3756,10 @@ module TencentCloud
|
|
3665
3756
|
|
3666
3757
|
attr_accessor :Agent, :SealId, :UserIds, :Organization, :Operator
|
3667
3758
|
extend Gem::Deprecate
|
3668
|
-
deprecate :Organization, :none, 2025,
|
3669
|
-
deprecate :Organization=, :none, 2025,
|
3670
|
-
deprecate :Operator, :none, 2025,
|
3671
|
-
deprecate :Operator=, :none, 2025,
|
3759
|
+
deprecate :Organization, :none, 2025, 5
|
3760
|
+
deprecate :Organization=, :none, 2025, 5
|
3761
|
+
deprecate :Operator, :none, 2025, 5
|
3762
|
+
deprecate :Operator=, :none, 2025, 5
|
3672
3763
|
|
3673
3764
|
def initialize(agent=nil, sealid=nil, userids=nil, organization=nil, operator=nil)
|
3674
3765
|
@Agent = agent
|
@@ -3896,8 +3987,8 @@ module TencentCloud
|
|
3896
3987
|
|
3897
3988
|
attr_accessor :Agent, :Limit, :Filters, :Offset, :Operator
|
3898
3989
|
extend Gem::Deprecate
|
3899
|
-
deprecate :Operator, :none, 2025,
|
3900
|
-
deprecate :Operator=, :none, 2025,
|
3990
|
+
deprecate :Operator, :none, 2025, 5
|
3991
|
+
deprecate :Operator=, :none, 2025, 5
|
3901
3992
|
|
3902
3993
|
def initialize(agent=nil, limit=nil, filters=nil, offset=nil, operator=nil)
|
3903
3994
|
@Agent = agent
|
@@ -4151,8 +4242,8 @@ module TencentCloud
|
|
4151
4242
|
|
4152
4243
|
attr_accessor :Agent, :Limit, :Filters, :Offset, :Operator
|
4153
4244
|
extend Gem::Deprecate
|
4154
|
-
deprecate :Operator, :none, 2025,
|
4155
|
-
deprecate :Operator=, :none, 2025,
|
4245
|
+
deprecate :Operator, :none, 2025, 5
|
4246
|
+
deprecate :Operator=, :none, 2025, 5
|
4156
4247
|
|
4157
4248
|
def initialize(agent=nil, limit=nil, filters=nil, offset=nil, operator=nil)
|
4158
4249
|
@Agent = agent
|
@@ -4453,10 +4544,10 @@ module TencentCloud
|
|
4453
4544
|
|
4454
4545
|
attr_accessor :Agent, :TaskId, :Operator, :Organization
|
4455
4546
|
extend Gem::Deprecate
|
4456
|
-
deprecate :Operator, :none, 2025,
|
4457
|
-
deprecate :Operator=, :none, 2025,
|
4458
|
-
deprecate :Organization, :none, 2025,
|
4459
|
-
deprecate :Organization=, :none, 2025,
|
4547
|
+
deprecate :Operator, :none, 2025, 5
|
4548
|
+
deprecate :Operator=, :none, 2025, 5
|
4549
|
+
deprecate :Organization, :none, 2025, 5
|
4550
|
+
deprecate :Organization=, :none, 2025, 5
|
4460
4551
|
|
4461
4552
|
def initialize(agent=nil, taskid=nil, operator=nil, organization=nil)
|
4462
4553
|
@Agent = agent
|
@@ -4512,8 +4603,8 @@ module TencentCloud
|
|
4512
4603
|
|
4513
4604
|
attr_accessor :TaskId, :TaskStatus, :TaskMessage, :ResourceId, :PreviewUrl, :RequestId
|
4514
4605
|
extend Gem::Deprecate
|
4515
|
-
deprecate :PreviewUrl, :none, 2025,
|
4516
|
-
deprecate :PreviewUrl=, :none, 2025,
|
4606
|
+
deprecate :PreviewUrl, :none, 2025, 5
|
4607
|
+
deprecate :PreviewUrl=, :none, 2025, 5
|
4517
4608
|
|
4518
4609
|
def initialize(taskid=nil, taskstatus=nil, taskmessage=nil, resourceid=nil, previewurl=nil, requestid=nil)
|
4519
4610
|
@TaskId = taskid
|
@@ -4793,8 +4884,8 @@ module TencentCloud
|
|
4793
4884
|
|
4794
4885
|
attr_accessor :Agent, :Status, :SealId, :Reason, :Operator
|
4795
4886
|
extend Gem::Deprecate
|
4796
|
-
deprecate :Operator, :none, 2025,
|
4797
|
-
deprecate :Operator=, :none, 2025,
|
4887
|
+
deprecate :Operator, :none, 2025, 5
|
4888
|
+
deprecate :Operator=, :none, 2025, 5
|
4798
4889
|
|
4799
4890
|
def initialize(agent=nil, status=nil, sealid=nil, reason=nil, operator=nil)
|
4800
4891
|
@Agent = agent
|
@@ -4854,8 +4945,8 @@ module TencentCloud
|
|
4854
4945
|
|
4855
4946
|
attr_accessor :FlowId, :Agent, :Operator
|
4856
4947
|
extend Gem::Deprecate
|
4857
|
-
deprecate :Operator, :none, 2025,
|
4858
|
-
deprecate :Operator=, :none, 2025,
|
4948
|
+
deprecate :Operator, :none, 2025, 5
|
4949
|
+
deprecate :Operator=, :none, 2025, 5
|
4859
4950
|
|
4860
4951
|
def initialize(flowid=nil, agent=nil, operator=nil)
|
4861
4952
|
@FlowId = flowid
|
@@ -5174,9 +5265,9 @@ module TencentCloud
|
|
5174
5265
|
# 1. 页码编号是从<font color="red">1</font>开始编号的。
|
5175
5266
|
# 2. <font color="red">页面编号不能超过PDF文件的页码总数</font>。如果指定的页码超过了PDF文件的页码总数,在填写和签署时会出现错误,导致无法正常进行操作。
|
5176
5267
|
# @type ComponentPage: Integer
|
5177
|
-
# @param ComponentPosX:
|
5268
|
+
# @param ComponentPosX: **在绝对定位方式下**,可以指定控件横向位置的位置,单位为pt(点)。
|
5178
5269
|
# @type ComponentPosX: Float
|
5179
|
-
# @param ComponentPosY:
|
5270
|
+
# @param ComponentPosY: **在绝对定位方式下**,可以指定控件纵向位置的位置,单位为pt(点)。
|
5180
5271
|
# @type ComponentPosY: Float
|
5181
5272
|
# @param ComponentExtra: **在所有的定位方式下**,控件的扩展参数,为<font color="red">JSON格式</font>,不同类型的控件会有部分非通用参数。
|
5182
5273
|
|
@@ -5717,8 +5808,8 @@ module TencentCloud
|
|
5717
5808
|
|
5718
5809
|
attr_accessor :Agent, :FlowId, :Operator, :ReportType
|
5719
5810
|
extend Gem::Deprecate
|
5720
|
-
deprecate :Operator, :none, 2025,
|
5721
|
-
deprecate :Operator=, :none, 2025,
|
5811
|
+
deprecate :Operator, :none, 2025, 5
|
5812
|
+
deprecate :Operator=, :none, 2025, 5
|
5722
5813
|
|
5723
5814
|
def initialize(agent=nil, flowid=nil, operator=nil, reporttype=nil)
|
5724
5815
|
@Agent = agent
|
@@ -6064,8 +6155,8 @@ module TencentCloud
|
|
6064
6155
|
|
6065
6156
|
attr_accessor :Agent, :ProxyOrganizationName, :UniformSocialCreditCode, :ProxyOperatorName, :ProxyOperatorMobile, :Module, :ModuleId, :MenuStatus, :Endpoint, :AutoJumpBackEvent, :AuthorizationTypes, :Operator, :ProxyOperatorIdCardNumber, :AutoJumpUrl, :TopNavigationStatus, :AutoActive, :BusinessLicense, :ProxyAddress, :ProxyLegalName, :PowerOfAttorneys, :OrganizationAuthorizationOptions
|
6066
6157
|
extend Gem::Deprecate
|
6067
|
-
deprecate :Operator, :none, 2025,
|
6068
|
-
deprecate :Operator=, :none, 2025,
|
6158
|
+
deprecate :Operator, :none, 2025, 5
|
6159
|
+
deprecate :Operator=, :none, 2025, 5
|
6069
6160
|
|
6070
6161
|
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)
|
6071
6162
|
@Agent = agent
|
@@ -6575,8 +6666,8 @@ module TencentCloud
|
|
6575
6666
|
|
6576
6667
|
attr_accessor :Agent, :FlowInfos, :NeedPreview, :PreviewType, :Operator
|
6577
6668
|
extend Gem::Deprecate
|
6578
|
-
deprecate :Operator, :none, 2025,
|
6579
|
-
deprecate :Operator=, :none, 2025,
|
6669
|
+
deprecate :Operator, :none, 2025, 5
|
6670
|
+
deprecate :Operator=, :none, 2025, 5
|
6580
6671
|
|
6581
6672
|
def initialize(agent=nil, flowinfos=nil, needpreview=nil, previewtype=nil, operator=nil)
|
6582
6673
|
@Agent = agent
|
@@ -6691,10 +6782,10 @@ module TencentCloud
|
|
6691
6782
|
|
6692
6783
|
attr_accessor :Agent, :Operator, :Organization
|
6693
6784
|
extend Gem::Deprecate
|
6694
|
-
deprecate :Operator, :none, 2025,
|
6695
|
-
deprecate :Operator=, :none, 2025,
|
6696
|
-
deprecate :Organization, :none, 2025,
|
6697
|
-
deprecate :Organization=, :none, 2025,
|
6785
|
+
deprecate :Operator, :none, 2025, 5
|
6786
|
+
deprecate :Operator=, :none, 2025, 5
|
6787
|
+
deprecate :Organization, :none, 2025, 5
|
6788
|
+
deprecate :Organization=, :none, 2025, 5
|
6698
6789
|
|
6699
6790
|
def initialize(agent=nil, operator=nil, organization=nil)
|
6700
6791
|
@Agent = agent
|
@@ -7023,8 +7114,8 @@ module TencentCloud
|
|
7023
7114
|
|
7024
7115
|
attr_accessor :Agent, :SealName, :SealImage, :Operator, :GenerateSource, :SealType, :SealHorizontalText, :SealStyle, :SealSize, :TaxIdentifyCode
|
7025
7116
|
extend Gem::Deprecate
|
7026
|
-
deprecate :Operator, :none, 2025,
|
7027
|
-
deprecate :Operator=, :none, 2025,
|
7117
|
+
deprecate :Operator, :none, 2025, 5
|
7118
|
+
deprecate :Operator=, :none, 2025, 5
|
7028
7119
|
|
7029
7120
|
def initialize(agent=nil, sealname=nil, sealimage=nil, operator=nil, generatesource=nil, sealtype=nil, sealhorizontaltext=nil, sealstyle=nil, sealsize=nil, taxidentifycode=nil)
|
7030
7121
|
@Agent = agent
|
@@ -7193,8 +7284,8 @@ module TencentCloud
|
|
7193
7284
|
|
7194
7285
|
attr_accessor :Agent, :FlowIds, :FlowGroupId, :Endpoint, :GenerateType, :OrganizationName, :Name, :Mobile, :IdCardType, :IdCardNumber, :OrganizationOpenId, :OpenId, :AutoJumpBack, :JumpUrl, :Operator, :Hides, :RecipientIds, :FlowGroupUrlInfo, :UrlUseEnv
|
7195
7286
|
extend Gem::Deprecate
|
7196
|
-
deprecate :Operator, :none, 2025,
|
7197
|
-
deprecate :Operator=, :none, 2025,
|
7287
|
+
deprecate :Operator, :none, 2025, 5
|
7288
|
+
deprecate :Operator=, :none, 2025, 5
|
7198
7289
|
|
7199
7290
|
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)
|
7200
7291
|
@Agent = agent
|
@@ -7540,8 +7631,8 @@ module TencentCloud
|
|
7540
7631
|
|
7541
7632
|
attr_accessor :Agent, :ReportId, :Operator, :ReportType
|
7542
7633
|
extend Gem::Deprecate
|
7543
|
-
deprecate :Operator, :none, 2025,
|
7544
|
-
deprecate :Operator=, :none, 2025,
|
7634
|
+
deprecate :Operator, :none, 2025, 5
|
7635
|
+
deprecate :Operator=, :none, 2025, 5
|
7545
7636
|
|
7546
7637
|
def initialize(agent=nil, reportid=nil, operator=nil, reporttype=nil)
|
7547
7638
|
@Agent = agent
|
@@ -7884,8 +7975,8 @@ module TencentCloud
|
|
7884
7975
|
|
7885
7976
|
attr_accessor :Agent, :FlowIds, :FlowGroupId, :Operator
|
7886
7977
|
extend Gem::Deprecate
|
7887
|
-
deprecate :Operator, :none, 2025,
|
7888
|
-
deprecate :Operator=, :none, 2025,
|
7978
|
+
deprecate :Operator, :none, 2025, 5
|
7979
|
+
deprecate :Operator=, :none, 2025, 5
|
7889
7980
|
|
7890
7981
|
def initialize(agent=nil, flowids=nil, flowgroupid=nil, operator=nil)
|
7891
7982
|
@Agent = agent
|
@@ -7971,8 +8062,8 @@ module TencentCloud
|
|
7971
8062
|
|
7972
8063
|
attr_accessor :Agent, :FlowIds, :Operator
|
7973
8064
|
extend Gem::Deprecate
|
7974
|
-
deprecate :Operator, :none, 2025,
|
7975
|
-
deprecate :Operator=, :none, 2025,
|
8065
|
+
deprecate :Operator, :none, 2025, 5
|
8066
|
+
deprecate :Operator=, :none, 2025, 5
|
7976
8067
|
|
7977
8068
|
def initialize(agent=nil, flowids=nil, operator=nil)
|
7978
8069
|
@Agent = agent
|
@@ -8099,8 +8190,8 @@ module TencentCloud
|
|
8099
8190
|
|
8100
8191
|
attr_accessor :Agent, :TemplateId, :ContentType, :TemplateIds, :Limit, :Offset, :TemplateName, :ChannelTemplateId, :QueryAllComponents, :WithPreviewUrl, :WithPdfUrl, :Operator, :UserFlowTypeId
|
8101
8192
|
extend Gem::Deprecate
|
8102
|
-
deprecate :Operator, :none, 2025,
|
8103
|
-
deprecate :Operator=, :none, 2025,
|
8193
|
+
deprecate :Operator, :none, 2025, 5
|
8194
|
+
deprecate :Operator=, :none, 2025, 5
|
8104
8195
|
|
8105
8196
|
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, userflowtypeid=nil)
|
8106
8197
|
@Agent = agent
|
@@ -8214,8 +8305,8 @@ module TencentCloud
|
|
8214
8305
|
|
8215
8306
|
attr_accessor :Agent, :StartDate, :EndDate, :NeedAggregate, :Limit, :Offset, :Operator
|
8216
8307
|
extend Gem::Deprecate
|
8217
|
-
deprecate :Operator, :none, 2025,
|
8218
|
-
deprecate :Operator=, :none, 2025,
|
8308
|
+
deprecate :Operator, :none, 2025, 5
|
8309
|
+
deprecate :Operator=, :none, 2025, 5
|
8219
8310
|
|
8220
8311
|
def initialize(agent=nil, startdate=nil, enddate=nil, needaggregate=nil, limit=nil, offset=nil, operator=nil)
|
8221
8312
|
@Agent = agent
|
@@ -8757,8 +8848,8 @@ module TencentCloud
|
|
8757
8848
|
|
8758
8849
|
attr_accessor :ReceiptId, :ProxyOrganizationOpenId, :ProxyOperatorOpenId, :ProxyOrganizationName, :Mobile, :SignOrder, :ApproveName, :ApproveStatus, :ApproveMessage, :ApproveTime, :ApproveType, :ApproverRoleName, :SignId, :RecipientId
|
8759
8850
|
extend Gem::Deprecate
|
8760
|
-
deprecate :ReceiptId, :none, 2025,
|
8761
|
-
deprecate :ReceiptId=, :none, 2025,
|
8851
|
+
deprecate :ReceiptId, :none, 2025, 5
|
8852
|
+
deprecate :ReceiptId=, :none, 2025, 5
|
8762
8853
|
|
8763
8854
|
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)
|
8764
8855
|
@ReceiptId = receiptid
|
@@ -8983,8 +9074,8 @@ module TencentCloud
|
|
8983
9074
|
|
8984
9075
|
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
|
8985
9076
|
extend Gem::Deprecate
|
8986
|
-
deprecate :CallbackUrl, :none, 2025,
|
8987
|
-
deprecate :CallbackUrl=, :none, 2025,
|
9077
|
+
deprecate :CallbackUrl, :none, 2025, 5
|
9078
|
+
deprecate :CallbackUrl=, :none, 2025, 5
|
8988
9079
|
|
8989
9080
|
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)
|
8990
9081
|
@Name = name
|
@@ -9301,8 +9392,8 @@ module TencentCloud
|
|
9301
9392
|
|
9302
9393
|
attr_accessor :FileIds, :FlowName, :FlowApprovers, :Deadline, :FlowDescription, :FlowType, :CallbackUrl, :CustomerData, :Unordered, :Components, :CustomShowMap, :NeedSignReview, :FlowDisplayType
|
9303
9394
|
extend Gem::Deprecate
|
9304
|
-
deprecate :CallbackUrl, :none, 2025,
|
9305
|
-
deprecate :CallbackUrl=, :none, 2025,
|
9395
|
+
deprecate :CallbackUrl, :none, 2025, 5
|
9396
|
+
deprecate :CallbackUrl=, :none, 2025, 5
|
9306
9397
|
|
9307
9398
|
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)
|
9308
9399
|
@FileIds = fileids
|
@@ -9566,8 +9657,8 @@ module TencentCloud
|
|
9566
9657
|
|
9567
9658
|
attr_accessor :FlowName, :Deadline, :TemplateId, :FlowApprovers, :FormFields, :CallbackUrl, :FlowType, :FlowDescription, :CustomerData, :CustomShowMap, :CcInfos, :NeedSignReview, :CcNotifyType, :AutoSignScene, :FlowDisplayType
|
9568
9659
|
extend Gem::Deprecate
|
9569
|
-
deprecate :CallbackUrl, :none, 2025,
|
9570
|
-
deprecate :CallbackUrl=, :none, 2025,
|
9660
|
+
deprecate :CallbackUrl, :none, 2025, 5
|
9661
|
+
deprecate :CallbackUrl=, :none, 2025, 5
|
9571
9662
|
|
9572
9663
|
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)
|
9573
9664
|
@FlowName = flowname
|
@@ -10221,8 +10312,8 @@ module TencentCloud
|
|
10221
10312
|
|
10222
10313
|
attr_accessor :Agent, :DownLoadFlows, :Operator
|
10223
10314
|
extend Gem::Deprecate
|
10224
|
-
deprecate :Operator, :none, 2025,
|
10225
|
-
deprecate :Operator=, :none, 2025,
|
10315
|
+
deprecate :Operator, :none, 2025, 5
|
10316
|
+
deprecate :Operator=, :none, 2025, 5
|
10226
10317
|
|
10227
10318
|
def initialize(agent=nil, downloadflows=nil, operator=nil)
|
10228
10319
|
@Agent = agent
|
@@ -10765,8 +10856,8 @@ module TencentCloud
|
|
10765
10856
|
|
10766
10857
|
attr_accessor :Agent, :OperateType, :TemplateId, :ProxyOrganizationOpenIds, :AuthTag, :Available, :Operator
|
10767
10858
|
extend Gem::Deprecate
|
10768
|
-
deprecate :Operator, :none, 2025,
|
10769
|
-
deprecate :Operator=, :none, 2025,
|
10859
|
+
deprecate :Operator, :none, 2025, 5
|
10860
|
+
deprecate :Operator=, :none, 2025, 5
|
10770
10861
|
|
10771
10862
|
def initialize(agent=nil, operatetype=nil, templateid=nil, proxyorganizationopenids=nil, authtag=nil, available=nil, operator=nil)
|
10772
10863
|
@Agent = agent
|
@@ -11038,10 +11129,10 @@ module TencentCloud
|
|
11038
11129
|
|
11039
11130
|
attr_accessor :OrganizationOpenId, :OrganizationId, :Channel, :ClientIp, :ProxyIp
|
11040
11131
|
extend Gem::Deprecate
|
11041
|
-
deprecate :ClientIp, :none, 2025,
|
11042
|
-
deprecate :ClientIp=, :none, 2025,
|
11043
|
-
deprecate :ProxyIp, :none, 2025,
|
11044
|
-
deprecate :ProxyIp=, :none, 2025,
|
11132
|
+
deprecate :ClientIp, :none, 2025, 5
|
11133
|
+
deprecate :ClientIp=, :none, 2025, 5
|
11134
|
+
deprecate :ProxyIp, :none, 2025, 5
|
11135
|
+
deprecate :ProxyIp=, :none, 2025, 5
|
11045
11136
|
|
11046
11137
|
def initialize(organizationopenid=nil, organizationid=nil, channel=nil, clientip=nil, proxyip=nil)
|
11047
11138
|
@OrganizationOpenId = organizationopenid
|
@@ -11253,8 +11344,8 @@ module TencentCloud
|
|
11253
11344
|
|
11254
11345
|
attr_accessor :Agent, :FlowInfos, :JumpUrl, :Operator
|
11255
11346
|
extend Gem::Deprecate
|
11256
|
-
deprecate :Operator, :none, 2025,
|
11257
|
-
deprecate :Operator=, :none, 2025,
|
11347
|
+
deprecate :Operator, :none, 2025, 5
|
11348
|
+
deprecate :Operator=, :none, 2025, 5
|
11258
11349
|
|
11259
11350
|
def initialize(agent=nil, flowinfos=nil, jumpurl=nil, operator=nil)
|
11260
11351
|
@Agent = agent
|
@@ -11886,8 +11977,8 @@ module TencentCloud
|
|
11886
11977
|
|
11887
11978
|
attr_accessor :SignUrl, :Deadline, :SignOrder, :SignId, :CustomUserId, :Name, :Mobile, :OrganizationName, :ApproverType, :IdCardNumber, :FlowId, :OpenId, :FlowGroupId, :SignQrcodeUrl
|
11888
11979
|
extend Gem::Deprecate
|
11889
|
-
deprecate :CustomUserId, :none, 2025,
|
11890
|
-
deprecate :CustomUserId=, :none, 2025,
|
11980
|
+
deprecate :CustomUserId, :none, 2025, 5
|
11981
|
+
deprecate :CustomUserId=, :none, 2025, 5
|
11891
11982
|
|
11892
11983
|
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)
|
11893
11984
|
@SignUrl = signurl
|
@@ -12055,8 +12146,8 @@ module TencentCloud
|
|
12055
12146
|
|
12056
12147
|
attr_accessor :Agent, :OperatorType, :ProxyOrganizationOperators, :Operator
|
12057
12148
|
extend Gem::Deprecate
|
12058
|
-
deprecate :Operator, :none, 2025,
|
12059
|
-
deprecate :Operator=, :none, 2025,
|
12149
|
+
deprecate :Operator, :none, 2025, 5
|
12150
|
+
deprecate :Operator=, :none, 2025, 5
|
12060
12151
|
|
12061
12152
|
def initialize(agent=nil, operatortype=nil, proxyorganizationoperators=nil, operator=nil)
|
12062
12153
|
@Agent = agent
|
@@ -12155,8 +12246,8 @@ module TencentCloud
|
|
12155
12246
|
|
12156
12247
|
attr_accessor :Agent, :ProxyOrganizationName, :BusinessLicense, :UniformSocialCreditCode, :ProxyLegalName, :Operator, :ProxyLegalIdCardType, :ProxyLegalIdCardNumber, :ProxyAddress
|
12157
12248
|
extend Gem::Deprecate
|
12158
|
-
deprecate :Operator, :none, 2025,
|
12159
|
-
deprecate :Operator=, :none, 2025,
|
12249
|
+
deprecate :Operator, :none, 2025, 5
|
12250
|
+
deprecate :Operator=, :none, 2025, 5
|
12160
12251
|
|
12161
12252
|
def initialize(agent=nil, proxyorganizationname=nil, businesslicense=nil, uniformsocialcreditcode=nil, proxylegalname=nil, operator=nil, proxylegalidcardtype=nil, proxylegalidcardnumber=nil, proxyaddress=nil)
|
12162
12253
|
@Agent = agent
|
@@ -12294,8 +12385,8 @@ module TencentCloud
|
|
12294
12385
|
|
12295
12386
|
attr_accessor :TemplateId, :TemplateName, :Description, :Components, :Recipients, :SignComponents, :TemplateType, :IsPromoter, :Creator, :CreatedOn, :PreviewUrl, :PdfUrl, :ChannelTemplateId, :ChannelTemplateName, :ChannelAutoSave, :TemplateVersion, :Available, :UserFlowType
|
12296
12387
|
extend Gem::Deprecate
|
12297
|
-
deprecate :IsPromoter, :none, 2025,
|
12298
|
-
deprecate :IsPromoter=, :none, 2025,
|
12388
|
+
deprecate :IsPromoter, :none, 2025, 5
|
12389
|
+
deprecate :IsPromoter=, :none, 2025, 5
|
12299
12390
|
|
12300
12391
|
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, userflowtype=nil)
|
12301
12392
|
@TemplateId = templateid
|
@@ -12439,8 +12530,8 @@ module TencentCloud
|
|
12439
12530
|
|
12440
12531
|
attr_accessor :Agent, :BusinessType, :FileInfos, :Operator
|
12441
12532
|
extend Gem::Deprecate
|
12442
|
-
deprecate :Operator, :none, 2025,
|
12443
|
-
deprecate :Operator=, :none, 2025,
|
12533
|
+
deprecate :Operator, :none, 2025, 5
|
12534
|
+
deprecate :Operator=, :none, 2025, 5
|
12444
12535
|
|
12445
12536
|
def initialize(agent=nil, businesstype=nil, fileinfos=nil, operator=nil)
|
12446
12537
|
@Agent = agent
|
@@ -12583,14 +12674,14 @@ module TencentCloud
|
|
12583
12674
|
|
12584
12675
|
attr_accessor :OpenId, :Channel, :CustomUserId, :ClientIp, :ProxyIp
|
12585
12676
|
extend Gem::Deprecate
|
12586
|
-
deprecate :Channel, :none, 2025,
|
12587
|
-
deprecate :Channel=, :none, 2025,
|
12588
|
-
deprecate :CustomUserId, :none, 2025,
|
12589
|
-
deprecate :CustomUserId=, :none, 2025,
|
12590
|
-
deprecate :ClientIp, :none, 2025,
|
12591
|
-
deprecate :ClientIp=, :none, 2025,
|
12592
|
-
deprecate :ProxyIp, :none, 2025,
|
12593
|
-
deprecate :ProxyIp=, :none, 2025,
|
12677
|
+
deprecate :Channel, :none, 2025, 5
|
12678
|
+
deprecate :Channel=, :none, 2025, 5
|
12679
|
+
deprecate :CustomUserId, :none, 2025, 5
|
12680
|
+
deprecate :CustomUserId=, :none, 2025, 5
|
12681
|
+
deprecate :ClientIp, :none, 2025, 5
|
12682
|
+
deprecate :ClientIp=, :none, 2025, 5
|
12683
|
+
deprecate :ProxyIp, :none, 2025, 5
|
12684
|
+
deprecate :ProxyIp=, :none, 2025, 5
|
12594
12685
|
|
12595
12686
|
def initialize(openid=nil, channel=nil, customuserid=nil, clientip=nil, proxyip=nil)
|
12596
12687
|
@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.1057
|
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-05-
|
11
|
+
date: 2025-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|