tencentcloud-sdk-ess 3.0.770 → 3.0.772
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201111/models.rb +105 -81
- 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: a90a6a975d4bd3af3496c4bc2317b18c60c3c1b8
|
4
|
+
data.tar.gz: 0ff772e49de047a4d38eba75f16a0023be86b8c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 779699f83f64df33cf1567936382b1a1e6e053ed4496e704a96ab445243a3df06db7025f31f14d8463ed820f5e183109646fe40e3cb852abccf6f01db2c6d20d
|
7
|
+
data.tar.gz: 7bb641ba8c147720b5425c75baed56fb23a745bb37531af32057e4010b6acbc5ae39cb9d59bdbf5ef1b07ad34594b2190ebfece85c661029034d4ae038b582f1
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.772
|
data/lib/v20201111/models.rb
CHANGED
@@ -54,12 +54,12 @@ module TencentCloud
|
|
54
54
|
|
55
55
|
attr_accessor :AppId, :ProxyAppId, :ProxyOrganizationId, :ProxyOperator
|
56
56
|
extend Gem::Deprecate
|
57
|
-
deprecate :AppId, :none, 2024,
|
58
|
-
deprecate :AppId=, :none, 2024,
|
59
|
-
deprecate :ProxyAppId, :none, 2024,
|
60
|
-
deprecate :ProxyAppId=, :none, 2024,
|
61
|
-
deprecate :ProxyOperator, :none, 2024,
|
62
|
-
deprecate :ProxyOperator=, :none, 2024,
|
57
|
+
deprecate :AppId, :none, 2024, 3
|
58
|
+
deprecate :AppId=, :none, 2024, 3
|
59
|
+
deprecate :ProxyAppId, :none, 2024, 3
|
60
|
+
deprecate :ProxyAppId=, :none, 2024, 3
|
61
|
+
deprecate :ProxyOperator, :none, 2024, 3
|
62
|
+
deprecate :ProxyOperator=, :none, 2024, 3
|
63
63
|
|
64
64
|
def initialize(appid=nil, proxyappid=nil, proxyorganizationid=nil, proxyoperator=nil)
|
65
65
|
@AppId = appid
|
@@ -220,10 +220,22 @@ module TencentCloud
|
|
220
220
|
|
221
221
|
# 注: `若不设置此参数,则默认使用合同的截止时间,此参数暂不支持合同组子合同`
|
222
222
|
# @type Deadline: Integer
|
223
|
+
# @param Components: 签署人在合同中的填写控件列表,列表中可支持下列多种填写控件,控件的详细定义参考开发者中心的Component结构体
|
224
|
+
# <ul><li>单行文本控件</li>
|
225
|
+
# <li>多行文本控件</li>
|
226
|
+
# <li>勾选框控件</li>
|
227
|
+
# <li>数字控件</li>
|
228
|
+
# <li>图片控件</li>
|
229
|
+
# <li>数据表格等填写控件</li></ul>
|
223
230
|
|
224
|
-
|
231
|
+
# 具体使用说明可参考[为签署方指定填写控件](https://qian.tencent.cn/developers/company/createFlowByFiles/#指定签署方填写控件)
|
225
232
|
|
226
|
-
|
233
|
+
# 注:`此参数仅在通过文件发起合同或者合同组时生效`
|
234
|
+
# @type Components: Array
|
235
|
+
|
236
|
+
attr_accessor :ApproverType, :ApproverName, :ApproverMobile, :OrganizationName, :SignComponents, :ApproverIdCardType, :ApproverIdCardNumber, :NotifyType, :ApproverRole, :ApproverRoleName, :VerifyChannel, :PreReadTime, :UserId, :ApproverSource, :CustomApproverTag, :ApproverOption, :ApproverVerifyTypes, :ApproverSignTypes, :ApproverNeedSignReview, :AddSignComponentsLimits, :SignInstructionContent, :Deadline, :Components
|
237
|
+
|
238
|
+
def initialize(approvertype=nil, approvername=nil, approvermobile=nil, organizationname=nil, signcomponents=nil, approveridcardtype=nil, approveridcardnumber=nil, notifytype=nil, approverrole=nil, approverrolename=nil, verifychannel=nil, prereadtime=nil, userid=nil, approversource=nil, customapprovertag=nil, approveroption=nil, approververifytypes=nil, approversigntypes=nil, approverneedsignreview=nil, addsigncomponentslimits=nil, signinstructioncontent=nil, deadline=nil, components=nil)
|
227
239
|
@ApproverType = approvertype
|
228
240
|
@ApproverName = approvername
|
229
241
|
@ApproverMobile = approvermobile
|
@@ -246,6 +258,7 @@ module TencentCloud
|
|
246
258
|
@AddSignComponentsLimits = addsigncomponentslimits
|
247
259
|
@SignInstructionContent = signinstructioncontent
|
248
260
|
@Deadline = deadline
|
261
|
+
@Components = components
|
249
262
|
end
|
250
263
|
|
251
264
|
def deserialize(params)
|
@@ -288,6 +301,14 @@ module TencentCloud
|
|
288
301
|
end
|
289
302
|
@SignInstructionContent = params['SignInstructionContent']
|
290
303
|
@Deadline = params['Deadline']
|
304
|
+
unless params['Components'].nil?
|
305
|
+
@Components = []
|
306
|
+
params['Components'].each do |i|
|
307
|
+
component_tmp = Component.new
|
308
|
+
component_tmp.deserialize(i)
|
309
|
+
@Components << component_tmp
|
310
|
+
end
|
311
|
+
end
|
291
312
|
end
|
292
313
|
end
|
293
314
|
|
@@ -498,8 +519,8 @@ module TencentCloud
|
|
498
519
|
|
499
520
|
attr_accessor :UserInfo, :CertInfoCallback, :UserDefineSeal, :SealImgCallback, :CallbackUrl, :VerifyChannels, :LicenseType
|
500
521
|
extend Gem::Deprecate
|
501
|
-
deprecate :CallbackUrl, :none, 2024,
|
502
|
-
deprecate :CallbackUrl=, :none, 2024,
|
522
|
+
deprecate :CallbackUrl, :none, 2024, 3
|
523
|
+
deprecate :CallbackUrl=, :none, 2024, 3
|
503
524
|
|
504
525
|
def initialize(userinfo=nil, certinfocallback=nil, userdefineseal=nil, sealimgcallback=nil, callbackurl=nil, verifychannels=nil, licensetype=nil)
|
505
526
|
@UserInfo = userinfo
|
@@ -690,8 +711,8 @@ module TencentCloud
|
|
690
711
|
|
691
712
|
attr_accessor :CallbackUrl, :Token, :CallbackKey, :CallbackToken
|
692
713
|
extend Gem::Deprecate
|
693
|
-
deprecate :Token, :none, 2024,
|
694
|
-
deprecate :Token=, :none, 2024,
|
714
|
+
deprecate :Token, :none, 2024, 3
|
715
|
+
deprecate :Token=, :none, 2024, 3
|
695
716
|
|
696
717
|
def initialize(callbackurl=nil, token=nil, callbackkey=nil, callbacktoken=nil)
|
697
718
|
@CallbackUrl = callbackurl
|
@@ -721,12 +742,12 @@ module TencentCloud
|
|
721
742
|
|
722
743
|
attr_accessor :ApplicationId, :OrganizationId, :OperatorId, :SubOrganizationId
|
723
744
|
extend Gem::Deprecate
|
724
|
-
deprecate :ApplicationId, :none, 2024,
|
725
|
-
deprecate :ApplicationId=, :none, 2024,
|
726
|
-
deprecate :OrganizationId, :none, 2024,
|
727
|
-
deprecate :OrganizationId=, :none, 2024,
|
728
|
-
deprecate :SubOrganizationId, :none, 2024,
|
729
|
-
deprecate :SubOrganizationId=, :none, 2024,
|
745
|
+
deprecate :ApplicationId, :none, 2024, 3
|
746
|
+
deprecate :ApplicationId=, :none, 2024, 3
|
747
|
+
deprecate :OrganizationId, :none, 2024, 3
|
748
|
+
deprecate :OrganizationId=, :none, 2024, 3
|
749
|
+
deprecate :SubOrganizationId, :none, 2024, 3
|
750
|
+
deprecate :SubOrganizationId=, :none, 2024, 3
|
730
751
|
|
731
752
|
def initialize(applicationid=nil, organizationid=nil, operatorid=nil, suborganizationid=nil)
|
732
753
|
@ApplicationId = applicationid
|
@@ -1089,8 +1110,8 @@ module TencentCloud
|
|
1089
1110
|
# <li> <b>SELECTOR</b> : 选项值</li>
|
1090
1111
|
# <li> <b>DYNAMIC_TABLE</b> - 传入json格式的表格内容,详见说明:[数据表格](https://qian.tencent.com/developers/company/dynamic_table)</li>
|
1091
1112
|
# <li> <b>DATE</b> : 默认是格式化为xxxx年xx月xx日</li>
|
1092
|
-
# <li> <b>SIGN_SEAL</b> : 印章ID
|
1093
|
-
# <li> <b>SIGN_PAGING_SEAL</b> : 可以指定印章ID
|
1113
|
+
# <li> <b>SIGN_SEAL</b> : 印章ID,于控制台查询获取, [点击查看在控制台上位置](https://qcloudimg.tencent-cloud.cn/raw/f7b0f2ea4a534aada4b893dbf9671eae.png)</li>
|
1114
|
+
# <li> <b>SIGN_PAGING_SEAL</b> : 可以指定印章ID,于控制台查询获取, [点击查看在控制台上位置](https://qcloudimg.tencent-cloud.cn/raw/f7b0f2ea4a534aada4b893dbf9671eae.png)</li></ul>
|
1094
1115
|
|
1095
1116
|
|
1096
1117
|
# <b>控件值约束说明</b>:
|
@@ -1574,8 +1595,8 @@ module TencentCloud
|
|
1574
1595
|
|
1575
1596
|
attr_accessor :ResourceType, :ResourceName, :ResourceId, :Operator, :Agent, :Organization
|
1576
1597
|
extend Gem::Deprecate
|
1577
|
-
deprecate :Organization, :none, 2024,
|
1578
|
-
deprecate :Organization=, :none, 2024,
|
1598
|
+
deprecate :Organization, :none, 2024, 3
|
1599
|
+
deprecate :Organization=, :none, 2024, 3
|
1579
1600
|
|
1580
1601
|
def initialize(resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, agent=nil, organization=nil)
|
1581
1602
|
@ResourceType = resourcetype
|
@@ -2274,8 +2295,8 @@ module TencentCloud
|
|
2274
2295
|
|
2275
2296
|
attr_accessor :ReportId, :Status, :ReportUrl, :RequestId
|
2276
2297
|
extend Gem::Deprecate
|
2277
|
-
deprecate :ReportUrl, :none, 2024,
|
2278
|
-
deprecate :ReportUrl=, :none, 2024,
|
2298
|
+
deprecate :ReportUrl, :none, 2024, 3
|
2299
|
+
deprecate :ReportUrl=, :none, 2024, 3
|
2279
2300
|
|
2280
2301
|
def initialize(reportid=nil, status=nil, reporturl=nil, requestid=nil)
|
2281
2302
|
@ReportId = reportid
|
@@ -2671,7 +2692,10 @@ module TencentCloud
|
|
2671
2692
|
# @type FlowName: String
|
2672
2693
|
# @param Approvers: 合同流程的参与方列表,最多可支持50个参与方,可在列表中指定企业B端签署方和个人C端签署方的联系和认证方式等信息,具体定义可以参考开发者中心的ApproverInfo结构体。
|
2673
2694
|
|
2674
|
-
# 注:
|
2695
|
+
# 注:
|
2696
|
+
# <font color="red" > <b> 在发起流程时,需要保证 approver 中的顺序与模板定义顺序一致,否则会发起失败。
|
2697
|
+
# 例如,如果模板中定义的第一个参与人是个人用户,第二个参与人是企业员工,则在 approver 中传参时,第一个也必须是个人用户,第二个参与人必须是企业员工。</b></font>
|
2698
|
+
# 
|
2675
2699
|
# @type Approvers: Array
|
2676
2700
|
# @param FlowDescription: 合同流程描述信息(可自定义此描述),最大长度1000个字符。
|
2677
2701
|
# @type FlowDescription: String
|
@@ -2736,10 +2760,10 @@ module TencentCloud
|
|
2736
2760
|
|
2737
2761
|
attr_accessor :Operator, :FlowName, :Approvers, :FlowDescription, :FlowType, :ClientToken, :DeadLine, :RemindedOn, :UserData, :Unordered, :CustomShowMap, :NeedSignReview, :Agent, :CcInfos, :AutoSignScene, :RelatedFlowId, :CallbackUrl
|
2738
2762
|
extend Gem::Deprecate
|
2739
|
-
deprecate :RelatedFlowId, :none, 2024,
|
2740
|
-
deprecate :RelatedFlowId=, :none, 2024,
|
2741
|
-
deprecate :CallbackUrl, :none, 2024,
|
2742
|
-
deprecate :CallbackUrl=, :none, 2024,
|
2763
|
+
deprecate :RelatedFlowId, :none, 2024, 3
|
2764
|
+
deprecate :RelatedFlowId=, :none, 2024, 3
|
2765
|
+
deprecate :CallbackUrl, :none, 2024, 3
|
2766
|
+
deprecate :CallbackUrl=, :none, 2024, 3
|
2743
2767
|
|
2744
2768
|
def initialize(operator=nil, flowname=nil, approvers=nil, flowdescription=nil, flowtype=nil, clienttoken=nil, deadline=nil, remindedon=nil, userdata=nil, unordered=nil, customshowmap=nil, needsignreview=nil, agent=nil, ccinfos=nil, autosignscene=nil, relatedflowid=nil, callbackurl=nil)
|
2745
2769
|
@Operator = operator
|
@@ -2937,8 +2961,8 @@ module TencentCloud
|
|
2937
2961
|
|
2938
2962
|
attr_accessor :FlowId, :Operator, :Agent, :FlowApproverInfos, :Organization, :JumpUrl, :UrlType
|
2939
2963
|
extend Gem::Deprecate
|
2940
|
-
deprecate :Organization, :none, 2024,
|
2941
|
-
deprecate :Organization=, :none, 2024,
|
2964
|
+
deprecate :Organization, :none, 2024, 3
|
2965
|
+
deprecate :Organization=, :none, 2024, 3
|
2942
2966
|
|
2943
2967
|
def initialize(flowid=nil, operator=nil, agent=nil, flowapproverinfos=nil, organization=nil, jumpurl=nil, urltype=nil)
|
2944
2968
|
@FlowId = flowid
|
@@ -3330,10 +3354,10 @@ module TencentCloud
|
|
3330
3354
|
|
3331
3355
|
attr_accessor :Operator, :TemplateId, :FlowName, :MaxFlowNum, :QrEffectiveDay, :FlowEffectiveDay, :Restrictions, :UserData, :CallbackUrl, :Agent, :ApproverRestrictions, :ApproverComponentLimitTypes
|
3332
3356
|
extend Gem::Deprecate
|
3333
|
-
deprecate :CallbackUrl, :none, 2024,
|
3334
|
-
deprecate :CallbackUrl=, :none, 2024,
|
3335
|
-
deprecate :ApproverRestrictions, :none, 2024,
|
3336
|
-
deprecate :ApproverRestrictions=, :none, 2024,
|
3357
|
+
deprecate :CallbackUrl, :none, 2024, 3
|
3358
|
+
deprecate :CallbackUrl=, :none, 2024, 3
|
3359
|
+
deprecate :ApproverRestrictions, :none, 2024, 3
|
3360
|
+
deprecate :ApproverRestrictions=, :none, 2024, 3
|
3337
3361
|
|
3338
3362
|
def initialize(operator=nil, templateid=nil, flowname=nil, maxflownum=nil, qreffectiveday=nil, floweffectiveday=nil, restrictions=nil, userdata=nil, callbackurl=nil, agent=nil, approverrestrictions=nil, approvercomponentlimittypes=nil)
|
3339
3363
|
@Operator = operator
|
@@ -3889,8 +3913,8 @@ module TencentCloud
|
|
3889
3913
|
|
3890
3914
|
attr_accessor :UserName, :IdCardNumber, :SealName, :Operator, :IdCardType, :SealImage, :SealImageCompress, :Mobile, :EnableAutoSign, :SealColor, :ProcessSeal, :FileId, :Agent, :LicenseType, :SceneKey
|
3891
3915
|
extend Gem::Deprecate
|
3892
|
-
deprecate :SealImage, :none, 2024,
|
3893
|
-
deprecate :SealImage=, :none, 2024,
|
3916
|
+
deprecate :SealImage, :none, 2024, 3
|
3917
|
+
deprecate :SealImage=, :none, 2024, 3
|
3894
3918
|
|
3895
3919
|
def initialize(username=nil, idcardnumber=nil, sealname=nil, operator=nil, idcardtype=nil, sealimage=nil, sealimagecompress=nil, mobile=nil, enableautosign=nil, sealcolor=nil, processseal=nil, fileid=nil, agent=nil, licensetype=nil, scenekey=nil)
|
3896
3920
|
@UserName = username
|
@@ -5308,10 +5332,10 @@ module TencentCloud
|
|
5308
5332
|
|
5309
5333
|
attr_accessor :Operator, :BusinessType, :BusinessIds, :FileName, :FileType, :Offset, :Limit, :UrlTtl, :CcToken, :Scene, :Agent
|
5310
5334
|
extend Gem::Deprecate
|
5311
|
-
deprecate :CcToken, :none, 2024,
|
5312
|
-
deprecate :CcToken=, :none, 2024,
|
5313
|
-
deprecate :Scene, :none, 2024,
|
5314
|
-
deprecate :Scene=, :none, 2024,
|
5335
|
+
deprecate :CcToken, :none, 2024, 3
|
5336
|
+
deprecate :CcToken=, :none, 2024, 3
|
5337
|
+
deprecate :Scene, :none, 2024, 3
|
5338
|
+
deprecate :Scene=, :none, 2024, 3
|
5315
5339
|
|
5316
5340
|
def initialize(operator=nil, businesstype=nil, businessids=nil, filename=nil, filetype=nil, offset=nil, limit=nil, urlttl=nil, cctoken=nil, scene=nil, agent=nil)
|
5317
5341
|
@Operator = operator
|
@@ -5691,12 +5715,12 @@ module TencentCloud
|
|
5691
5715
|
|
5692
5716
|
attr_accessor :Operator, :Agent, :ContentType, :Filters, :Offset, :Limit, :ApplicationId, :IsChannel, :Organization, :GenerateSource, :WithPreviewUrl
|
5693
5717
|
extend Gem::Deprecate
|
5694
|
-
deprecate :IsChannel, :none, 2024,
|
5695
|
-
deprecate :IsChannel=, :none, 2024,
|
5696
|
-
deprecate :Organization, :none, 2024,
|
5697
|
-
deprecate :Organization=, :none, 2024,
|
5698
|
-
deprecate :GenerateSource, :none, 2024,
|
5699
|
-
deprecate :GenerateSource=, :none, 2024,
|
5718
|
+
deprecate :IsChannel, :none, 2024, 3
|
5719
|
+
deprecate :IsChannel=, :none, 2024, 3
|
5720
|
+
deprecate :Organization, :none, 2024, 3
|
5721
|
+
deprecate :Organization=, :none, 2024, 3
|
5722
|
+
deprecate :GenerateSource, :none, 2024, 3
|
5723
|
+
deprecate :GenerateSource=, :none, 2024, 3
|
5700
5724
|
|
5701
5725
|
def initialize(operator=nil, agent=nil, contenttype=nil, filters=nil, offset=nil, limit=nil, applicationid=nil, ischannel=nil, organization=nil, generatesource=nil, withpreviewurl=nil)
|
5702
5726
|
@Operator = operator
|
@@ -6124,8 +6148,8 @@ module TencentCloud
|
|
6124
6148
|
|
6125
6149
|
attr_accessor :Total, :JoinedTotal, :ActivedTotal, :ExportUrl, :List, :ActivatedTotal, :RequestId
|
6126
6150
|
extend Gem::Deprecate
|
6127
|
-
deprecate :ActivedTotal, :none, 2024,
|
6128
|
-
deprecate :ActivedTotal=, :none, 2024,
|
6151
|
+
deprecate :ActivedTotal, :none, 2024, 3
|
6152
|
+
deprecate :ActivedTotal=, :none, 2024, 3
|
6129
6153
|
|
6130
6154
|
def initialize(total=nil, joinedtotal=nil, activedtotal=nil, exporturl=nil, list=nil, activatedtotal=nil, requestid=nil)
|
6131
6155
|
@Total = total
|
@@ -7240,8 +7264,8 @@ module TencentCloud
|
|
7240
7264
|
|
7241
7265
|
attr_accessor :ApproverType, :OrganizationName, :ApproverName, :ApproverMobile, :ApproverIdCardType, :ApproverIdCardNumber, :RecipientId, :VerifyChannel, :NotifyType, :IsFullText, :PreReadTime, :UserId, :Required, :ApproverSource, :CustomApproverTag, :RegisterInfo, :ApproverOption, :JumpUrl, :SignId, :ApproverNeedSignReview, :SignComponents, :Components, :ComponentLimitType, :ApproverVerifyTypes, :ApproverSignTypes, :SignTypeSelector, :Deadline
|
7242
7266
|
extend Gem::Deprecate
|
7243
|
-
deprecate :JumpUrl, :none, 2024,
|
7244
|
-
deprecate :JumpUrl=, :none, 2024,
|
7267
|
+
deprecate :JumpUrl, :none, 2024, 3
|
7268
|
+
deprecate :JumpUrl=, :none, 2024, 3
|
7245
7269
|
|
7246
7270
|
def initialize(approvertype=nil, organizationname=nil, approvername=nil, approvermobile=nil, approveridcardtype=nil, approveridcardnumber=nil, recipientid=nil, verifychannel=nil, notifytype=nil, isfulltext=nil, prereadtime=nil, userid=nil, required=nil, approversource=nil, customapprovertag=nil, registerinfo=nil, approveroption=nil, jumpurl=nil, signid=nil, approverneedsignreview=nil, signcomponents=nil, components=nil, componentlimittype=nil, approververifytypes=nil, approversigntypes=nil, signtypeselector=nil, deadline=nil)
|
7247
7271
|
@ApproverType = approvertype
|
@@ -7451,8 +7475,8 @@ module TencentCloud
|
|
7451
7475
|
|
7452
7476
|
attr_accessor :FlowName, :Approvers, :FileIds, :TemplateId, :FlowType, :FlowDescription, :Deadline, :CallbackUrl, :UserData, :Unordered, :Components, :NeedSignReview, :AutoSignScene
|
7453
7477
|
extend Gem::Deprecate
|
7454
|
-
deprecate :CallbackUrl, :none, 2024,
|
7455
|
-
deprecate :CallbackUrl=, :none, 2024,
|
7478
|
+
deprecate :CallbackUrl, :none, 2024, 3
|
7479
|
+
deprecate :CallbackUrl=, :none, 2024, 3
|
7456
7480
|
|
7457
7481
|
def initialize(flowname=nil, approvers=nil, fileids=nil, templateid=nil, flowtype=nil, flowdescription=nil, deadline=nil, callbackurl=nil, userdata=nil, unordered=nil, components=nil, needsignreview=nil, autosignscene=nil)
|
7458
7482
|
@FlowName = flowname
|
@@ -7838,8 +7862,8 @@ module TencentCloud
|
|
7838
7862
|
|
7839
7863
|
attr_accessor :TaskId, :Operator, :Agent, :Organization
|
7840
7864
|
extend Gem::Deprecate
|
7841
|
-
deprecate :Organization, :none, 2024,
|
7842
|
-
deprecate :Organization=, :none, 2024,
|
7865
|
+
deprecate :Organization, :none, 2024, 3
|
7866
|
+
deprecate :Organization=, :none, 2024, 3
|
7843
7867
|
|
7844
7868
|
def initialize(taskid=nil, operator=nil, agent=nil, organization=nil)
|
7845
7869
|
@TaskId = taskid
|
@@ -8625,16 +8649,16 @@ module TencentCloud
|
|
8625
8649
|
|
8626
8650
|
attr_accessor :OrganizationId, :Channel, :OrganizationOpenId, :ClientIp, :ProxyIp
|
8627
8651
|
extend Gem::Deprecate
|
8628
|
-
deprecate :OrganizationId, :none, 2024,
|
8629
|
-
deprecate :OrganizationId=, :none, 2024,
|
8630
|
-
deprecate :Channel, :none, 2024,
|
8631
|
-
deprecate :Channel=, :none, 2024,
|
8632
|
-
deprecate :OrganizationOpenId, :none, 2024,
|
8633
|
-
deprecate :OrganizationOpenId=, :none, 2024,
|
8634
|
-
deprecate :ClientIp, :none, 2024,
|
8635
|
-
deprecate :ClientIp=, :none, 2024,
|
8636
|
-
deprecate :ProxyIp, :none, 2024,
|
8637
|
-
deprecate :ProxyIp=, :none, 2024,
|
8652
|
+
deprecate :OrganizationId, :none, 2024, 3
|
8653
|
+
deprecate :OrganizationId=, :none, 2024, 3
|
8654
|
+
deprecate :Channel, :none, 2024, 3
|
8655
|
+
deprecate :Channel=, :none, 2024, 3
|
8656
|
+
deprecate :OrganizationOpenId, :none, 2024, 3
|
8657
|
+
deprecate :OrganizationOpenId=, :none, 2024, 3
|
8658
|
+
deprecate :ClientIp, :none, 2024, 3
|
8659
|
+
deprecate :ClientIp=, :none, 2024, 3
|
8660
|
+
deprecate :ProxyIp, :none, 2024, 3
|
8661
|
+
deprecate :ProxyIp=, :none, 2024, 3
|
8638
8662
|
|
8639
8663
|
def initialize(organizationid=nil, channel=nil, organizationopenid=nil, clientip=nil, proxyip=nil)
|
8640
8664
|
@OrganizationId = organizationid
|
@@ -8982,8 +9006,8 @@ module TencentCloud
|
|
8982
9006
|
|
8983
9007
|
attr_accessor :LegalName, :Uscc, :UnifiedSocialCreditCode
|
8984
9008
|
extend Gem::Deprecate
|
8985
|
-
deprecate :Uscc, :none, 2024,
|
8986
|
-
deprecate :Uscc=, :none, 2024,
|
9009
|
+
deprecate :Uscc, :none, 2024, 3
|
9010
|
+
deprecate :Uscc=, :none, 2024, 3
|
8987
9011
|
|
8988
9012
|
def initialize(legalname=nil, uscc=nil, unifiedsocialcreditcode=nil)
|
8989
9013
|
@LegalName = legalname
|
@@ -9341,8 +9365,8 @@ module TencentCloud
|
|
9341
9365
|
|
9342
9366
|
attr_accessor :Operator, :FlowId, :ClientToken, :Agent, :CcNotifyType
|
9343
9367
|
extend Gem::Deprecate
|
9344
|
-
deprecate :ClientToken, :none, 2024,
|
9345
|
-
deprecate :ClientToken=, :none, 2024,
|
9368
|
+
deprecate :ClientToken, :none, 2024, 3
|
9369
|
+
deprecate :ClientToken=, :none, 2024, 3
|
9346
9370
|
|
9347
9371
|
def initialize(operator=nil, flowid=nil, clienttoken=nil, agent=nil, ccnotifytype=nil)
|
9348
9372
|
@Operator = operator
|
@@ -9564,8 +9588,8 @@ module TencentCloud
|
|
9564
9588
|
|
9565
9589
|
attr_accessor :TemplateId, :TemplateName, :Description, :DocumentResourceIds, :FileInfos, :AttachmentResourceIds, :SignOrder, :Recipients, :Components, :SignComponents, :Status, :Creator, :CreatedOn, :Promoter, :TemplateType, :Available, :OrganizationId, :PreviewUrl, :TemplateVersion, :Published, :ShareTemplateId, :TemplateSeals, :Seals
|
9566
9590
|
extend Gem::Deprecate
|
9567
|
-
deprecate :Seals, :none, 2024,
|
9568
|
-
deprecate :Seals=, :none, 2024,
|
9591
|
+
deprecate :Seals, :none, 2024, 3
|
9592
|
+
deprecate :Seals=, :none, 2024, 3
|
9569
9593
|
|
9570
9594
|
def initialize(templateid=nil, templatename=nil, description=nil, documentresourceids=nil, fileinfos=nil, attachmentresourceids=nil, signorder=nil, recipients=nil, components=nil, signcomponents=nil, status=nil, creator=nil, createdon=nil, promoter=nil, templatetype=nil, available=nil, organizationid=nil, previewurl=nil, templateversion=nil, published=nil, sharetemplateid=nil, templateseals=nil, seals=nil)
|
9571
9595
|
@TemplateId = templateid
|
@@ -9881,8 +9905,8 @@ module TencentCloud
|
|
9881
9905
|
|
9882
9906
|
attr_accessor :BusinessType, :Caller, :FileInfos, :FileType, :CoverRect, :CustomIds, :FileUrls, :Agent
|
9883
9907
|
extend Gem::Deprecate
|
9884
|
-
deprecate :FileUrls, :none, 2024,
|
9885
|
-
deprecate :FileUrls=, :none, 2024,
|
9908
|
+
deprecate :FileUrls, :none, 2024, 3
|
9909
|
+
deprecate :FileUrls=, :none, 2024, 3
|
9886
9910
|
|
9887
9911
|
def initialize(businesstype=nil, caller=nil, fileinfos=nil, filetype=nil, coverrect=nil, customids=nil, fileurls=nil, agent=nil)
|
9888
9912
|
@BusinessType = businesstype
|
@@ -9960,14 +9984,14 @@ module TencentCloud
|
|
9960
9984
|
|
9961
9985
|
attr_accessor :UserId, :Channel, :OpenId, :ClientIp, :ProxyIp
|
9962
9986
|
extend Gem::Deprecate
|
9963
|
-
deprecate :Channel, :none, 2024,
|
9964
|
-
deprecate :Channel=, :none, 2024,
|
9965
|
-
deprecate :OpenId, :none, 2024,
|
9966
|
-
deprecate :OpenId=, :none, 2024,
|
9967
|
-
deprecate :ClientIp, :none, 2024,
|
9968
|
-
deprecate :ClientIp=, :none, 2024,
|
9969
|
-
deprecate :ProxyIp, :none, 2024,
|
9970
|
-
deprecate :ProxyIp=, :none, 2024,
|
9987
|
+
deprecate :Channel, :none, 2024, 3
|
9988
|
+
deprecate :Channel=, :none, 2024, 3
|
9989
|
+
deprecate :OpenId, :none, 2024, 3
|
9990
|
+
deprecate :OpenId=, :none, 2024, 3
|
9991
|
+
deprecate :ClientIp, :none, 2024, 3
|
9992
|
+
deprecate :ClientIp=, :none, 2024, 3
|
9993
|
+
deprecate :ProxyIp, :none, 2024, 3
|
9994
|
+
deprecate :ProxyIp=, :none, 2024, 3
|
9971
9995
|
|
9972
9996
|
def initialize(userid=nil, channel=nil, openid=nil, clientip=nil, proxyip=nil)
|
9973
9997
|
@UserId = userid
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ess
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.772
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-02-
|
11
|
+
date: 2024-02-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|