tencentcloud-sdk-ess 3.0.1173 → 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 +230 -107
- metadata +4 -4
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
|
|
@@ -1272,6 +1282,8 @@ module TencentCloud
|
|
|
1272
1282
|
|
|
1273
1283
|
# 合同对比差异结果详情。
|
|
1274
1284
|
class ComparisonDetail < TencentCloud::Common::AbstractModel
|
|
1285
|
+
# @param ComparisonPointId: 合同对比差异点唯一ID。
|
|
1286
|
+
# @type ComparisonPointId: String
|
|
1275
1287
|
# @param ComparisonType: 对比前后差异类型,具体如下:
|
|
1276
1288
|
# <ul><li> **add**:新增</li>
|
|
1277
1289
|
# <li> **change**:变更</li>
|
|
@@ -1289,9 +1301,10 @@ module TencentCloud
|
|
|
1289
1301
|
# @param DiffText: 对比文本。
|
|
1290
1302
|
# @type DiffText: String
|
|
1291
1303
|
|
|
1292
|
-
attr_accessor :ComparisonType, :ContentType, :OriginText, :DiffText
|
|
1304
|
+
attr_accessor :ComparisonPointId, :ComparisonType, :ContentType, :OriginText, :DiffText
|
|
1293
1305
|
|
|
1294
|
-
def initialize(comparisontype=nil, contenttype=nil, origintext=nil, difftext=nil)
|
|
1306
|
+
def initialize(comparisonpointid=nil, comparisontype=nil, contenttype=nil, origintext=nil, difftext=nil)
|
|
1307
|
+
@ComparisonPointId = comparisonpointid
|
|
1295
1308
|
@ComparisonType = comparisontype
|
|
1296
1309
|
@ContentType = contenttype
|
|
1297
1310
|
@OriginText = origintext
|
|
@@ -1299,6 +1312,7 @@ module TencentCloud
|
|
|
1299
1312
|
end
|
|
1300
1313
|
|
|
1301
1314
|
def deserialize(params)
|
|
1315
|
+
@ComparisonPointId = params['ComparisonPointId']
|
|
1302
1316
|
@ComparisonType = params['ComparisonType']
|
|
1303
1317
|
@ContentType = params['ContentType']
|
|
1304
1318
|
@OriginText = params['OriginText']
|
|
@@ -2980,8 +2994,8 @@ module TencentCloud
|
|
|
2980
2994
|
|
|
2981
2995
|
attr_accessor :ResourceType, :ResourceName, :ResourceId, :Operator, :Agent, :Organization
|
|
2982
2996
|
extend Gem::Deprecate
|
|
2983
|
-
deprecate :Organization, :none, 2025,
|
|
2984
|
-
deprecate :Organization=, :none, 2025,
|
|
2997
|
+
deprecate :Organization, :none, 2025, 12
|
|
2998
|
+
deprecate :Organization=, :none, 2025, 12
|
|
2985
2999
|
|
|
2986
3000
|
def initialize(resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, agent=nil, organization=nil)
|
|
2987
3001
|
@ResourceType = resourcetype
|
|
@@ -4052,8 +4066,8 @@ module TencentCloud
|
|
|
4052
4066
|
|
|
4053
4067
|
attr_accessor :ReportId, :Status, :ReportUrl, :RequestId
|
|
4054
4068
|
extend Gem::Deprecate
|
|
4055
|
-
deprecate :ReportUrl, :none, 2025,
|
|
4056
|
-
deprecate :ReportUrl=, :none, 2025,
|
|
4069
|
+
deprecate :ReportUrl, :none, 2025, 12
|
|
4070
|
+
deprecate :ReportUrl=, :none, 2025, 12
|
|
4057
4071
|
|
|
4058
4072
|
def initialize(reportid=nil, status=nil, reporturl=nil, requestid=nil)
|
|
4059
4073
|
@ReportId = reportid
|
|
@@ -4548,8 +4562,8 @@ module TencentCloud
|
|
|
4548
4562
|
|
|
4549
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
|
|
4550
4564
|
extend Gem::Deprecate
|
|
4551
|
-
deprecate :HideOperationInstructions, :none, 2025,
|
|
4552
|
-
deprecate :HideOperationInstructions=, :none, 2025,
|
|
4565
|
+
deprecate :HideOperationInstructions, :none, 2025, 12
|
|
4566
|
+
deprecate :HideOperationInstructions=, :none, 2025, 12
|
|
4553
4567
|
|
|
4554
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)
|
|
4555
4569
|
@CanEditFlow = caneditflow
|
|
@@ -4767,10 +4781,10 @@ module TencentCloud
|
|
|
4767
4781
|
|
|
4768
4782
|
attr_accessor :Operator, :FlowName, :Approvers, :FlowDescription, :FlowType, :ClientToken, :DeadLine, :RemindedOn, :UserData, :Unordered, :CustomShowMap, :NeedSignReview, :Agent, :CcInfos, :AutoSignScene, :RelatedFlowId, :CallbackUrl, :FlowDisplayType
|
|
4769
4783
|
extend Gem::Deprecate
|
|
4770
|
-
deprecate :RelatedFlowId, :none, 2025,
|
|
4771
|
-
deprecate :RelatedFlowId=, :none, 2025,
|
|
4772
|
-
deprecate :CallbackUrl, :none, 2025,
|
|
4773
|
-
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
|
|
4774
4788
|
|
|
4775
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)
|
|
4776
4790
|
@Operator = operator
|
|
@@ -4981,8 +4995,8 @@ module TencentCloud
|
|
|
4981
4995
|
|
|
4982
4996
|
attr_accessor :FlowId, :Operator, :Agent, :FlowApproverInfos, :VideoVerifyTimesLimit, :Organization, :JumpUrl, :UrlType
|
|
4983
4997
|
extend Gem::Deprecate
|
|
4984
|
-
deprecate :Organization, :none, 2025,
|
|
4985
|
-
deprecate :Organization=, :none, 2025,
|
|
4998
|
+
deprecate :Organization, :none, 2025, 12
|
|
4999
|
+
deprecate :Organization=, :none, 2025, 12
|
|
4986
5000
|
|
|
4987
5001
|
def initialize(flowid=nil, operator=nil, agent=nil, flowapproverinfos=nil, videoverifytimeslimit=nil, organization=nil, jumpurl=nil, urltype=nil)
|
|
4988
5002
|
@FlowId = flowid
|
|
@@ -5465,8 +5479,8 @@ module TencentCloud
|
|
|
5465
5479
|
|
|
5466
5480
|
attr_accessor :Operator, :Agent, :Organization
|
|
5467
5481
|
extend Gem::Deprecate
|
|
5468
|
-
deprecate :Organization, :none, 2025,
|
|
5469
|
-
deprecate :Organization=, :none, 2025,
|
|
5482
|
+
deprecate :Organization, :none, 2025, 12
|
|
5483
|
+
deprecate :Organization=, :none, 2025, 12
|
|
5470
5484
|
|
|
5471
5485
|
def initialize(operator=nil, agent=nil, organization=nil)
|
|
5472
5486
|
@Operator = operator
|
|
@@ -5795,12 +5809,12 @@ module TencentCloud
|
|
|
5795
5809
|
|
|
5796
5810
|
attr_accessor :Operator, :TemplateId, :FlowName, :MaxFlowNum, :QrEffectiveDay, :FlowEffectiveDay, :Restrictions, :UserData, :CallbackUrl, :Agent, :ApproverRestrictions, :ApproverComponentLimitTypes, :ForbidPersonalMultipleSign, :FlowNameAppendScannerInfo, :QrCodeName, :QrCodeExpiredOn
|
|
5797
5811
|
extend Gem::Deprecate
|
|
5798
|
-
deprecate :QrEffectiveDay, :none, 2025,
|
|
5799
|
-
deprecate :QrEffectiveDay=, :none, 2025,
|
|
5800
|
-
deprecate :CallbackUrl, :none, 2025,
|
|
5801
|
-
deprecate :CallbackUrl=, :none, 2025,
|
|
5802
|
-
deprecate :ApproverRestrictions, :none, 2025,
|
|
5803
|
-
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
|
|
5804
5818
|
|
|
5805
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)
|
|
5806
5820
|
@Operator = operator
|
|
@@ -6064,11 +6078,37 @@ module TencentCloud
|
|
|
6064
6078
|
# p.s. 如果Endpoint是 APP,传递的跳转地址无效,不会进行跳转,仅会进行回跳。
|
|
6065
6079
|
# @type JumpEvents: Array
|
|
6066
6080
|
# @param OrganizationIdCardType: 企业证照类型:<ul><li> **USCC** :(默认)工商组织营业执照</li><li> **PRACTICELICENSEOFMEDICALINSTITUTION** :医疗机构执业许可证</li></ul>
|
|
6081
|
+
|
|
6082
|
+
# 注意 :
|
|
6083
|
+
# 如果企业证照类型是医疗机构,则参数设置企业授权方式(AuthorizationTypes)和企业认证方式(AuthorizationMethods)都无效.
|
|
6084
|
+
# 医疗机构的企业授权方式 仅有授权书的方式。企业认证仅有上传营业执照的方式。
|
|
6067
6085
|
# @type OrganizationIdCardType: String
|
|
6086
|
+
# @param OrganizationIdCardTypeSame: 是否允许编辑企业注册时的证照类型
|
|
6087
|
+
|
|
6088
|
+
# true:不允许编辑。
|
|
6089
|
+
|
|
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
|
|
6068
6108
|
|
|
6069
|
-
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
|
|
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
|
|
6070
6110
|
|
|
6071
|
-
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)
|
|
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)
|
|
6072
6112
|
@Operator = operator
|
|
6073
6113
|
@AuthorizationTypes = authorizationtypes
|
|
6074
6114
|
@OrganizationName = organizationname
|
|
@@ -6095,6 +6135,8 @@ module TencentCloud
|
|
|
6095
6135
|
@BankAccountNumberSame = bankaccountnumbersame
|
|
6096
6136
|
@JumpEvents = jumpevents
|
|
6097
6137
|
@OrganizationIdCardType = organizationidcardtype
|
|
6138
|
+
@OrganizationIdCardTypeSame = organizationidcardtypesame
|
|
6139
|
+
@AuthorizationMethod = authorizationmethod
|
|
6098
6140
|
end
|
|
6099
6141
|
|
|
6100
6142
|
def deserialize(params)
|
|
@@ -6134,6 +6176,8 @@ module TencentCloud
|
|
|
6134
6176
|
end
|
|
6135
6177
|
end
|
|
6136
6178
|
@OrganizationIdCardType = params['OrganizationIdCardType']
|
|
6179
|
+
@OrganizationIdCardTypeSame = params['OrganizationIdCardTypeSame']
|
|
6180
|
+
@AuthorizationMethod = params['AuthorizationMethod']
|
|
6137
6181
|
end
|
|
6138
6182
|
end
|
|
6139
6183
|
|
|
@@ -6718,8 +6762,8 @@ module TencentCloud
|
|
|
6718
6762
|
|
|
6719
6763
|
attr_accessor :Operator, :ResourceId, :FlowName, :ResourceType, :Unordered, :Deadline, :UserFlowTypeId, :FlowType, :Approvers, :IntelligentStatus, :Components, :FlowOption, :NeedSignReview, :NeedCreateReview, :UserData, :CcInfos, :FlowId, :Agent, :InitiatorComponents, :FlowDisplayType, :SignComponentConfig
|
|
6720
6764
|
extend Gem::Deprecate
|
|
6721
|
-
deprecate :SignComponentConfig, :none, 2025,
|
|
6722
|
-
deprecate :SignComponentConfig=, :none, 2025,
|
|
6765
|
+
deprecate :SignComponentConfig, :none, 2025, 12
|
|
6766
|
+
deprecate :SignComponentConfig=, :none, 2025, 12
|
|
6723
6767
|
|
|
6724
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)
|
|
6725
6769
|
@Operator = operator
|
|
@@ -6892,8 +6936,8 @@ module TencentCloud
|
|
|
6892
6936
|
|
|
6893
6937
|
attr_accessor :UserName, :IdCardNumber, :SealName, :Operator, :IdCardType, :SealImage, :SealImageCompress, :Mobile, :EnableAutoSign, :SealColor, :ProcessSeal, :FileId, :Agent, :LicenseType, :SceneKey
|
|
6894
6938
|
extend Gem::Deprecate
|
|
6895
|
-
deprecate :SealImage, :none, 2025,
|
|
6896
|
-
deprecate :SealImage=, :none, 2025,
|
|
6939
|
+
deprecate :SealImage, :none, 2025, 12
|
|
6940
|
+
deprecate :SealImage=, :none, 2025, 12
|
|
6897
6941
|
|
|
6898
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)
|
|
6899
6943
|
@UserName = username
|
|
@@ -9613,10 +9657,10 @@ module TencentCloud
|
|
|
9613
9657
|
|
|
9614
9658
|
attr_accessor :Operator, :BusinessType, :BusinessIds, :FileName, :FileType, :Offset, :Limit, :UrlTtl, :CcToken, :Scene, :Agent
|
|
9615
9659
|
extend Gem::Deprecate
|
|
9616
|
-
deprecate :CcToken, :none, 2025,
|
|
9617
|
-
deprecate :CcToken=, :none, 2025,
|
|
9618
|
-
deprecate :Scene, :none, 2025,
|
|
9619
|
-
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
|
|
9620
9664
|
|
|
9621
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)
|
|
9622
9666
|
@Operator = operator
|
|
@@ -9996,12 +10040,12 @@ module TencentCloud
|
|
|
9996
10040
|
|
|
9997
10041
|
attr_accessor :Operator, :Agent, :ContentType, :Filters, :Offset, :Limit, :ApplicationId, :IsChannel, :Organization, :GenerateSource, :WithPreviewUrl
|
|
9998
10042
|
extend Gem::Deprecate
|
|
9999
|
-
deprecate :IsChannel, :none, 2025,
|
|
10000
|
-
deprecate :IsChannel=, :none, 2025,
|
|
10001
|
-
deprecate :Organization, :none, 2025,
|
|
10002
|
-
deprecate :Organization=, :none, 2025,
|
|
10003
|
-
deprecate :GenerateSource, :none, 2025,
|
|
10004
|
-
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
|
|
10005
10049
|
|
|
10006
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)
|
|
10007
10051
|
@Operator = operator
|
|
@@ -10587,8 +10631,8 @@ module TencentCloud
|
|
|
10587
10631
|
|
|
10588
10632
|
attr_accessor :Operator, :Limit, :Offset, :Name, :Status, :Export, :Id
|
|
10589
10633
|
extend Gem::Deprecate
|
|
10590
|
-
deprecate :Name, :none, 2025,
|
|
10591
|
-
deprecate :Name=, :none, 2025,
|
|
10634
|
+
deprecate :Name, :none, 2025, 12
|
|
10635
|
+
deprecate :Name=, :none, 2025, 12
|
|
10592
10636
|
|
|
10593
10637
|
def initialize(operator=nil, limit=nil, offset=nil, name=nil, status=nil, export=nil, id=nil)
|
|
10594
10638
|
@Operator = operator
|
|
@@ -10633,8 +10677,8 @@ module TencentCloud
|
|
|
10633
10677
|
|
|
10634
10678
|
attr_accessor :Total, :JoinedTotal, :ActivedTotal, :ExportUrl, :List, :ActivatedTotal, :RequestId
|
|
10635
10679
|
extend Gem::Deprecate
|
|
10636
|
-
deprecate :ActivedTotal, :none, 2025,
|
|
10637
|
-
deprecate :ActivedTotal=, :none, 2025,
|
|
10680
|
+
deprecate :ActivedTotal, :none, 2025, 12
|
|
10681
|
+
deprecate :ActivedTotal=, :none, 2025, 12
|
|
10638
10682
|
|
|
10639
10683
|
def initialize(total=nil, joinedtotal=nil, activedtotal=nil, exporturl=nil, list=nil, activatedtotal=nil, requestid=nil)
|
|
10640
10684
|
@Total = total
|
|
@@ -11895,10 +11939,7 @@ module TencentCloud
|
|
|
11895
11939
|
# @param CustomUserId: 企业微信UserId
|
|
11896
11940
|
# <br/>当ApproverSource为WEWORKAPP的企微或签场景下,必须指企业自有应用获取企业微信的UserId
|
|
11897
11941
|
# @type CustomUserId: String
|
|
11898
|
-
# @param ApproverName:
|
|
11899
|
-
# <ul>
|
|
11900
|
-
# <li>ApproverSource!=WEWORKAPP时,必传</li>
|
|
11901
|
-
# </ul>
|
|
11942
|
+
# @param ApproverName: 企业签署人的员工姓名。除企业微信应用场景(ApproverSource设置为WEWORKAPP)外,本字段为必填。
|
|
11902
11943
|
# @type ApproverName: String
|
|
11903
11944
|
# @param ApproverMobile: 补充企业签署人员工手机号
|
|
11904
11945
|
# <ul>
|
|
@@ -12098,8 +12139,8 @@ module TencentCloud
|
|
|
12098
12139
|
|
|
12099
12140
|
attr_accessor :ApproveMessage, :ApproveName, :ApproveStatus, :ReceiptId, :CustomUserId, :Mobile, :SignOrder, :ApproveTime, :ApproveType, :ApproverSource, :CustomApproverTag, :OrganizationId, :OrganizationName, :SignId, :ApproverRoleName, :RecipientId
|
|
12100
12141
|
extend Gem::Deprecate
|
|
12101
|
-
deprecate :ReceiptId, :none, 2025,
|
|
12102
|
-
deprecate :ReceiptId=, :none, 2025,
|
|
12142
|
+
deprecate :ReceiptId, :none, 2025, 12
|
|
12143
|
+
deprecate :ReceiptId=, :none, 2025, 12
|
|
12103
12144
|
|
|
12104
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)
|
|
12105
12146
|
@ApproveMessage = approvemessage
|
|
@@ -12483,13 +12524,22 @@ module TencentCloud
|
|
|
12483
12524
|
# @param SignEndpoints: 进入签署流程的限制,目前支持以下选项:
|
|
12484
12525
|
# <ul><li> <b>空值(默认)</b> :无限制,可在任何场景进入签署流程。</li><li> <b>link</b> :选择此选项后,将无法通过控制台或电子签小程序列表进入填写或签署操作,仅可预览合同。填写或签署流程只能通过短信或发起方提供的专用链接进行。</li></ul>
|
|
12485
12526
|
# @type SignEndpoints: Array
|
|
12527
|
+
# @param NotSaveContact: 是否不保存联系人
|
|
12528
|
+
# 默认 false 保存联系人 true 不保存联系人
|
|
12486
12529
|
|
|
12487
|
-
|
|
12530
|
+
# 设置这个参数为保存联系人的时候,他方企业签署人会被保存进发起人的联系人中。
|
|
12531
|
+
# 联系人查看可登录[电子签控制台](https://test.qian.tencent.cn/console/) 进行查看。
|
|
12532
|
+
# 如下图位置:
|
|
12533
|
+
# 
|
|
12534
|
+
|
|
12535
|
+
# @type NotSaveContact: Boolean
|
|
12536
|
+
|
|
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
|
|
12488
12538
|
extend Gem::Deprecate
|
|
12489
|
-
deprecate :JumpUrl, :none, 2025,
|
|
12490
|
-
deprecate :JumpUrl=, :none, 2025,
|
|
12539
|
+
deprecate :JumpUrl, :none, 2025, 12
|
|
12540
|
+
deprecate :JumpUrl=, :none, 2025, 12
|
|
12491
12541
|
|
|
12492
|
-
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)
|
|
12493
12543
|
@ApproverType = approvertype
|
|
12494
12544
|
@OrganizationName = organizationname
|
|
12495
12545
|
@ApproverName = approvername
|
|
@@ -12519,6 +12569,7 @@ module TencentCloud
|
|
|
12519
12569
|
@Deadline = deadline
|
|
12520
12570
|
@Intention = intention
|
|
12521
12571
|
@SignEndpoints = signendpoints
|
|
12572
|
+
@NotSaveContact = notsavecontact
|
|
12522
12573
|
end
|
|
12523
12574
|
|
|
12524
12575
|
def deserialize(params)
|
|
@@ -12574,6 +12625,7 @@ module TencentCloud
|
|
|
12574
12625
|
@Intention.deserialize(params['Intention'])
|
|
12575
12626
|
end
|
|
12576
12627
|
@SignEndpoints = params['SignEndpoints']
|
|
12628
|
+
@NotSaveContact = params['NotSaveContact']
|
|
12577
12629
|
end
|
|
12578
12630
|
end
|
|
12579
12631
|
|
|
@@ -12802,8 +12854,8 @@ module TencentCloud
|
|
|
12802
12854
|
|
|
12803
12855
|
attr_accessor :FlowName, :Approvers, :FileIds, :TemplateId, :FlowType, :FlowDescription, :Deadline, :CallbackUrl, :UserData, :Unordered, :Components, :NeedSignReview, :AutoSignScene, :FlowDisplayType
|
|
12804
12856
|
extend Gem::Deprecate
|
|
12805
|
-
deprecate :CallbackUrl, :none, 2025,
|
|
12806
|
-
deprecate :CallbackUrl=, :none, 2025,
|
|
12857
|
+
deprecate :CallbackUrl, :none, 2025, 12
|
|
12858
|
+
deprecate :CallbackUrl=, :none, 2025, 12
|
|
12807
12859
|
|
|
12808
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)
|
|
12809
12861
|
@FlowName = flowname
|
|
@@ -13475,8 +13527,8 @@ module TencentCloud
|
|
|
13475
13527
|
|
|
13476
13528
|
attr_accessor :TaskId, :Operator, :Agent, :Organization
|
|
13477
13529
|
extend Gem::Deprecate
|
|
13478
|
-
deprecate :Organization, :none, 2025,
|
|
13479
|
-
deprecate :Organization=, :none, 2025,
|
|
13530
|
+
deprecate :Organization, :none, 2025, 12
|
|
13531
|
+
deprecate :Organization=, :none, 2025, 12
|
|
13480
13532
|
|
|
13481
13533
|
def initialize(taskid=nil, operator=nil, agent=nil, organization=nil)
|
|
13482
13534
|
@TaskId = taskid
|
|
@@ -15003,16 +15055,16 @@ module TencentCloud
|
|
|
15003
15055
|
|
|
15004
15056
|
attr_accessor :OrganizationId, :Channel, :OrganizationOpenId, :ClientIp, :ProxyIp
|
|
15005
15057
|
extend Gem::Deprecate
|
|
15006
|
-
deprecate :OrganizationId, :none, 2025,
|
|
15007
|
-
deprecate :OrganizationId=, :none, 2025,
|
|
15008
|
-
deprecate :Channel, :none, 2025,
|
|
15009
|
-
deprecate :Channel=, :none, 2025,
|
|
15010
|
-
deprecate :OrganizationOpenId, :none, 2025,
|
|
15011
|
-
deprecate :OrganizationOpenId=, :none, 2025,
|
|
15012
|
-
deprecate :ClientIp, :none, 2025,
|
|
15013
|
-
deprecate :ClientIp=, :none, 2025,
|
|
15014
|
-
deprecate :ProxyIp, :none, 2025,
|
|
15015
|
-
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
|
|
15016
15068
|
|
|
15017
15069
|
def initialize(organizationid=nil, channel=nil, organizationopenid=nil, clientip=nil, proxyip=nil)
|
|
15018
15070
|
@OrganizationId = organizationid
|
|
@@ -15542,7 +15594,8 @@ module TencentCloud
|
|
|
15542
15594
|
end
|
|
15543
15595
|
end
|
|
15544
15596
|
|
|
15545
|
-
#
|
|
15597
|
+
# 创建合同,若对方签署人的企业信息还未在腾讯电子签注册。则在进行引导企业注册时控制企业填写的信息。
|
|
15598
|
+
# 具体可查看[视频](https://qian.tencent.com/developers/video/?menu=scene&id=6)
|
|
15546
15599
|
class RegisterInfo < TencentCloud::Common::AbstractModel
|
|
15547
15600
|
# @param LegalName: 法人姓名
|
|
15548
15601
|
# @type LegalName: String
|
|
@@ -15567,21 +15620,43 @@ module TencentCloud
|
|
|
15567
15620
|
# <li><strong>5</strong>: 授权书+对公打款方式</li>
|
|
15568
15621
|
# </ul>
|
|
15569
15622
|
# @type AuthorizationType: Integer
|
|
15623
|
+
# @param AuthorizationMethods: 指定企业认证的授权方式 支持多选:
|
|
15570
15624
|
|
|
15571
|
-
|
|
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: 企业证照类型:
|
|
15632
|
+
|
|
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
|
|
15572
15644
|
extend Gem::Deprecate
|
|
15573
|
-
deprecate :Uscc, :none, 2025,
|
|
15574
|
-
deprecate :Uscc=, :none, 2025,
|
|
15575
|
-
deprecate :
|
|
15576
|
-
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
|
|
15577
15649
|
|
|
15578
|
-
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)
|
|
15579
15651
|
@LegalName = legalname
|
|
15580
15652
|
@Uscc = uscc
|
|
15581
15653
|
@UnifiedSocialCreditCode = unifiedsocialcreditcode
|
|
15582
15654
|
@OrganizationAddress = organizationaddress
|
|
15583
15655
|
@AuthorizationTypes = authorizationtypes
|
|
15584
15656
|
@AuthorizationType = authorizationtype
|
|
15657
|
+
@AuthorizationMethods = authorizationmethods
|
|
15658
|
+
@OrganizationIdCardType = organizationidcardtype
|
|
15659
|
+
@RegisterInfoOption = registerinfooption
|
|
15585
15660
|
end
|
|
15586
15661
|
|
|
15587
15662
|
def deserialize(params)
|
|
@@ -15591,6 +15666,54 @@ module TencentCloud
|
|
|
15591
15666
|
@OrganizationAddress = params['OrganizationAddress']
|
|
15592
15667
|
@AuthorizationTypes = params['AuthorizationTypes']
|
|
15593
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']
|
|
15594
15717
|
end
|
|
15595
15718
|
end
|
|
15596
15719
|
|
|
@@ -15709,8 +15832,8 @@ module TencentCloud
|
|
|
15709
15832
|
|
|
15710
15833
|
attr_accessor :Name, :Mobile, :RelievedApproverReceiptId, :ApproverType, :ApproverSignComponentType, :ApproverSignRole, :ApproverSignSealId, :RelievedApproverRecipientId
|
|
15711
15834
|
extend Gem::Deprecate
|
|
15712
|
-
deprecate :RelievedApproverReceiptId, :none, 2025,
|
|
15713
|
-
deprecate :RelievedApproverReceiptId=, :none, 2025,
|
|
15835
|
+
deprecate :RelievedApproverReceiptId, :none, 2025, 12
|
|
15836
|
+
deprecate :RelievedApproverReceiptId=, :none, 2025, 12
|
|
15714
15837
|
|
|
15715
15838
|
def initialize(name=nil, mobile=nil, relievedapproverreceiptid=nil, approvertype=nil, approversigncomponenttype=nil, approversignrole=nil, approversignsealid=nil, relievedapproverrecipientid=nil)
|
|
15716
15839
|
@Name = name
|
|
@@ -16201,8 +16324,8 @@ module TencentCloud
|
|
|
16201
16324
|
|
|
16202
16325
|
attr_accessor :Operator, :FlowId, :ClientToken, :Agent, :CcNotifyType
|
|
16203
16326
|
extend Gem::Deprecate
|
|
16204
|
-
deprecate :ClientToken, :none, 2025,
|
|
16205
|
-
deprecate :ClientToken=, :none, 2025,
|
|
16327
|
+
deprecate :ClientToken, :none, 2025, 12
|
|
16328
|
+
deprecate :ClientToken=, :none, 2025, 12
|
|
16206
16329
|
|
|
16207
16330
|
def initialize(operator=nil, flowid=nil, clienttoken=nil, agent=nil, ccnotifytype=nil)
|
|
16208
16331
|
@Operator = operator
|
|
@@ -16528,8 +16651,8 @@ module TencentCloud
|
|
|
16528
16651
|
|
|
16529
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
|
|
16530
16653
|
extend Gem::Deprecate
|
|
16531
|
-
deprecate :Seals, :none, 2025,
|
|
16532
|
-
deprecate :Seals=, :none, 2025,
|
|
16654
|
+
deprecate :Seals, :none, 2025, 12
|
|
16655
|
+
deprecate :Seals=, :none, 2025, 12
|
|
16533
16656
|
|
|
16534
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)
|
|
16535
16658
|
@TemplateId = templateid
|
|
@@ -16880,8 +17003,8 @@ module TencentCloud
|
|
|
16880
17003
|
|
|
16881
17004
|
attr_accessor :BusinessType, :Caller, :FileInfos, :FileType, :CoverRect, :CustomIds, :FileUrls, :Agent
|
|
16882
17005
|
extend Gem::Deprecate
|
|
16883
|
-
deprecate :FileUrls, :none, 2025,
|
|
16884
|
-
deprecate :FileUrls=, :none, 2025,
|
|
17006
|
+
deprecate :FileUrls, :none, 2025, 12
|
|
17007
|
+
deprecate :FileUrls=, :none, 2025, 12
|
|
16885
17008
|
|
|
16886
17009
|
def initialize(businesstype=nil, caller=nil, fileinfos=nil, filetype=nil, coverrect=nil, customids=nil, fileurls=nil, agent=nil)
|
|
16887
17010
|
@BusinessType = businesstype
|
|
@@ -16984,14 +17107,14 @@ module TencentCloud
|
|
|
16984
17107
|
|
|
16985
17108
|
attr_accessor :UserId, :Channel, :OpenId, :ClientIp, :ProxyIp
|
|
16986
17109
|
extend Gem::Deprecate
|
|
16987
|
-
deprecate :Channel, :none, 2025,
|
|
16988
|
-
deprecate :Channel=, :none, 2025,
|
|
16989
|
-
deprecate :OpenId, :none, 2025,
|
|
16990
|
-
deprecate :OpenId=, :none, 2025,
|
|
16991
|
-
deprecate :ClientIp, :none, 2025,
|
|
16992
|
-
deprecate :ClientIp=, :none, 2025,
|
|
16993
|
-
deprecate :ProxyIp, :none, 2025,
|
|
16994
|
-
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
|
|
16995
17118
|
|
|
16996
17119
|
def initialize(userid=nil, channel=nil, openid=nil, clientip=nil, proxyip=nil)
|
|
16997
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
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/v20201111/client.rb
|
|
37
|
-
- lib/v20201111/models.rb
|
|
38
36
|
- lib/tencentcloud-sdk-ess.rb
|
|
37
|
+
- lib/v20201111/models.rb
|
|
38
|
+
- lib/v20201111/client.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|