tencentcloud-sdk-ess 3.0.1174 → 3.0.1176
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 +223 -101
- 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: 0e360d6be0fc2b794a042b054088d376aee7b7cc
|
|
4
|
+
data.tar.gz: 42742f0639b05d22b68b7cbeb7e1f96ea8d76c2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8299cd8f5eed70b69b12ef5ea9bba43de022d8d0ffa86870fa215dfb18c9e282f705272b478b981e2428ab4f77272b3b31a6d270e47376345dc7e363d50302c9
|
|
7
|
+
data.tar.gz: e3dc34058d5a4043015fb3efbc35fe0548072e7fc35edfb6ba70d712f24a9338352eff99a5effa97f57b937842b4737b47bce0843dea6d74d06c473f758b9b1e
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1176
|
data/lib/v20201111/models.rb
CHANGED
|
@@ -105,12 +105,12 @@ module TencentCloud
|
|
|
105
105
|
|
|
106
106
|
attr_accessor :AppId, :ProxyAppId, :ProxyOrganizationId, :ProxyOperator
|
|
107
107
|
extend Gem::Deprecate
|
|
108
|
-
deprecate :AppId, :none, 2025,
|
|
109
|
-
deprecate :AppId=, :none, 2025,
|
|
110
|
-
deprecate :ProxyAppId, :none, 2025,
|
|
111
|
-
deprecate :ProxyAppId=, :none, 2025,
|
|
112
|
-
deprecate :ProxyOperator, :none, 2025,
|
|
113
|
-
deprecate :ProxyOperator=, :none, 2025,
|
|
108
|
+
deprecate :AppId, :none, 2025, 12
|
|
109
|
+
deprecate :AppId=, :none, 2025, 12
|
|
110
|
+
deprecate :ProxyAppId, :none, 2025, 12
|
|
111
|
+
deprecate :ProxyAppId=, :none, 2025, 12
|
|
112
|
+
deprecate :ProxyOperator, :none, 2025, 12
|
|
113
|
+
deprecate :ProxyOperator=, :none, 2025, 12
|
|
114
114
|
|
|
115
115
|
def initialize(appid=nil, proxyappid=nil, proxyorganizationid=nil, proxyoperator=nil)
|
|
116
116
|
@AppId = appid
|
|
@@ -310,10 +310,18 @@ module TencentCloud
|
|
|
310
310
|
# @type SignEndpoints: Array
|
|
311
311
|
# @param RegisterInfo: 快速注册相关信息
|
|
312
312
|
# @type RegisterInfo: :class:`Tencentcloud::Ess.v20201111.models.RegisterInfo`
|
|
313
|
+
# @param NotSaveContact: 是否不保存联系人
|
|
314
|
+
# 默认 false 保存联系人 true 不保存联系人
|
|
313
315
|
|
|
314
|
-
|
|
316
|
+
# 设置这个参数为保存联系人的时候,他方企业签署人会被保存进发起人的联系人中。
|
|
317
|
+
# 联系人查看可登录[电子签控制台](https://test.qian.tencent.cn/console/) 进行查看。
|
|
318
|
+
# 如下图位置:
|
|
319
|
+
# 
|
|
320
|
+
# @type NotSaveContact: Boolean
|
|
315
321
|
|
|
316
|
-
|
|
322
|
+
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, :SignEndpoints, :RegisterInfo, :NotSaveContact
|
|
323
|
+
|
|
324
|
+
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, signendpoints=nil, registerinfo=nil, notsavecontact=nil)
|
|
317
325
|
@ApproverType = approvertype
|
|
318
326
|
@ApproverName = approvername
|
|
319
327
|
@ApproverMobile = approvermobile
|
|
@@ -339,6 +347,7 @@ module TencentCloud
|
|
|
339
347
|
@Components = components
|
|
340
348
|
@SignEndpoints = signendpoints
|
|
341
349
|
@RegisterInfo = registerinfo
|
|
350
|
+
@NotSaveContact = notsavecontact
|
|
342
351
|
end
|
|
343
352
|
|
|
344
353
|
def deserialize(params)
|
|
@@ -394,6 +403,7 @@ module TencentCloud
|
|
|
394
403
|
@RegisterInfo = RegisterInfo.new
|
|
395
404
|
@RegisterInfo.deserialize(params['RegisterInfo'])
|
|
396
405
|
end
|
|
406
|
+
@NotSaveContact = params['NotSaveContact']
|
|
397
407
|
end
|
|
398
408
|
end
|
|
399
409
|
|
|
@@ -754,8 +764,8 @@ module TencentCloud
|
|
|
754
764
|
|
|
755
765
|
attr_accessor :UserInfo, :CertInfoCallback, :UserDefineSeal, :SealImgCallback, :CallbackUrl, :VerifyChannels, :LicenseType, :JumpUrl
|
|
756
766
|
extend Gem::Deprecate
|
|
757
|
-
deprecate :CallbackUrl, :none, 2025,
|
|
758
|
-
deprecate :CallbackUrl=, :none, 2025,
|
|
767
|
+
deprecate :CallbackUrl, :none, 2025, 12
|
|
768
|
+
deprecate :CallbackUrl=, :none, 2025, 12
|
|
759
769
|
|
|
760
770
|
def initialize(userinfo=nil, certinfocallback=nil, userdefineseal=nil, sealimgcallback=nil, callbackurl=nil, verifychannels=nil, licensetype=nil, jumpurl=nil)
|
|
761
771
|
@UserInfo = userinfo
|
|
@@ -997,8 +1007,8 @@ module TencentCloud
|
|
|
997
1007
|
|
|
998
1008
|
attr_accessor :CallbackUrl, :Token, :CallbackKey, :CallbackToken
|
|
999
1009
|
extend Gem::Deprecate
|
|
1000
|
-
deprecate :Token, :none, 2025,
|
|
1001
|
-
deprecate :Token=, :none, 2025,
|
|
1010
|
+
deprecate :Token, :none, 2025, 12
|
|
1011
|
+
deprecate :Token=, :none, 2025, 12
|
|
1002
1012
|
|
|
1003
1013
|
def initialize(callbackurl=nil, token=nil, callbackkey=nil, callbacktoken=nil)
|
|
1004
1014
|
@CallbackUrl = callbackurl
|
|
@@ -1028,12 +1038,12 @@ module TencentCloud
|
|
|
1028
1038
|
|
|
1029
1039
|
attr_accessor :ApplicationId, :OrganizationId, :OperatorId, :SubOrganizationId
|
|
1030
1040
|
extend Gem::Deprecate
|
|
1031
|
-
deprecate :ApplicationId, :none, 2025,
|
|
1032
|
-
deprecate :ApplicationId=, :none, 2025,
|
|
1033
|
-
deprecate :OrganizationId, :none, 2025,
|
|
1034
|
-
deprecate :OrganizationId=, :none, 2025,
|
|
1035
|
-
deprecate :SubOrganizationId, :none, 2025,
|
|
1036
|
-
deprecate :SubOrganizationId=, :none, 2025,
|
|
1041
|
+
deprecate :ApplicationId, :none, 2025, 12
|
|
1042
|
+
deprecate :ApplicationId=, :none, 2025, 12
|
|
1043
|
+
deprecate :OrganizationId, :none, 2025, 12
|
|
1044
|
+
deprecate :OrganizationId=, :none, 2025, 12
|
|
1045
|
+
deprecate :SubOrganizationId, :none, 2025, 12
|
|
1046
|
+
deprecate :SubOrganizationId=, :none, 2025, 12
|
|
1037
1047
|
|
|
1038
1048
|
def initialize(applicationid=nil, organizationid=nil, operatorid=nil, suborganizationid=nil)
|
|
1039
1049
|
@ApplicationId = applicationid
|
|
@@ -2984,8 +2994,8 @@ module TencentCloud
|
|
|
2984
2994
|
|
|
2985
2995
|
attr_accessor :ResourceType, :ResourceName, :ResourceId, :Operator, :Agent, :Organization
|
|
2986
2996
|
extend Gem::Deprecate
|
|
2987
|
-
deprecate :Organization, :none, 2025,
|
|
2988
|
-
deprecate :Organization=, :none, 2025,
|
|
2997
|
+
deprecate :Organization, :none, 2025, 12
|
|
2998
|
+
deprecate :Organization=, :none, 2025, 12
|
|
2989
2999
|
|
|
2990
3000
|
def initialize(resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, agent=nil, organization=nil)
|
|
2991
3001
|
@ResourceType = resourcetype
|
|
@@ -4056,8 +4066,8 @@ module TencentCloud
|
|
|
4056
4066
|
|
|
4057
4067
|
attr_accessor :ReportId, :Status, :ReportUrl, :RequestId
|
|
4058
4068
|
extend Gem::Deprecate
|
|
4059
|
-
deprecate :ReportUrl, :none, 2025,
|
|
4060
|
-
deprecate :ReportUrl=, :none, 2025,
|
|
4069
|
+
deprecate :ReportUrl, :none, 2025, 12
|
|
4070
|
+
deprecate :ReportUrl=, :none, 2025, 12
|
|
4061
4071
|
|
|
4062
4072
|
def initialize(reportid=nil, status=nil, reporturl=nil, requestid=nil)
|
|
4063
4073
|
@ReportId = reportid
|
|
@@ -4552,8 +4562,8 @@ module TencentCloud
|
|
|
4552
4562
|
|
|
4553
4563
|
attr_accessor :CanEditFlow, :CanEditFormField, :HideShowFlowName, :HideShowFlowType, :HideShowDeadline, :CanSkipAddApprover, :SkipUploadFile, :ForbidEditFillComponent, :CustomCreateFlowDescription, :ForbidAddApprover, :ForbidEditApprover, :ForbidEditFlowProperties, :HideComponentTypes, :ShowComponentTypes, :ResultPageConfig, :SignComponentConfig, :ForbidEditWatermark, :HideOperationInstructions, :HideOperationSteps, :SelfName, :HideSignCodeAfterStart, :PreviewAfterStart, :SignAfterStart, :NeedFlowDraft
|
|
4554
4564
|
extend Gem::Deprecate
|
|
4555
|
-
deprecate :HideOperationInstructions, :none, 2025,
|
|
4556
|
-
deprecate :HideOperationInstructions=, :none, 2025,
|
|
4565
|
+
deprecate :HideOperationInstructions, :none, 2025, 12
|
|
4566
|
+
deprecate :HideOperationInstructions=, :none, 2025, 12
|
|
4557
4567
|
|
|
4558
4568
|
def initialize(caneditflow=nil, caneditformfield=nil, hideshowflowname=nil, hideshowflowtype=nil, hideshowdeadline=nil, canskipaddapprover=nil, skipuploadfile=nil, forbideditfillcomponent=nil, customcreateflowdescription=nil, forbidaddapprover=nil, forbideditapprover=nil, forbideditflowproperties=nil, hidecomponenttypes=nil, showcomponenttypes=nil, resultpageconfig=nil, signcomponentconfig=nil, forbideditwatermark=nil, hideoperationinstructions=nil, hideoperationsteps=nil, selfname=nil, hidesigncodeafterstart=nil, previewafterstart=nil, signafterstart=nil, needflowdraft=nil)
|
|
4559
4569
|
@CanEditFlow = caneditflow
|
|
@@ -4771,10 +4781,10 @@ module TencentCloud
|
|
|
4771
4781
|
|
|
4772
4782
|
attr_accessor :Operator, :FlowName, :Approvers, :FlowDescription, :FlowType, :ClientToken, :DeadLine, :RemindedOn, :UserData, :Unordered, :CustomShowMap, :NeedSignReview, :Agent, :CcInfos, :AutoSignScene, :RelatedFlowId, :CallbackUrl, :FlowDisplayType
|
|
4773
4783
|
extend Gem::Deprecate
|
|
4774
|
-
deprecate :RelatedFlowId, :none, 2025,
|
|
4775
|
-
deprecate :RelatedFlowId=, :none, 2025,
|
|
4776
|
-
deprecate :CallbackUrl, :none, 2025,
|
|
4777
|
-
deprecate :CallbackUrl=, :none, 2025,
|
|
4784
|
+
deprecate :RelatedFlowId, :none, 2025, 12
|
|
4785
|
+
deprecate :RelatedFlowId=, :none, 2025, 12
|
|
4786
|
+
deprecate :CallbackUrl, :none, 2025, 12
|
|
4787
|
+
deprecate :CallbackUrl=, :none, 2025, 12
|
|
4778
4788
|
|
|
4779
4789
|
def initialize(operator=nil, flowname=nil, approvers=nil, flowdescription=nil, flowtype=nil, clienttoken=nil, deadline=nil, remindedon=nil, userdata=nil, unordered=nil, customshowmap=nil, needsignreview=nil, agent=nil, ccinfos=nil, autosignscene=nil, relatedflowid=nil, callbackurl=nil, flowdisplaytype=nil)
|
|
4780
4790
|
@Operator = operator
|
|
@@ -4985,8 +4995,8 @@ module TencentCloud
|
|
|
4985
4995
|
|
|
4986
4996
|
attr_accessor :FlowId, :Operator, :Agent, :FlowApproverInfos, :VideoVerifyTimesLimit, :Organization, :JumpUrl, :UrlType
|
|
4987
4997
|
extend Gem::Deprecate
|
|
4988
|
-
deprecate :Organization, :none, 2025,
|
|
4989
|
-
deprecate :Organization=, :none, 2025,
|
|
4998
|
+
deprecate :Organization, :none, 2025, 12
|
|
4999
|
+
deprecate :Organization=, :none, 2025, 12
|
|
4990
5000
|
|
|
4991
5001
|
def initialize(flowid=nil, operator=nil, agent=nil, flowapproverinfos=nil, videoverifytimeslimit=nil, organization=nil, jumpurl=nil, urltype=nil)
|
|
4992
5002
|
@FlowId = flowid
|
|
@@ -5469,8 +5479,8 @@ module TencentCloud
|
|
|
5469
5479
|
|
|
5470
5480
|
attr_accessor :Operator, :Agent, :Organization
|
|
5471
5481
|
extend Gem::Deprecate
|
|
5472
|
-
deprecate :Organization, :none, 2025,
|
|
5473
|
-
deprecate :Organization=, :none, 2025,
|
|
5482
|
+
deprecate :Organization, :none, 2025, 12
|
|
5483
|
+
deprecate :Organization=, :none, 2025, 12
|
|
5474
5484
|
|
|
5475
5485
|
def initialize(operator=nil, agent=nil, organization=nil)
|
|
5476
5486
|
@Operator = operator
|
|
@@ -5799,12 +5809,12 @@ module TencentCloud
|
|
|
5799
5809
|
|
|
5800
5810
|
attr_accessor :Operator, :TemplateId, :FlowName, :MaxFlowNum, :QrEffectiveDay, :FlowEffectiveDay, :Restrictions, :UserData, :CallbackUrl, :Agent, :ApproverRestrictions, :ApproverComponentLimitTypes, :ForbidPersonalMultipleSign, :FlowNameAppendScannerInfo, :QrCodeName, :QrCodeExpiredOn
|
|
5801
5811
|
extend Gem::Deprecate
|
|
5802
|
-
deprecate :QrEffectiveDay, :none, 2025,
|
|
5803
|
-
deprecate :QrEffectiveDay=, :none, 2025,
|
|
5804
|
-
deprecate :CallbackUrl, :none, 2025,
|
|
5805
|
-
deprecate :CallbackUrl=, :none, 2025,
|
|
5806
|
-
deprecate :ApproverRestrictions, :none, 2025,
|
|
5807
|
-
deprecate :ApproverRestrictions=, :none, 2025,
|
|
5812
|
+
deprecate :QrEffectiveDay, :none, 2025, 12
|
|
5813
|
+
deprecate :QrEffectiveDay=, :none, 2025, 12
|
|
5814
|
+
deprecate :CallbackUrl, :none, 2025, 12
|
|
5815
|
+
deprecate :CallbackUrl=, :none, 2025, 12
|
|
5816
|
+
deprecate :ApproverRestrictions, :none, 2025, 12
|
|
5817
|
+
deprecate :ApproverRestrictions=, :none, 2025, 12
|
|
5808
5818
|
|
|
5809
5819
|
def initialize(operator=nil, templateid=nil, flowname=nil, maxflownum=nil, qreffectiveday=nil, floweffectiveday=nil, restrictions=nil, userdata=nil, callbackurl=nil, agent=nil, approverrestrictions=nil, approvercomponentlimittypes=nil, forbidpersonalmultiplesign=nil, flownameappendscannerinfo=nil, qrcodename=nil, qrcodeexpiredon=nil)
|
|
5810
5820
|
@Operator = operator
|
|
@@ -6068,11 +6078,37 @@ module TencentCloud
|
|
|
6068
6078
|
# p.s. 如果Endpoint是 APP,传递的跳转地址无效,不会进行跳转,仅会进行回跳。
|
|
6069
6079
|
# @type JumpEvents: Array
|
|
6070
6080
|
# @param OrganizationIdCardType: 企业证照类型:<ul><li> **USCC** :(默认)工商组织营业执照</li><li> **PRACTICELICENSEOFMEDICALINSTITUTION** :医疗机构执业许可证</li></ul>
|
|
6081
|
+
|
|
6082
|
+
# 注意 :
|
|
6083
|
+
# 如果企业证照类型是医疗机构,则参数设置企业授权方式(AuthorizationTypes)和企业认证方式(AuthorizationMethods)都无效.
|
|
6084
|
+
# 医疗机构的企业授权方式 仅有授权书的方式。企业认证仅有上传营业执照的方式。
|
|
6071
6085
|
# @type OrganizationIdCardType: String
|
|
6086
|
+
# @param OrganizationIdCardTypeSame: 是否允许编辑企业注册时的证照类型
|
|
6087
|
+
|
|
6088
|
+
# true:不允许编辑。
|
|
6072
6089
|
|
|
6073
|
-
|
|
6090
|
+
# false:允许编辑(默认值)。
|
|
6091
|
+
|
|
6092
|
+
|
|
6093
|
+
# 注意:
|
|
6094
|
+
# 入参中的OrganizationIdCardType值不为空的时候,才可设置为不可编辑。
|
|
6095
|
+
# @type OrganizationIdCardTypeSame: Boolean
|
|
6096
|
+
# @param AuthorizationMethod: 指定企业认证的授权方式 支持多选:
|
|
6097
|
+
|
|
6098
|
+
# <ul>
|
|
6099
|
+
# <li><strong>1</strong>: 上传营业执照</li>
|
|
6100
|
+
# <li><strong>2</strong>: 腾讯云快速认证</li>
|
|
6101
|
+
# <li><strong>3</strong>: 腾讯商户号授权<font color="red">(仅支持小程序端)</font></li>
|
|
6102
|
+
# </ul>
|
|
6103
|
+
|
|
6104
|
+
# 注意:
|
|
6105
|
+
# 1.如果没有指定,则默认是1,仅有上传营业执照。
|
|
6106
|
+
# 2.H5 仅支持上传营业执照。
|
|
6107
|
+
# @type AuthorizationMethod: Array
|
|
6074
6108
|
|
|
6075
|
-
|
|
6109
|
+
attr_accessor :Operator, :AuthorizationTypes, :OrganizationName, :UniformSocialCreditCode, :LegalName, :AutoJumpUrl, :OrganizationAddress, :AdminName, :AdminMobile, :AdminIdCardNumber, :AdminIdCardType, :UniformSocialCreditCodeSame, :LegalNameSame, :AdminNameSame, :AdminIdCardNumberSame, :AdminMobileSame, :OrganizationNameSame, :BusinessLicense, :Endpoint, :Initialization, :PowerOfAttorneys, :UserData, :BankAccountNumber, :BankAccountNumberSame, :JumpEvents, :OrganizationIdCardType, :OrganizationIdCardTypeSame, :AuthorizationMethod
|
|
6110
|
+
|
|
6111
|
+
def initialize(operator=nil, authorizationtypes=nil, organizationname=nil, uniformsocialcreditcode=nil, legalname=nil, autojumpurl=nil, organizationaddress=nil, adminname=nil, adminmobile=nil, adminidcardnumber=nil, adminidcardtype=nil, uniformsocialcreditcodesame=nil, legalnamesame=nil, adminnamesame=nil, adminidcardnumbersame=nil, adminmobilesame=nil, organizationnamesame=nil, businesslicense=nil, endpoint=nil, initialization=nil, powerofattorneys=nil, userdata=nil, bankaccountnumber=nil, bankaccountnumbersame=nil, jumpevents=nil, organizationidcardtype=nil, organizationidcardtypesame=nil, authorizationmethod=nil)
|
|
6076
6112
|
@Operator = operator
|
|
6077
6113
|
@AuthorizationTypes = authorizationtypes
|
|
6078
6114
|
@OrganizationName = organizationname
|
|
@@ -6099,6 +6135,8 @@ module TencentCloud
|
|
|
6099
6135
|
@BankAccountNumberSame = bankaccountnumbersame
|
|
6100
6136
|
@JumpEvents = jumpevents
|
|
6101
6137
|
@OrganizationIdCardType = organizationidcardtype
|
|
6138
|
+
@OrganizationIdCardTypeSame = organizationidcardtypesame
|
|
6139
|
+
@AuthorizationMethod = authorizationmethod
|
|
6102
6140
|
end
|
|
6103
6141
|
|
|
6104
6142
|
def deserialize(params)
|
|
@@ -6138,6 +6176,8 @@ module TencentCloud
|
|
|
6138
6176
|
end
|
|
6139
6177
|
end
|
|
6140
6178
|
@OrganizationIdCardType = params['OrganizationIdCardType']
|
|
6179
|
+
@OrganizationIdCardTypeSame = params['OrganizationIdCardTypeSame']
|
|
6180
|
+
@AuthorizationMethod = params['AuthorizationMethod']
|
|
6141
6181
|
end
|
|
6142
6182
|
end
|
|
6143
6183
|
|
|
@@ -6722,8 +6762,8 @@ module TencentCloud
|
|
|
6722
6762
|
|
|
6723
6763
|
attr_accessor :Operator, :ResourceId, :FlowName, :ResourceType, :Unordered, :Deadline, :UserFlowTypeId, :FlowType, :Approvers, :IntelligentStatus, :Components, :FlowOption, :NeedSignReview, :NeedCreateReview, :UserData, :CcInfos, :FlowId, :Agent, :InitiatorComponents, :FlowDisplayType, :SignComponentConfig
|
|
6724
6764
|
extend Gem::Deprecate
|
|
6725
|
-
deprecate :SignComponentConfig, :none, 2025,
|
|
6726
|
-
deprecate :SignComponentConfig=, :none, 2025,
|
|
6765
|
+
deprecate :SignComponentConfig, :none, 2025, 12
|
|
6766
|
+
deprecate :SignComponentConfig=, :none, 2025, 12
|
|
6727
6767
|
|
|
6728
6768
|
def initialize(operator=nil, resourceid=nil, flowname=nil, resourcetype=nil, unordered=nil, deadline=nil, userflowtypeid=nil, flowtype=nil, approvers=nil, intelligentstatus=nil, components=nil, flowoption=nil, needsignreview=nil, needcreatereview=nil, userdata=nil, ccinfos=nil, flowid=nil, agent=nil, initiatorcomponents=nil, flowdisplaytype=nil, signcomponentconfig=nil)
|
|
6729
6769
|
@Operator = operator
|
|
@@ -6896,8 +6936,8 @@ module TencentCloud
|
|
|
6896
6936
|
|
|
6897
6937
|
attr_accessor :UserName, :IdCardNumber, :SealName, :Operator, :IdCardType, :SealImage, :SealImageCompress, :Mobile, :EnableAutoSign, :SealColor, :ProcessSeal, :FileId, :Agent, :LicenseType, :SceneKey
|
|
6898
6938
|
extend Gem::Deprecate
|
|
6899
|
-
deprecate :SealImage, :none, 2025,
|
|
6900
|
-
deprecate :SealImage=, :none, 2025,
|
|
6939
|
+
deprecate :SealImage, :none, 2025, 12
|
|
6940
|
+
deprecate :SealImage=, :none, 2025, 12
|
|
6901
6941
|
|
|
6902
6942
|
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)
|
|
6903
6943
|
@UserName = username
|
|
@@ -9617,10 +9657,10 @@ module TencentCloud
|
|
|
9617
9657
|
|
|
9618
9658
|
attr_accessor :Operator, :BusinessType, :BusinessIds, :FileName, :FileType, :Offset, :Limit, :UrlTtl, :CcToken, :Scene, :Agent
|
|
9619
9659
|
extend Gem::Deprecate
|
|
9620
|
-
deprecate :CcToken, :none, 2025,
|
|
9621
|
-
deprecate :CcToken=, :none, 2025,
|
|
9622
|
-
deprecate :Scene, :none, 2025,
|
|
9623
|
-
deprecate :Scene=, :none, 2025,
|
|
9660
|
+
deprecate :CcToken, :none, 2025, 12
|
|
9661
|
+
deprecate :CcToken=, :none, 2025, 12
|
|
9662
|
+
deprecate :Scene, :none, 2025, 12
|
|
9663
|
+
deprecate :Scene=, :none, 2025, 12
|
|
9624
9664
|
|
|
9625
9665
|
def initialize(operator=nil, businesstype=nil, businessids=nil, filename=nil, filetype=nil, offset=nil, limit=nil, urlttl=nil, cctoken=nil, scene=nil, agent=nil)
|
|
9626
9666
|
@Operator = operator
|
|
@@ -10000,12 +10040,12 @@ module TencentCloud
|
|
|
10000
10040
|
|
|
10001
10041
|
attr_accessor :Operator, :Agent, :ContentType, :Filters, :Offset, :Limit, :ApplicationId, :IsChannel, :Organization, :GenerateSource, :WithPreviewUrl
|
|
10002
10042
|
extend Gem::Deprecate
|
|
10003
|
-
deprecate :IsChannel, :none, 2025,
|
|
10004
|
-
deprecate :IsChannel=, :none, 2025,
|
|
10005
|
-
deprecate :Organization, :none, 2025,
|
|
10006
|
-
deprecate :Organization=, :none, 2025,
|
|
10007
|
-
deprecate :GenerateSource, :none, 2025,
|
|
10008
|
-
deprecate :GenerateSource=, :none, 2025,
|
|
10043
|
+
deprecate :IsChannel, :none, 2025, 12
|
|
10044
|
+
deprecate :IsChannel=, :none, 2025, 12
|
|
10045
|
+
deprecate :Organization, :none, 2025, 12
|
|
10046
|
+
deprecate :Organization=, :none, 2025, 12
|
|
10047
|
+
deprecate :GenerateSource, :none, 2025, 12
|
|
10048
|
+
deprecate :GenerateSource=, :none, 2025, 12
|
|
10009
10049
|
|
|
10010
10050
|
def initialize(operator=nil, agent=nil, contenttype=nil, filters=nil, offset=nil, limit=nil, applicationid=nil, ischannel=nil, organization=nil, generatesource=nil, withpreviewurl=nil)
|
|
10011
10051
|
@Operator = operator
|
|
@@ -10591,8 +10631,8 @@ module TencentCloud
|
|
|
10591
10631
|
|
|
10592
10632
|
attr_accessor :Operator, :Limit, :Offset, :Name, :Status, :Export, :Id
|
|
10593
10633
|
extend Gem::Deprecate
|
|
10594
|
-
deprecate :Name, :none, 2025,
|
|
10595
|
-
deprecate :Name=, :none, 2025,
|
|
10634
|
+
deprecate :Name, :none, 2025, 12
|
|
10635
|
+
deprecate :Name=, :none, 2025, 12
|
|
10596
10636
|
|
|
10597
10637
|
def initialize(operator=nil, limit=nil, offset=nil, name=nil, status=nil, export=nil, id=nil)
|
|
10598
10638
|
@Operator = operator
|
|
@@ -10637,8 +10677,8 @@ module TencentCloud
|
|
|
10637
10677
|
|
|
10638
10678
|
attr_accessor :Total, :JoinedTotal, :ActivedTotal, :ExportUrl, :List, :ActivatedTotal, :RequestId
|
|
10639
10679
|
extend Gem::Deprecate
|
|
10640
|
-
deprecate :ActivedTotal, :none, 2025,
|
|
10641
|
-
deprecate :ActivedTotal=, :none, 2025,
|
|
10680
|
+
deprecate :ActivedTotal, :none, 2025, 12
|
|
10681
|
+
deprecate :ActivedTotal=, :none, 2025, 12
|
|
10642
10682
|
|
|
10643
10683
|
def initialize(total=nil, joinedtotal=nil, activedtotal=nil, exporturl=nil, list=nil, activatedtotal=nil, requestid=nil)
|
|
10644
10684
|
@Total = total
|
|
@@ -12099,8 +12139,8 @@ module TencentCloud
|
|
|
12099
12139
|
|
|
12100
12140
|
attr_accessor :ApproveMessage, :ApproveName, :ApproveStatus, :ReceiptId, :CustomUserId, :Mobile, :SignOrder, :ApproveTime, :ApproveType, :ApproverSource, :CustomApproverTag, :OrganizationId, :OrganizationName, :SignId, :ApproverRoleName, :RecipientId
|
|
12101
12141
|
extend Gem::Deprecate
|
|
12102
|
-
deprecate :ReceiptId, :none, 2025,
|
|
12103
|
-
deprecate :ReceiptId=, :none, 2025,
|
|
12142
|
+
deprecate :ReceiptId, :none, 2025, 12
|
|
12143
|
+
deprecate :ReceiptId=, :none, 2025, 12
|
|
12104
12144
|
|
|
12105
12145
|
def initialize(approvemessage=nil, approvename=nil, approvestatus=nil, receiptid=nil, customuserid=nil, mobile=nil, signorder=nil, approvetime=nil, approvetype=nil, approversource=nil, customapprovertag=nil, organizationid=nil, organizationname=nil, signid=nil, approverrolename=nil, recipientid=nil)
|
|
12106
12146
|
@ApproveMessage = approvemessage
|
|
@@ -12484,13 +12524,22 @@ module TencentCloud
|
|
|
12484
12524
|
# @param SignEndpoints: 进入签署流程的限制,目前支持以下选项:
|
|
12485
12525
|
# <ul><li> <b>空值(默认)</b> :无限制,可在任何场景进入签署流程。</li><li> <b>link</b> :选择此选项后,将无法通过控制台或电子签小程序列表进入填写或签署操作,仅可预览合同。填写或签署流程只能通过短信或发起方提供的专用链接进行。</li></ul>
|
|
12486
12526
|
# @type SignEndpoints: Array
|
|
12527
|
+
# @param NotSaveContact: 是否不保存联系人
|
|
12528
|
+
# 默认 false 保存联系人 true 不保存联系人
|
|
12529
|
+
|
|
12530
|
+
# 设置这个参数为保存联系人的时候,他方企业签署人会被保存进发起人的联系人中。
|
|
12531
|
+
# 联系人查看可登录[电子签控制台](https://test.qian.tencent.cn/console/) 进行查看。
|
|
12532
|
+
# 如下图位置:
|
|
12533
|
+
# 
|
|
12534
|
+
|
|
12535
|
+
# @type NotSaveContact: Boolean
|
|
12487
12536
|
|
|
12488
|
-
attr_accessor :ApproverType, :OrganizationName, :ApproverName, :ApproverMobile, :ApproverIdCardType, :ApproverIdCardNumber, :RecipientId, :VerifyChannel, :NotifyType, :IsFullText, :PreReadTime, :UserId, :Required, :ApproverSource, :CustomApproverTag, :RegisterInfo, :ApproverOption, :JumpUrl, :SignId, :ApproverNeedSignReview, :SignComponents, :Components, :ComponentLimitType, :ApproverVerifyTypes, :ApproverSignTypes, :SignTypeSelector, :Deadline, :Intention, :SignEndpoints
|
|
12537
|
+
attr_accessor :ApproverType, :OrganizationName, :ApproverName, :ApproverMobile, :ApproverIdCardType, :ApproverIdCardNumber, :RecipientId, :VerifyChannel, :NotifyType, :IsFullText, :PreReadTime, :UserId, :Required, :ApproverSource, :CustomApproverTag, :RegisterInfo, :ApproverOption, :JumpUrl, :SignId, :ApproverNeedSignReview, :SignComponents, :Components, :ComponentLimitType, :ApproverVerifyTypes, :ApproverSignTypes, :SignTypeSelector, :Deadline, :Intention, :SignEndpoints, :NotSaveContact
|
|
12489
12538
|
extend Gem::Deprecate
|
|
12490
|
-
deprecate :JumpUrl, :none, 2025,
|
|
12491
|
-
deprecate :JumpUrl=, :none, 2025,
|
|
12539
|
+
deprecate :JumpUrl, :none, 2025, 12
|
|
12540
|
+
deprecate :JumpUrl=, :none, 2025, 12
|
|
12492
12541
|
|
|
12493
|
-
def initialize(approvertype=nil, organizationname=nil, approvername=nil, approvermobile=nil, approveridcardtype=nil, approveridcardnumber=nil, recipientid=nil, verifychannel=nil, notifytype=nil, isfulltext=nil, prereadtime=nil, userid=nil, required=nil, approversource=nil, customapprovertag=nil, registerinfo=nil, approveroption=nil, jumpurl=nil, signid=nil, approverneedsignreview=nil, signcomponents=nil, components=nil, componentlimittype=nil, approververifytypes=nil, approversigntypes=nil, signtypeselector=nil, deadline=nil, intention=nil, signendpoints=nil)
|
|
12542
|
+
def initialize(approvertype=nil, organizationname=nil, approvername=nil, approvermobile=nil, approveridcardtype=nil, approveridcardnumber=nil, recipientid=nil, verifychannel=nil, notifytype=nil, isfulltext=nil, prereadtime=nil, userid=nil, required=nil, approversource=nil, customapprovertag=nil, registerinfo=nil, approveroption=nil, jumpurl=nil, signid=nil, approverneedsignreview=nil, signcomponents=nil, components=nil, componentlimittype=nil, approververifytypes=nil, approversigntypes=nil, signtypeselector=nil, deadline=nil, intention=nil, signendpoints=nil, notsavecontact=nil)
|
|
12494
12543
|
@ApproverType = approvertype
|
|
12495
12544
|
@OrganizationName = organizationname
|
|
12496
12545
|
@ApproverName = approvername
|
|
@@ -12520,6 +12569,7 @@ module TencentCloud
|
|
|
12520
12569
|
@Deadline = deadline
|
|
12521
12570
|
@Intention = intention
|
|
12522
12571
|
@SignEndpoints = signendpoints
|
|
12572
|
+
@NotSaveContact = notsavecontact
|
|
12523
12573
|
end
|
|
12524
12574
|
|
|
12525
12575
|
def deserialize(params)
|
|
@@ -12575,6 +12625,7 @@ module TencentCloud
|
|
|
12575
12625
|
@Intention.deserialize(params['Intention'])
|
|
12576
12626
|
end
|
|
12577
12627
|
@SignEndpoints = params['SignEndpoints']
|
|
12628
|
+
@NotSaveContact = params['NotSaveContact']
|
|
12578
12629
|
end
|
|
12579
12630
|
end
|
|
12580
12631
|
|
|
@@ -12803,8 +12854,8 @@ module TencentCloud
|
|
|
12803
12854
|
|
|
12804
12855
|
attr_accessor :FlowName, :Approvers, :FileIds, :TemplateId, :FlowType, :FlowDescription, :Deadline, :CallbackUrl, :UserData, :Unordered, :Components, :NeedSignReview, :AutoSignScene, :FlowDisplayType
|
|
12805
12856
|
extend Gem::Deprecate
|
|
12806
|
-
deprecate :CallbackUrl, :none, 2025,
|
|
12807
|
-
deprecate :CallbackUrl=, :none, 2025,
|
|
12857
|
+
deprecate :CallbackUrl, :none, 2025, 12
|
|
12858
|
+
deprecate :CallbackUrl=, :none, 2025, 12
|
|
12808
12859
|
|
|
12809
12860
|
def initialize(flowname=nil, approvers=nil, fileids=nil, templateid=nil, flowtype=nil, flowdescription=nil, deadline=nil, callbackurl=nil, userdata=nil, unordered=nil, components=nil, needsignreview=nil, autosignscene=nil, flowdisplaytype=nil)
|
|
12810
12861
|
@FlowName = flowname
|
|
@@ -13476,8 +13527,8 @@ module TencentCloud
|
|
|
13476
13527
|
|
|
13477
13528
|
attr_accessor :TaskId, :Operator, :Agent, :Organization
|
|
13478
13529
|
extend Gem::Deprecate
|
|
13479
|
-
deprecate :Organization, :none, 2025,
|
|
13480
|
-
deprecate :Organization=, :none, 2025,
|
|
13530
|
+
deprecate :Organization, :none, 2025, 12
|
|
13531
|
+
deprecate :Organization=, :none, 2025, 12
|
|
13481
13532
|
|
|
13482
13533
|
def initialize(taskid=nil, operator=nil, agent=nil, organization=nil)
|
|
13483
13534
|
@TaskId = taskid
|
|
@@ -15004,16 +15055,16 @@ module TencentCloud
|
|
|
15004
15055
|
|
|
15005
15056
|
attr_accessor :OrganizationId, :Channel, :OrganizationOpenId, :ClientIp, :ProxyIp
|
|
15006
15057
|
extend Gem::Deprecate
|
|
15007
|
-
deprecate :OrganizationId, :none, 2025,
|
|
15008
|
-
deprecate :OrganizationId=, :none, 2025,
|
|
15009
|
-
deprecate :Channel, :none, 2025,
|
|
15010
|
-
deprecate :Channel=, :none, 2025,
|
|
15011
|
-
deprecate :OrganizationOpenId, :none, 2025,
|
|
15012
|
-
deprecate :OrganizationOpenId=, :none, 2025,
|
|
15013
|
-
deprecate :ClientIp, :none, 2025,
|
|
15014
|
-
deprecate :ClientIp=, :none, 2025,
|
|
15015
|
-
deprecate :ProxyIp, :none, 2025,
|
|
15016
|
-
deprecate :ProxyIp=, :none, 2025,
|
|
15058
|
+
deprecate :OrganizationId, :none, 2025, 12
|
|
15059
|
+
deprecate :OrganizationId=, :none, 2025, 12
|
|
15060
|
+
deprecate :Channel, :none, 2025, 12
|
|
15061
|
+
deprecate :Channel=, :none, 2025, 12
|
|
15062
|
+
deprecate :OrganizationOpenId, :none, 2025, 12
|
|
15063
|
+
deprecate :OrganizationOpenId=, :none, 2025, 12
|
|
15064
|
+
deprecate :ClientIp, :none, 2025, 12
|
|
15065
|
+
deprecate :ClientIp=, :none, 2025, 12
|
|
15066
|
+
deprecate :ProxyIp, :none, 2025, 12
|
|
15067
|
+
deprecate :ProxyIp=, :none, 2025, 12
|
|
15017
15068
|
|
|
15018
15069
|
def initialize(organizationid=nil, channel=nil, organizationopenid=nil, clientip=nil, proxyip=nil)
|
|
15019
15070
|
@OrganizationId = organizationid
|
|
@@ -15543,7 +15594,8 @@ module TencentCloud
|
|
|
15543
15594
|
end
|
|
15544
15595
|
end
|
|
15545
15596
|
|
|
15546
|
-
#
|
|
15597
|
+
# 创建合同,若对方签署人的企业信息还未在腾讯电子签注册。则在进行引导企业注册时控制企业填写的信息。
|
|
15598
|
+
# 具体可查看[视频](https://qian.tencent.com/developers/video/?menu=scene&id=6)
|
|
15547
15599
|
class RegisterInfo < TencentCloud::Common::AbstractModel
|
|
15548
15600
|
# @param LegalName: 法人姓名
|
|
15549
15601
|
# @type LegalName: String
|
|
@@ -15568,21 +15620,43 @@ module TencentCloud
|
|
|
15568
15620
|
# <li><strong>5</strong>: 授权书+对公打款方式</li>
|
|
15569
15621
|
# </ul>
|
|
15570
15622
|
# @type AuthorizationType: Integer
|
|
15623
|
+
# @param AuthorizationMethods: 指定企业认证的授权方式 支持多选:
|
|
15624
|
+
|
|
15625
|
+
# <ul>
|
|
15626
|
+
# <li><strong>1</strong>: 上传营业执照</li>
|
|
15627
|
+
# <li><strong>2</strong>: 腾讯云快速认证</li>
|
|
15628
|
+
# <li><strong>3</strong>: 腾讯商户号授权<font color="red">(仅支持小程序端)</font></li>
|
|
15629
|
+
# </ul>
|
|
15630
|
+
# @type AuthorizationMethods: Array
|
|
15631
|
+
# @param OrganizationIdCardType: 企业证照类型:
|
|
15571
15632
|
|
|
15572
|
-
|
|
15633
|
+
# USCC :(默认)工商组织营业执照
|
|
15634
|
+
# PRACTICELICENSEOFMEDICALINSTITUTION :医疗机构执业许可证
|
|
15635
|
+
# @type OrganizationIdCardType: String
|
|
15636
|
+
# @param RegisterInfoOption: 企业创建时候的个性化参数。
|
|
15637
|
+
# 其中,包括一下内容:
|
|
15638
|
+
# LegalNameSame 是否可以编辑法人。
|
|
15639
|
+
# UnifiedSocialCreditCodeSame 是否可以编辑证件号码。
|
|
15640
|
+
# OrganizationIdCardTypeSame 是否可以更改证照类型。
|
|
15641
|
+
# @type RegisterInfoOption: :class:`Tencentcloud::Ess.v20201111.models.RegisterInfoOption`
|
|
15642
|
+
|
|
15643
|
+
attr_accessor :LegalName, :Uscc, :UnifiedSocialCreditCode, :OrganizationAddress, :AuthorizationTypes, :AuthorizationType, :AuthorizationMethods, :OrganizationIdCardType, :RegisterInfoOption
|
|
15573
15644
|
extend Gem::Deprecate
|
|
15574
|
-
deprecate :Uscc, :none, 2025,
|
|
15575
|
-
deprecate :Uscc=, :none, 2025,
|
|
15576
|
-
deprecate :
|
|
15577
|
-
deprecate :
|
|
15645
|
+
deprecate :Uscc, :none, 2025, 12
|
|
15646
|
+
deprecate :Uscc=, :none, 2025, 12
|
|
15647
|
+
deprecate :AuthorizationType, :none, 2025, 12
|
|
15648
|
+
deprecate :AuthorizationType=, :none, 2025, 12
|
|
15578
15649
|
|
|
15579
|
-
def initialize(legalname=nil, uscc=nil, unifiedsocialcreditcode=nil, organizationaddress=nil, authorizationtypes=nil, authorizationtype=nil)
|
|
15650
|
+
def initialize(legalname=nil, uscc=nil, unifiedsocialcreditcode=nil, organizationaddress=nil, authorizationtypes=nil, authorizationtype=nil, authorizationmethods=nil, organizationidcardtype=nil, registerinfooption=nil)
|
|
15580
15651
|
@LegalName = legalname
|
|
15581
15652
|
@Uscc = uscc
|
|
15582
15653
|
@UnifiedSocialCreditCode = unifiedsocialcreditcode
|
|
15583
15654
|
@OrganizationAddress = organizationaddress
|
|
15584
15655
|
@AuthorizationTypes = authorizationtypes
|
|
15585
15656
|
@AuthorizationType = authorizationtype
|
|
15657
|
+
@AuthorizationMethods = authorizationmethods
|
|
15658
|
+
@OrganizationIdCardType = organizationidcardtype
|
|
15659
|
+
@RegisterInfoOption = registerinfooption
|
|
15586
15660
|
end
|
|
15587
15661
|
|
|
15588
15662
|
def deserialize(params)
|
|
@@ -15592,6 +15666,54 @@ module TencentCloud
|
|
|
15592
15666
|
@OrganizationAddress = params['OrganizationAddress']
|
|
15593
15667
|
@AuthorizationTypes = params['AuthorizationTypes']
|
|
15594
15668
|
@AuthorizationType = params['AuthorizationType']
|
|
15669
|
+
@AuthorizationMethods = params['AuthorizationMethods']
|
|
15670
|
+
@OrganizationIdCardType = params['OrganizationIdCardType']
|
|
15671
|
+
unless params['RegisterInfoOption'].nil?
|
|
15672
|
+
@RegisterInfoOption = RegisterInfoOption.new
|
|
15673
|
+
@RegisterInfoOption.deserialize(params['RegisterInfoOption'])
|
|
15674
|
+
end
|
|
15675
|
+
end
|
|
15676
|
+
end
|
|
15677
|
+
|
|
15678
|
+
# 创建合同,若对方签署人的企业信息还未在腾讯电子签注册。则在进行引导企业注册时控制企业填写信息的个性化参数。
|
|
15679
|
+
# 具体可查看[视频](https://qian.tencent.com/developers/video/?menu=scene&id=6)
|
|
15680
|
+
class RegisterInfoOption < TencentCloud::Common::AbstractModel
|
|
15681
|
+
# @param LegalNameSame: 是否允许编辑企业注册时的法人姓名。
|
|
15682
|
+
# <br/>true:允许编辑<br/>false:不允许编辑(默认值)<br/>
|
|
15683
|
+
|
|
15684
|
+
# 注意:
|
|
15685
|
+
# RegisterInfo 中的LegalName值不为空的时候,才可设置为不可编辑。
|
|
15686
|
+
# @type LegalNameSame: Boolean
|
|
15687
|
+
# @param UnifiedSocialCreditCodeCNameSame: 是否允许编辑企业注册时统一社会信用代码。
|
|
15688
|
+
# <br/>true:不允许编辑。
|
|
15689
|
+
# <br/>false:允许编辑(默认值)。
|
|
15690
|
+
# <br/>
|
|
15691
|
+
|
|
15692
|
+
|
|
15693
|
+
# 注意:
|
|
15694
|
+
# RegisterInfo 中的UnifiedSocialCreditCode值不为空的时候,才可设置为不可编辑。
|
|
15695
|
+
# @type UnifiedSocialCreditCodeCNameSame: Boolean
|
|
15696
|
+
# @param OrganizationIdCardTypeSame: 是否允许编辑企业注册时的证照类型
|
|
15697
|
+
# <br/>true:不允许编辑。
|
|
15698
|
+
# <br/>false:允许编辑(默认值)。
|
|
15699
|
+
# <br/>
|
|
15700
|
+
|
|
15701
|
+
# 注意:
|
|
15702
|
+
# RegisterInfo 中的OrganizationIdCardType值不为空的时候,才可设置为不可编辑。
|
|
15703
|
+
# @type OrganizationIdCardTypeSame: Boolean
|
|
15704
|
+
|
|
15705
|
+
attr_accessor :LegalNameSame, :UnifiedSocialCreditCodeCNameSame, :OrganizationIdCardTypeSame
|
|
15706
|
+
|
|
15707
|
+
def initialize(legalnamesame=nil, unifiedsocialcreditcodecnamesame=nil, organizationidcardtypesame=nil)
|
|
15708
|
+
@LegalNameSame = legalnamesame
|
|
15709
|
+
@UnifiedSocialCreditCodeCNameSame = unifiedsocialcreditcodecnamesame
|
|
15710
|
+
@OrganizationIdCardTypeSame = organizationidcardtypesame
|
|
15711
|
+
end
|
|
15712
|
+
|
|
15713
|
+
def deserialize(params)
|
|
15714
|
+
@LegalNameSame = params['LegalNameSame']
|
|
15715
|
+
@UnifiedSocialCreditCodeCNameSame = params['UnifiedSocialCreditCodeCNameSame']
|
|
15716
|
+
@OrganizationIdCardTypeSame = params['OrganizationIdCardTypeSame']
|
|
15595
15717
|
end
|
|
15596
15718
|
end
|
|
15597
15719
|
|
|
@@ -15710,8 +15832,8 @@ module TencentCloud
|
|
|
15710
15832
|
|
|
15711
15833
|
attr_accessor :Name, :Mobile, :RelievedApproverReceiptId, :ApproverType, :ApproverSignComponentType, :ApproverSignRole, :ApproverSignSealId, :RelievedApproverRecipientId
|
|
15712
15834
|
extend Gem::Deprecate
|
|
15713
|
-
deprecate :RelievedApproverReceiptId, :none, 2025,
|
|
15714
|
-
deprecate :RelievedApproverReceiptId=, :none, 2025,
|
|
15835
|
+
deprecate :RelievedApproverReceiptId, :none, 2025, 12
|
|
15836
|
+
deprecate :RelievedApproverReceiptId=, :none, 2025, 12
|
|
15715
15837
|
|
|
15716
15838
|
def initialize(name=nil, mobile=nil, relievedapproverreceiptid=nil, approvertype=nil, approversigncomponenttype=nil, approversignrole=nil, approversignsealid=nil, relievedapproverrecipientid=nil)
|
|
15717
15839
|
@Name = name
|
|
@@ -16202,8 +16324,8 @@ module TencentCloud
|
|
|
16202
16324
|
|
|
16203
16325
|
attr_accessor :Operator, :FlowId, :ClientToken, :Agent, :CcNotifyType
|
|
16204
16326
|
extend Gem::Deprecate
|
|
16205
|
-
deprecate :ClientToken, :none, 2025,
|
|
16206
|
-
deprecate :ClientToken=, :none, 2025,
|
|
16327
|
+
deprecate :ClientToken, :none, 2025, 12
|
|
16328
|
+
deprecate :ClientToken=, :none, 2025, 12
|
|
16207
16329
|
|
|
16208
16330
|
def initialize(operator=nil, flowid=nil, clienttoken=nil, agent=nil, ccnotifytype=nil)
|
|
16209
16331
|
@Operator = operator
|
|
@@ -16529,8 +16651,8 @@ module TencentCloud
|
|
|
16529
16651
|
|
|
16530
16652
|
attr_accessor :TemplateId, :TemplateName, :Recipients, :Components, :SignComponents, :Description, :DocumentResourceIds, :FileInfos, :AttachmentResourceIds, :SignOrder, :Status, :Creator, :CreatedOn, :Promoter, :TemplateType, :Available, :OrganizationId, :CreatorId, :PreviewUrl, :UserFlowType, :TemplateVersion, :Published, :ShareTemplateId, :TemplateSeals, :Seals
|
|
16531
16653
|
extend Gem::Deprecate
|
|
16532
|
-
deprecate :Seals, :none, 2025,
|
|
16533
|
-
deprecate :Seals=, :none, 2025,
|
|
16654
|
+
deprecate :Seals, :none, 2025, 12
|
|
16655
|
+
deprecate :Seals=, :none, 2025, 12
|
|
16534
16656
|
|
|
16535
16657
|
def initialize(templateid=nil, templatename=nil, recipients=nil, components=nil, signcomponents=nil, description=nil, documentresourceids=nil, fileinfos=nil, attachmentresourceids=nil, signorder=nil, status=nil, creator=nil, createdon=nil, promoter=nil, templatetype=nil, available=nil, organizationid=nil, creatorid=nil, previewurl=nil, userflowtype=nil, templateversion=nil, published=nil, sharetemplateid=nil, templateseals=nil, seals=nil)
|
|
16536
16658
|
@TemplateId = templateid
|
|
@@ -16881,8 +17003,8 @@ module TencentCloud
|
|
|
16881
17003
|
|
|
16882
17004
|
attr_accessor :BusinessType, :Caller, :FileInfos, :FileType, :CoverRect, :CustomIds, :FileUrls, :Agent
|
|
16883
17005
|
extend Gem::Deprecate
|
|
16884
|
-
deprecate :FileUrls, :none, 2025,
|
|
16885
|
-
deprecate :FileUrls=, :none, 2025,
|
|
17006
|
+
deprecate :FileUrls, :none, 2025, 12
|
|
17007
|
+
deprecate :FileUrls=, :none, 2025, 12
|
|
16886
17008
|
|
|
16887
17009
|
def initialize(businesstype=nil, caller=nil, fileinfos=nil, filetype=nil, coverrect=nil, customids=nil, fileurls=nil, agent=nil)
|
|
16888
17010
|
@BusinessType = businesstype
|
|
@@ -16985,14 +17107,14 @@ module TencentCloud
|
|
|
16985
17107
|
|
|
16986
17108
|
attr_accessor :UserId, :Channel, :OpenId, :ClientIp, :ProxyIp
|
|
16987
17109
|
extend Gem::Deprecate
|
|
16988
|
-
deprecate :Channel, :none, 2025,
|
|
16989
|
-
deprecate :Channel=, :none, 2025,
|
|
16990
|
-
deprecate :OpenId, :none, 2025,
|
|
16991
|
-
deprecate :OpenId=, :none, 2025,
|
|
16992
|
-
deprecate :ClientIp, :none, 2025,
|
|
16993
|
-
deprecate :ClientIp=, :none, 2025,
|
|
16994
|
-
deprecate :ProxyIp, :none, 2025,
|
|
16995
|
-
deprecate :ProxyIp=, :none, 2025,
|
|
17110
|
+
deprecate :Channel, :none, 2025, 12
|
|
17111
|
+
deprecate :Channel=, :none, 2025, 12
|
|
17112
|
+
deprecate :OpenId, :none, 2025, 12
|
|
17113
|
+
deprecate :OpenId=, :none, 2025, 12
|
|
17114
|
+
deprecate :ClientIp, :none, 2025, 12
|
|
17115
|
+
deprecate :ClientIp=, :none, 2025, 12
|
|
17116
|
+
deprecate :ProxyIp, :none, 2025, 12
|
|
17117
|
+
deprecate :ProxyIp=, :none, 2025, 12
|
|
16996
17118
|
|
|
16997
17119
|
def initialize(userid=nil, channel=nil, openid=nil, clientip=nil, proxyip=nil)
|
|
16998
17120
|
@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.1176
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-12-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|