tencentcloud-sdk-ess 3.0.625 → 3.0.627
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/client.rb +26 -2
- data/lib/v20201111/models.rb +171 -31
- 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: ec68f7237db79392c482c127678fc20491fd6d2a
|
4
|
+
data.tar.gz: b7d66b8c83b8e98397112fa5540b808351083a8a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0b2dd658ea3d9212377be1bdc46f5f18d5c67498593bac6cc794d9ce8ffc08e4df60677447f67ca7c3ab5b1fa15aaa6bca139ccfd79e4441a8aebcb03a1aa56
|
7
|
+
data.tar.gz: 5e5e0cf1af8070cd30db6aa28fb41033804dd996e1dae3e15c7eb756b654738e62eee6d72baf22fadd6b38cd3b258944728cdf9c06f1ae436f33e8c34bec1b33
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.627
|
data/lib/v20201111/client.rb
CHANGED
@@ -630,6 +630,30 @@ module TencentCloud
|
|
630
630
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
631
631
|
end
|
632
632
|
|
633
|
+
# 本接口(CreatePersonAuthCertificateImage)用于创建个人用户证书证明图片
|
634
|
+
|
635
|
+
# @param request: Request instance for CreatePersonAuthCertificateImage.
|
636
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::CreatePersonAuthCertificateImageRequest`
|
637
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::CreatePersonAuthCertificateImageResponse`
|
638
|
+
def CreatePersonAuthCertificateImage(request)
|
639
|
+
body = send_request('CreatePersonAuthCertificateImage', request.serialize)
|
640
|
+
response = JSON.parse(body)
|
641
|
+
if response['Response'].key?('Error') == false
|
642
|
+
model = CreatePersonAuthCertificateImageResponse.new
|
643
|
+
model.deserialize(response['Response'])
|
644
|
+
model
|
645
|
+
else
|
646
|
+
code = response['Response']['Error']['Code']
|
647
|
+
message = response['Response']['Error']['Message']
|
648
|
+
reqid = response['Response']['RequestId']
|
649
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
650
|
+
end
|
651
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
652
|
+
raise e
|
653
|
+
rescue StandardError => e
|
654
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
655
|
+
end
|
656
|
+
|
633
657
|
# 创建快速发起流程
|
634
658
|
# <br/>适用场景:用户通过API 合同文件及签署信息,并可通过我们返回的URL在页面完成签署控件等信息的编辑与确认,快速发起合同.
|
635
659
|
# <br/>注:该接口文件的resourceId 是通过上传文件之后获取的。
|
@@ -981,7 +1005,7 @@ module TencentCloud
|
|
981
1005
|
|
982
1006
|
# 查询流程基础信息
|
983
1007
|
# 适用场景:可用于主动查询某个合同流程的签署状态信息。可以配合回调通知使用。
|
984
|
-
# 每个企业限制日调用量限制:10W
|
1008
|
+
# 每个企业限制日调用量限制:10W,当日超过此限制后再调用接口返回错误
|
985
1009
|
|
986
1010
|
# @param request: Request instance for DescribeFlowBriefs.
|
987
1011
|
# @type request: :class:`Tencentcloud::ess::V20201111::DescribeFlowBriefsRequest`
|
@@ -1029,7 +1053,7 @@ module TencentCloud
|
|
1029
1053
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1030
1054
|
end
|
1031
1055
|
|
1032
|
-
# 查询出证报告,返回报告 URL
|
1056
|
+
# 查询出证报告,返回报告 URL。出证报告编号通过CreateFlowEvidenceReport接口获取。
|
1033
1057
|
|
1034
1058
|
# @param request: Request instance for DescribeFlowEvidenceReport.
|
1035
1059
|
# @type request: :class:`Tencentcloud::ess::V20201111::DescribeFlowEvidenceReportRequest`
|
data/lib/v20201111/models.rb
CHANGED
@@ -251,7 +251,7 @@ module TencentCloud
|
|
251
251
|
# @type UserInfo: :class:`Tencentcloud::Ess.v20201111.models.UserThreeFactor`
|
252
252
|
# @param CallbackUrl: 接受回调URL地址。支持http://或者https://协议
|
253
253
|
|
254
|
-
# Post
|
254
|
+
# Post数据到此地址后返回httpcode200表示接受回调成功, 返回其他httpcode表示接受回调失败
|
255
255
|
# @type CallbackUrl: String
|
256
256
|
# @param CertInfoCallback: 是否回调证书信息
|
257
257
|
# false-不需要 (默认值)
|
@@ -264,7 +264,7 @@ module TencentCloud
|
|
264
264
|
# @param SealImgCallback: 是否需要回调的时候返回印章(签名) 图片的 base64
|
265
265
|
|
266
266
|
# false-不需要(默认)
|
267
|
-
# true-需要
|
267
|
+
# true-需要
|
268
268
|
# @type SealImgCallback: Boolean
|
269
269
|
# @param VerifyChannels: 开通时候的验证方式, 分布为
|
270
270
|
|
@@ -1134,15 +1134,20 @@ module TencentCloud
|
|
1134
1134
|
# @param Operator: 操作者信息
|
1135
1135
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
1136
1136
|
# @param EmbedType: WEB嵌入资源类型。
|
1137
|
-
# <br/>CREATE_SEAL:
|
1138
|
-
# <br/>
|
1139
|
-
# <br/>
|
1140
|
-
# <br/>
|
1141
|
-
# <br/>
|
1142
|
-
# <br/>
|
1137
|
+
# <br/>CREATE_SEAL: 生成创建印章的嵌入页面
|
1138
|
+
# <br/>CREATE_TEMPLATE:生成创建模板的嵌入页面
|
1139
|
+
# <br/>MODIFY_TEMPLATE:生成编辑模板的嵌入页面
|
1140
|
+
# <br/>PREVIEW_TEMPLATE:生成预览模板的嵌入页面
|
1141
|
+
# <br/>PREVIEW_SEAL_LIST:生成预览印章列表的嵌入页面
|
1142
|
+
# <br/>PREVIEW_SEAL_DETAIL:生成预览印章详情的嵌入页面
|
1143
|
+
# <br/>EXTEND_SERVICE:生成拓展服务的嵌入页面
|
1144
|
+
# <br/>PREVIEW_FLOW:生成预览合同的嵌入页面
|
1145
|
+
# <br/>PREVIEW_FLOW_DETAIL:生成查看合同详情的嵌入页面
|
1143
1146
|
# @type EmbedType: String
|
1144
1147
|
# @param BusinessId: WEB嵌入的业务资源ID
|
1145
1148
|
# <br/>PREVIEW_SEAL_DETAIL,必填,取值为印章id
|
1149
|
+
# <br/>MODIFY_TEMPLATE,PREVIEW_TEMPLATE,必填,取值为模版id
|
1150
|
+
# <br/>PREVIEW_FLOW,PREVIEW_FLOW_DETAIL,必填,取值为合同id
|
1146
1151
|
# @type BusinessId: String
|
1147
1152
|
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作
|
1148
1153
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
@@ -1648,10 +1653,10 @@ module TencentCloud
|
|
1648
1653
|
# @param CanEditFlow: 是否允许修改发起合同时确认弹窗的合同信息(合同名称、合同类型、签署截止时间),若不允许编辑,则表单字段将被禁止输入。
|
1649
1654
|
# <br/>true:允许编辑(默认),<br/>false:不允许编辑<br/>默认:false:不允许编辑
|
1650
1655
|
# @type CanEditFlow: Boolean
|
1651
|
-
# @param CanEditFormField:
|
1652
|
-
# <br/>true
|
1653
|
-
# <br/>false
|
1654
|
-
# <br/>默认false
|
1656
|
+
# @param CanEditFormField: 是否允许编辑模板控件
|
1657
|
+
# <br/>true:允许编辑模板控件信息
|
1658
|
+
# <br/>false:不允许编辑模板控件信息
|
1659
|
+
# <br/>默认false:不允许编辑模板控件信息
|
1655
1660
|
# @type CanEditFormField: Boolean
|
1656
1661
|
# @param HideShowFlowName: 发起页面隐藏合同名称展示
|
1657
1662
|
# <br/>true:发起页面隐藏合同名称展示
|
@@ -1777,6 +1782,7 @@ module TencentCloud
|
|
1777
1782
|
# @param FlowName: 签署流程名称,最大长度200个字符
|
1778
1783
|
# @type FlowName: String
|
1779
1784
|
# @param Approvers: 签署流程参与者信息,最大限制50方
|
1785
|
+
# 注意 approver中的顺序需要和模板中的顺序保持一致, 否则会导致模板中配置的信息无效。
|
1780
1786
|
# @type Approvers: Array
|
1781
1787
|
# @param FlowType: 签署流程的类型(如销售合同/入职合同等),最大长度200个字符
|
1782
1788
|
# @type FlowType: String
|
@@ -2251,19 +2257,22 @@ module TencentCloud
|
|
2251
2257
|
# @param FlowName: 签署流程名称,最大长度不超过200字符
|
2252
2258
|
# @type FlowName: String
|
2253
2259
|
# @param MaxFlowNum: 最大可发起签署流程份数,默认5份
|
2254
|
-
#
|
2260
|
+
# <br/>发起流程数量超过此上限后二维码自动失效
|
2255
2261
|
# @type MaxFlowNum: Integer
|
2256
|
-
# @param FlowEffectiveDay: 签署流程有效天数
|
2262
|
+
# @param FlowEffectiveDay: 签署流程有效天数
|
2263
|
+
# <br/>默认7天
|
2264
|
+
# <br/>最高设置不超过30天
|
2257
2265
|
# @type FlowEffectiveDay: Integer
|
2258
2266
|
# @param QrEffectiveDay: 二维码有效天数 默认7天 最高设置不超过90天
|
2259
2267
|
# @type QrEffectiveDay: Integer
|
2260
|
-
# @param Restrictions:
|
2268
|
+
# @param Restrictions: 指定的签署人信息
|
2269
|
+
# <br/>指定后,则只允许指定的签署人扫码签署
|
2261
2270
|
# @type Restrictions: Array
|
2262
|
-
# @param UserData:
|
2271
|
+
# @param UserData: 用户自定义字段
|
2272
|
+
# <br/>回调的时候会进行透传,长度需要小于20480
|
2263
2273
|
# @type UserData: String
|
2264
2274
|
# @param CallbackUrl: 回调地址,最大长度1000字符串
|
2265
|
-
#
|
2266
|
-
# 用户通过签署二维码发起签署流程时,企业额度不足导致失败
|
2275
|
+
# <br/>回调时机:用户通过签署二维码发起签署流程时,企业额度不足导致失败
|
2267
2276
|
# @type CallbackUrl: String
|
2268
2277
|
# @param Agent: 应用信息
|
2269
2278
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
@@ -2418,6 +2427,62 @@ module TencentCloud
|
|
2418
2427
|
end
|
2419
2428
|
end
|
2420
2429
|
|
2430
|
+
# CreatePersonAuthCertificateImage请求参数结构体
|
2431
|
+
class CreatePersonAuthCertificateImageRequest < TencentCloud::Common::AbstractModel
|
2432
|
+
# @param Operator: 操作人信息
|
2433
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
2434
|
+
# @param UserName: 个人用户名称
|
2435
|
+
# @type UserName: String
|
2436
|
+
# @param IdCardType: 身份证件类型取值:
|
2437
|
+
# ID_CARD 身居民身份证
|
2438
|
+
# PASSPORT 护照
|
2439
|
+
# HONGKONG_AND_MACAO 港澳居民来往内地通行证
|
2440
|
+
# FOREIGN_ID_CARD 外国人永久居留身份证
|
2441
|
+
# HONGKONG_MACAO_AND_TAIWAN 港澳台居民居住证(格式同居民身份证)
|
2442
|
+
# @type IdCardType: String
|
2443
|
+
# @param IdCardNumber: 身份证件号码
|
2444
|
+
# @type IdCardNumber: String
|
2445
|
+
|
2446
|
+
attr_accessor :Operator, :UserName, :IdCardType, :IdCardNumber
|
2447
|
+
|
2448
|
+
def initialize(operator=nil, username=nil, idcardtype=nil, idcardnumber=nil)
|
2449
|
+
@Operator = operator
|
2450
|
+
@UserName = username
|
2451
|
+
@IdCardType = idcardtype
|
2452
|
+
@IdCardNumber = idcardnumber
|
2453
|
+
end
|
2454
|
+
|
2455
|
+
def deserialize(params)
|
2456
|
+
unless params['Operator'].nil?
|
2457
|
+
@Operator = UserInfo.new
|
2458
|
+
@Operator.deserialize(params['Operator'])
|
2459
|
+
end
|
2460
|
+
@UserName = params['UserName']
|
2461
|
+
@IdCardType = params['IdCardType']
|
2462
|
+
@IdCardNumber = params['IdCardNumber']
|
2463
|
+
end
|
2464
|
+
end
|
2465
|
+
|
2466
|
+
# CreatePersonAuthCertificateImage返回参数结构体
|
2467
|
+
class CreatePersonAuthCertificateImageResponse < TencentCloud::Common::AbstractModel
|
2468
|
+
# @param AuthCertUrl: 个人用户证明证书的下载链接
|
2469
|
+
# @type AuthCertUrl: String
|
2470
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2471
|
+
# @type RequestId: String
|
2472
|
+
|
2473
|
+
attr_accessor :AuthCertUrl, :RequestId
|
2474
|
+
|
2475
|
+
def initialize(authcerturl=nil, requestid=nil)
|
2476
|
+
@AuthCertUrl = authcerturl
|
2477
|
+
@RequestId = requestid
|
2478
|
+
end
|
2479
|
+
|
2480
|
+
def deserialize(params)
|
2481
|
+
@AuthCertUrl = params['AuthCertUrl']
|
2482
|
+
@RequestId = params['RequestId']
|
2483
|
+
end
|
2484
|
+
end
|
2485
|
+
|
2421
2486
|
# CreatePrepareFlow请求参数结构体
|
2422
2487
|
class CreatePrepareFlowRequest < TencentCloud::Common::AbstractModel
|
2423
2488
|
# @param Operator: 调用方用户信息,userId 必填
|
@@ -3780,7 +3845,7 @@ module TencentCloud
|
|
3780
3845
|
|
3781
3846
|
# EvidenceStatusExecuting 出证任务在执行中
|
3782
3847
|
# EvidenceStatusSuccess 出证任务执行成功
|
3783
|
-
# EvidenceStatusFailed
|
3848
|
+
# EvidenceStatusFailed 出证任务执行失败
|
3784
3849
|
# @type Status: String
|
3785
3850
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3786
3851
|
# @type RequestId: String
|
@@ -4314,7 +4379,7 @@ module TencentCloud
|
|
4314
4379
|
# @param JoinedTotal: 已授权待激活的企业数量
|
4315
4380
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4316
4381
|
# @type JoinedTotal: Integer
|
4317
|
-
# @param ActivedTotal: 已加入的企业数量
|
4382
|
+
# @param ActivedTotal: 已加入的企业数量(废弃,请使用ActivatedTotal)
|
4318
4383
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4319
4384
|
# @type ActivedTotal: Integer
|
4320
4385
|
# @param ExportUrl: 导出文件的url
|
@@ -4323,17 +4388,24 @@ module TencentCloud
|
|
4323
4388
|
# @param List: 成员企业信息列表
|
4324
4389
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4325
4390
|
# @type List: Array
|
4391
|
+
# @param ActivatedTotal: 已加入的企业数量
|
4392
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4393
|
+
# @type ActivatedTotal: Integer
|
4326
4394
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4327
4395
|
# @type RequestId: String
|
4328
4396
|
|
4329
|
-
attr_accessor :Total, :JoinedTotal, :ActivedTotal, :ExportUrl, :List, :RequestId
|
4397
|
+
attr_accessor :Total, :JoinedTotal, :ActivedTotal, :ExportUrl, :List, :ActivatedTotal, :RequestId
|
4398
|
+
extend Gem::Deprecate
|
4399
|
+
deprecate :ActivedTotal, :none, 2023, 8
|
4400
|
+
deprecate :ActivedTotal=, :none, 2023, 8
|
4330
4401
|
|
4331
|
-
def initialize(total=nil, joinedtotal=nil, activedtotal=nil, exporturl=nil, list=nil, requestid=nil)
|
4402
|
+
def initialize(total=nil, joinedtotal=nil, activedtotal=nil, exporturl=nil, list=nil, activatedtotal=nil, requestid=nil)
|
4332
4403
|
@Total = total
|
4333
4404
|
@JoinedTotal = joinedtotal
|
4334
4405
|
@ActivedTotal = activedtotal
|
4335
4406
|
@ExportUrl = exporturl
|
4336
4407
|
@List = list
|
4408
|
+
@ActivatedTotal = activatedtotal
|
4337
4409
|
@RequestId = requestid
|
4338
4410
|
end
|
4339
4411
|
|
@@ -4350,6 +4422,7 @@ module TencentCloud
|
|
4350
4422
|
@List << grouporganization_tmp
|
4351
4423
|
end
|
4352
4424
|
end
|
4425
|
+
@ActivatedTotal = params['ActivatedTotal']
|
4353
4426
|
@RequestId = params['RequestId']
|
4354
4427
|
end
|
4355
4428
|
end
|
@@ -4617,10 +4690,10 @@ module TencentCloud
|
|
4617
4690
|
# <br/>false:不允许在合同详情页展示控件
|
4618
4691
|
# <br/>默认false,合同详情页不展示控件
|
4619
4692
|
# @type ShowFlowDetailComponent: Boolean
|
4620
|
-
# @param ShowTemplateComponent:
|
4621
|
-
# <br/>true
|
4622
|
-
# <br/>false
|
4623
|
-
# <br/>默认false
|
4693
|
+
# @param ShowTemplateComponent: 模板预览,允许展示模板控件信息
|
4694
|
+
# <br/>true:允许在模板预览页展示控件
|
4695
|
+
# <br/>false:不允许在模板预览页展示控件
|
4696
|
+
# <br/>默认false,模板预览页不展示控件
|
4624
4697
|
# @type ShowTemplateComponent: Boolean
|
4625
4698
|
|
4626
4699
|
attr_accessor :ShowFlowDetailComponent, :ShowTemplateComponent
|
@@ -5139,8 +5212,11 @@ module TencentCloud
|
|
5139
5212
|
# @param ApproverType: 参与者类型:
|
5140
5213
|
# 0:企业
|
5141
5214
|
# 1:个人
|
5142
|
-
# 3
|
5143
|
-
# 注:类型为3
|
5215
|
+
# 3:企业自动签署
|
5216
|
+
# 注:类型为3(企业自动签署)时,会自动完成该签署方的签署。
|
5217
|
+
# 自动签署仅进行盖章操作,不能是手写签名。
|
5218
|
+
# 本方企业自动签署的签署人会默认是当前的发起人
|
5219
|
+
# 他方企业自动签署的签署人是自动签模板的他方企业授权人
|
5144
5220
|
# @type ApproverType: Integer
|
5145
5221
|
# @param OrganizationName: 签署人企业名称
|
5146
5222
|
# <br/>当approverType=1 或 approverType=3时,必须指定
|
@@ -5159,7 +5235,7 @@ module TencentCloud
|
|
5159
5235
|
# @param ApproverIdCardNumber: 签署方经办人证件号码
|
5160
5236
|
# @type ApproverIdCardNumber: String
|
5161
5237
|
# @param RecipientId: 签署方经办人在模板中的参与方ID
|
5162
|
-
# <br
|
5238
|
+
# <br/>模板发起合同时,该参数为必填项
|
5163
5239
|
# <br/>文件发起合同是,该参数无序传值
|
5164
5240
|
# @type RecipientId: String
|
5165
5241
|
# @param VerifyChannel: 签署意愿确认渠道,WEIXINAPP:人脸识别
|
@@ -5492,8 +5568,72 @@ module TencentCloud
|
|
5492
5568
|
|
5493
5569
|
# 电子文档的控件填充信息。按照控件类型进行相应的填充。
|
5494
5570
|
|
5571
|
+
# 当控件的 ComponentType='TEXT'时,FormField.ComponentValue填入文本内容
|
5572
|
+
# ```
|
5573
|
+
# FormFiled输入示例:
|
5574
|
+
# {
|
5575
|
+
# "ComponentId": "componentId1",
|
5576
|
+
# "ComponentValue": "文本内容"
|
5577
|
+
# }
|
5578
|
+
# ```
|
5579
|
+
# 当控件的 ComponentType='MULTI_LINE_TEXT'时,FormField.ComponentValue填入文本内容,支持自动换行。
|
5580
|
+
# ```
|
5581
|
+
# FormFiled输入示例:
|
5582
|
+
# {
|
5583
|
+
# "ComponentId": "componentId1",
|
5584
|
+
# "ComponentValue": "多行文本内容"
|
5585
|
+
# }
|
5586
|
+
# ```
|
5587
|
+
# 当控件的 ComponentType='CHECK_BOX'时,FormField.ComponentValue填入true或false文本
|
5588
|
+
# ```
|
5589
|
+
# FormFiled输入示例:
|
5590
|
+
# {
|
5591
|
+
# "ComponentId": "componentId1",
|
5592
|
+
# "ComponentValue": "true"
|
5593
|
+
# }
|
5594
|
+
# ```
|
5595
|
+
# 当控件的 ComponentType='FILL_IMAGE'时,FormField.ComponentValue填入图片的资源ID
|
5596
|
+
# ```
|
5597
|
+
# FormFiled输入示例:
|
5598
|
+
# {
|
5599
|
+
# "ComponentId": "componentId1",
|
5600
|
+
# "ComponentValue": "yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
5601
|
+
# }
|
5602
|
+
# ```
|
5603
|
+
# 当控件的 ComponentType='ATTACHMENT'时,FormField.ComponentValue填入附件图片的资源ID列表,以逗号分隔,单个附件控件最多支持6个资源ID;
|
5604
|
+
# ```
|
5605
|
+
# FormFiled输入示例:
|
5606
|
+
# {
|
5607
|
+
# "ComponentId": "componentId1",
|
5608
|
+
# "ComponentValue": "yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx1,yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx2,yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx3"
|
5609
|
+
# }
|
5610
|
+
# ```
|
5611
|
+
# 当控件的 ComponentType='SELECTOR'时,FormField.ComponentValue填入选择的选项内容;
|
5612
|
+
# ```
|
5613
|
+
# FormFiled输入示例:
|
5614
|
+
# {
|
5615
|
+
# "ComponentId": "componentId1",
|
5616
|
+
# "ComponentValue": "选择的内容"
|
5617
|
+
# }
|
5618
|
+
# ```
|
5619
|
+
# 当控件的 ComponentType='DATE'时,FormField.ComponentValue填入日期内容;
|
5620
|
+
# ```
|
5621
|
+
# FormFiled输入示例:
|
5622
|
+
# {
|
5623
|
+
# "ComponentId": "componentId1",
|
5624
|
+
# "ComponentValue": "2023年01月01日"
|
5625
|
+
# }
|
5626
|
+
# ```
|
5627
|
+
# 当控件的 ComponentType='DISTRICT'时,FormField.ComponentValue填入省市区内容;
|
5628
|
+
# ```
|
5629
|
+
# FormFiled输入示例:
|
5630
|
+
# {
|
5631
|
+
# "ComponentId": "componentId1",
|
5632
|
+
# "ComponentValue": "广东省深圳市福田区"
|
5633
|
+
# }
|
5634
|
+
# ```
|
5495
5635
|
# 【数据表格传参说明】
|
5496
|
-
#
|
5636
|
+
# 当控件的 ComponentType='DYNAMIC_TABLE'时,FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充数据表格(支持内容的单元格合并)
|
5497
5637
|
# 输入示例1:
|
5498
5638
|
|
5499
5639
|
# ```
|
@@ -6355,7 +6495,7 @@ module TencentCloud
|
|
6355
6495
|
# - SIGN_SEAL-默认为印章控件类型
|
6356
6496
|
# - SIGN_SIGNATURE-手写签名控件类型
|
6357
6497
|
# @type ApproverSignComponentType: String
|
6358
|
-
# @param ApproverSignRole: 参与方在合同中的角色是按照创建合同的时候来排序的; 解除协议会将第一个参与人叫甲方,
|
6498
|
+
# @param ApproverSignRole: 参与方在合同中的角色是按照创建合同的时候来排序的; 解除协议会将第一个参与人叫甲方, 第二个叫乙方,第三个叫丙方,以此类推。 如果想改动参与人的角色名字, 可以设置此签署方自定义控件别名字段,最大20个字符
|
6359
6499
|
# @type ApproverSignRole: String
|
6360
6500
|
|
6361
6501
|
attr_accessor :Name, :Mobile, :RelievedApproverReceiptId, :ApproverType, :ApproverSignComponentType, :ApproverSignRole
|
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.627
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-08-
|
11
|
+
date: 2023-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|