tencentcloud-sdk-essbasic 3.0.673 → 3.0.675

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d0611f3edc45b9233e7fbd9808361ee663b253a1
4
- data.tar.gz: 64c07a513636da8cf18498e2674e0eeb7ba01f5e
3
+ metadata.gz: c2e25d315f4ae69a9e8cb7f253bfe2238e533953
4
+ data.tar.gz: 49ec5b45cdab4f1391473a1b6cc6a2783bf3bf23
5
5
  SHA512:
6
- metadata.gz: cf315ca493ebf72041ea2c39eeafd206824a04a6c96eef6c3ff4baf9862a5163c35f3f79c6f0a57cf709b9be43b3ad49866cafd339ae729439354bf671c72667
7
- data.tar.gz: 334f65da43e243e57ab8dc23711f5df77ee907274a357d56ddf5a4c7096c7beaac14255e47cf650d1c9184dfec8110f61dc67131f39d747e376851d0cb25bb58
6
+ metadata.gz: 99b8095e06a8afda870a336fb30fb2565a189f1863245ddf5f509c066b79aa1696218adb119ccd60bbe9cb81651d1833ccac9b081649f125fcc4f75926f6b1ec
7
+ data.tar.gz: 8fcff0264298e84a5ff080c747cfe1a04da066ca84f33182016e2d668e162fafd32ac5cb0ae6ae8546c9384c898a1ccd070c6eb9f34559b3ecf8b9f74b3e5754
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.673
1
+ 3.0.675
@@ -2,12 +2,12 @@
2
2
 
3
3
  require 'tencentcloud-sdk-common'
4
4
 
5
- require_relative 'v20201222/client'
6
- require_relative 'v20201222/models'
7
-
8
5
  require_relative 'v20210526/client'
9
6
  require_relative 'v20210526/models'
10
7
 
8
+ require_relative 'v20201222/client'
9
+ require_relative 'v20201222/models'
10
+
11
11
  module TencentCloud
12
12
  module Essbasic
13
13
  end
@@ -1022,16 +1022,29 @@ module TencentCloud
1022
1022
 
1023
1023
  # ChannelCreateFlowApprovers返回参数结构体
1024
1024
  class ChannelCreateFlowApproversResponse < TencentCloud::Common::AbstractModel
1025
+ # @param FillError: 批量补充签署人时,补充失败的报错说明
1026
+ # 注:`目前仅补充动态签署人时会返回补充失败的原因`
1027
+ # 注意:此字段可能返回 null,表示取不到有效值。
1028
+ # @type FillError: Array
1025
1029
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1026
1030
  # @type RequestId: String
1027
1031
 
1028
- attr_accessor :RequestId
1032
+ attr_accessor :FillError, :RequestId
1029
1033
 
1030
- def initialize(requestid=nil)
1034
+ def initialize(fillerror=nil, requestid=nil)
1035
+ @FillError = fillerror
1031
1036
  @RequestId = requestid
1032
1037
  end
1033
1038
 
1034
1039
  def deserialize(params)
1040
+ unless params['FillError'].nil?
1041
+ @FillError = []
1042
+ params['FillError'].each do |i|
1043
+ fillerror_tmp = FillError.new
1044
+ fillerror_tmp.deserialize(i)
1045
+ @FillError << fillerror_tmp
1046
+ end
1047
+ end
1035
1048
  @RequestId = params['RequestId']
1036
1049
  end
1037
1050
  end
@@ -4951,11 +4964,14 @@ module TencentCloud
4951
4964
  # 企业扩展服务授权信息
4952
4965
  class ExtentServiceAuthInfo < TencentCloud::Common::AbstractModel
4953
4966
  # @param Type: 扩展服务类型
4954
- # AUTO_SIGN 企业静默签(自动签署)
4955
- # OVERSEA_SIGN 企业与港澳台居民*签署合同
4956
- # MOBILE_CHECK_APPROVER 使用手机号验证签署方身份
4957
- # PAGING_SEAL 骑缝章
4958
- # DOWNLOAD_FLOW 授权平台企业下载合同
4967
+ # <ul>
4968
+ # <li>AUTO_SIGN 企业静默签(自动签署)</li>
4969
+ # <li> OVERSEA_SIGN 企业与港澳台居民*签署合同</li>
4970
+ # <li> MOBILE_CHECK_APPROVER 使用手机号验证签署方身份</li>
4971
+ # <li> PAGING_SEAL 骑缝章</li>
4972
+ # <li> DOWNLOAD_FLOW 授权渠道下载合同 </li>
4973
+ # <li>AGE_LIMIT_EXPANSION 拓宽签署方年龄限制</li>
4974
+ # </ul>
4959
4975
  # @type Type: String
4960
4976
  # @param Name: 扩展服务名称
4961
4977
  # @type Name: String
@@ -5052,6 +5068,28 @@ module TencentCloud
5052
5068
  end
5053
5069
  end
5054
5070
 
5071
+ # 批量补充签署人时,补充失败的报错说明
5072
+ class FillError < TencentCloud::Common::AbstractModel
5073
+ # @param RecipientId: 为签署方经办人在签署合同中的参与方ID,与控件绑定,是控件的归属方,ID为32位字符串。与入参中补充的签署人角色ID对应,批量补充部分失败返回对应的错误信息。
5074
+ # 注意:此字段可能返回 null,表示取不到有效值。
5075
+ # @type RecipientId: String
5076
+ # @param ErrMessage: 补充失败错误说明
5077
+ # 注意:此字段可能返回 null,表示取不到有效值。
5078
+ # @type ErrMessage: String
5079
+
5080
+ attr_accessor :RecipientId, :ErrMessage
5081
+
5082
+ def initialize(recipientid=nil, errmessage=nil)
5083
+ @RecipientId = recipientid
5084
+ @ErrMessage = errmessage
5085
+ end
5086
+
5087
+ def deserialize(params)
5088
+ @RecipientId = params['RecipientId']
5089
+ @ErrMessage = params['ErrMessage']
5090
+ end
5091
+ end
5092
+
5055
5093
  # 文档内的填充控件返回结构体,返回控件的基本信息和填写内容值
5056
5094
  class FilledComponent < TencentCloud::Common::AbstractModel
5057
5095
  # @param ComponentId: 控件Id
@@ -5834,7 +5872,181 @@ module TencentCloud
5834
5872
  end
5835
5873
  end
5836
5874
 
5837
- # 此结构 (FormField) 用于描述内容控件填充结构。
5875
+ # 电子文档的控件填充信息。按照控件类型进行相应的填充。
5876
+
5877
+ # 当控件的 ComponentType='TEXT'时,FormField.ComponentValue填入文本内容
5878
+ # ```
5879
+ # FormField输入示例:
5880
+ # {
5881
+ # "ComponentId": "componentId1",
5882
+ # "ComponentValue": "文本内容"
5883
+ # }
5884
+ # ```
5885
+ # 当控件的 ComponentType='MULTI_LINE_TEXT'时,FormField.ComponentValue填入文本内容,支持自动换行。
5886
+ # ```
5887
+ # FormField输入示例:
5888
+ # {
5889
+ # "ComponentId": "componentId1",
5890
+ # "ComponentValue": "多行文本内容"
5891
+ # }
5892
+ # ```
5893
+ # 当控件的 ComponentType='CHECK_BOX'时,FormField.ComponentValue填入true或false文本
5894
+ # ```
5895
+ # FormField输入示例:
5896
+ # {
5897
+ # "ComponentId": "componentId1",
5898
+ # "ComponentValue": "true"
5899
+ # }
5900
+ # ```
5901
+ # 当控件的 ComponentType='FILL_IMAGE'时,FormField.ComponentValue填入图片的资源ID
5902
+ # ```
5903
+ # FormField输入示例:
5904
+ # {
5905
+ # "ComponentId": "componentId1",
5906
+ # "ComponentValue": "yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxxx"
5907
+ # }
5908
+ # ```
5909
+ # 当控件的 ComponentType='ATTACHMENT'时,FormField.ComponentValue填入附件图片的资源ID列表,以逗号分隔,单个附件控件最多支持6个资源ID;
5910
+ # ```
5911
+ # FormField输入示例:
5912
+ # {
5913
+ # "ComponentId": "componentId1",
5914
+ # "ComponentValue": "yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx1,yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx2,yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx3"
5915
+ # }
5916
+ # ```
5917
+ # 当控件的 ComponentType='SELECTOR'时,FormField.ComponentValue填入选择的选项内容;
5918
+ # ```
5919
+ # FormField输入示例:
5920
+ # {
5921
+ # "ComponentId": "componentId1",
5922
+ # "ComponentValue": "选择的内容"
5923
+ # }
5924
+ # ```
5925
+ # 当控件的 ComponentType='DATE'时,FormField.ComponentValue填入日期内容;
5926
+ # ```
5927
+ # FormField输入示例:
5928
+ # {
5929
+ # "ComponentId": "componentId1",
5930
+ # "ComponentValue": "2023年01月01日"
5931
+ # }
5932
+ # ```
5933
+ # 当控件的 ComponentType='DISTRICT'时,FormField.ComponentValue填入省市区内容;
5934
+ # ```
5935
+ # FormField输入示例:
5936
+ # {
5937
+ # "ComponentId": "componentId1",
5938
+ # "ComponentValue": "广东省深圳市福田区"
5939
+ # }
5940
+ # ```
5941
+ # 【数据表格传参说明】
5942
+ # 当控件的 ComponentType='DYNAMIC_TABLE'时,FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充数据表格(支持内容的单元格合并)
5943
+ # 输入示例1:
5944
+
5945
+ # ```
5946
+ # {
5947
+ # "headers":[
5948
+ # {
5949
+ # "content":"head1"
5950
+ # },
5951
+ # {
5952
+ # "content":"head2"
5953
+ # },
5954
+ # {
5955
+ # "content":"head3"
5956
+ # }
5957
+ # ],
5958
+ # "rowCount":3,
5959
+ # "body":{
5960
+ # "cells":[
5961
+ # {
5962
+ # "rowStart":1,
5963
+ # "rowEnd":1,
5964
+ # "columnStart":1,
5965
+ # "columnEnd":1,
5966
+ # "content":"123"
5967
+ # },
5968
+ # {
5969
+ # "rowStart":2,
5970
+ # "rowEnd":3,
5971
+ # "columnStart":1,
5972
+ # "columnEnd":2,
5973
+ # "content":"456"
5974
+ # },
5975
+ # {
5976
+ # "rowStart":3,
5977
+ # "rowEnd":3,
5978
+ # "columnStart":3,
5979
+ # "columnEnd":3,
5980
+ # "content":"789"
5981
+ # }
5982
+ # ]
5983
+ # }
5984
+ # }
5985
+
5986
+ # ```
5987
+
5988
+ # 输入示例2(表格表头宽度比例配置):
5989
+
5990
+ # ```
5991
+ # {
5992
+ # "headers":[
5993
+ # {
5994
+ # "content":"head1",
5995
+ # "widthPercent": 30
5996
+ # },
5997
+ # {
5998
+ # "content":"head2",
5999
+ # "widthPercent": 30
6000
+ # },
6001
+ # {
6002
+ # "content":"head3",
6003
+ # "widthPercent": 40
6004
+ # }
6005
+ # ],
6006
+ # "rowCount":3,
6007
+ # "body":{
6008
+ # "cells":[
6009
+ # {
6010
+ # "rowStart":1,
6011
+ # "rowEnd":1,
6012
+ # "columnStart":1,
6013
+ # "columnEnd":1,
6014
+ # "content":"123"
6015
+ # },
6016
+ # {
6017
+ # "rowStart":2,
6018
+ # "rowEnd":3,
6019
+ # "columnStart":1,
6020
+ # "columnEnd":2,
6021
+ # "content":"456"
6022
+ # },
6023
+ # {
6024
+ # "rowStart":3,
6025
+ # "rowEnd":3,
6026
+ # "columnStart":3,
6027
+ # "columnEnd":3,
6028
+ # "content":"789"
6029
+ # }
6030
+ # ]
6031
+ # }
6032
+ # }
6033
+
6034
+ # ```
6035
+ # 表格参数说明
6036
+
6037
+ # | 名称 | 类型 | 描述 |
6038
+ # | ------------------- | ------- | ------------------------------------------------- |
6039
+ # | headers | Array | 表头:不超过10列,不支持单元格合并,字数不超过100 |
6040
+ # | rowCount | Integer | 表格内容最大行数 |
6041
+ # | cells.N.rowStart | Integer | 单元格坐标:行起始index |
6042
+ # | cells.N.rowEnd | Integer | 单元格坐标:行结束index |
6043
+ # | cells.N.columnStart | Integer | 单元格坐标:列起始index |
6044
+ # | cells.N.columnEnd | Integer | 单元格坐标:列结束index |
6045
+ # | cells.N.content | String | 单元格内容,字数不超过100 |
6046
+
6047
+ # 表格参数headers说明
6048
+ # widthPercent Integer 表头单元格列占总表头的比例,例如1:30表示 此列占表头的30%,不填写时列宽度平均拆分;例如2:总2列,某一列填写40,剩余列可以为空,按照60计算。;例如3:总3列,某一列填写30,剩余2列可以为空,分别为(100-30)/2=35
6049
+ # content String 表头单元格内容,字数不超过100
5838
6050
  class FormField < TencentCloud::Common::AbstractModel
5839
6051
  # @param ComponentValue: 控件填充值,ComponentType和传入值格式对应关系如下:
5840
6052
  # <ul>
@@ -5943,11 +6155,14 @@ module TencentCloud
5943
6155
  # 注: 此接口 参数Agent. ProxyOperator.OpenId 需要传递超管或者法人的OpenId
5944
6156
  # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
5945
6157
  # @param ServiceType: 扩展服务类型
5946
- # AUTO_SIGN 企业静默签(自动签署)
5947
- # OVERSEA_SIGN 企业与港澳台居民*签署合同
5948
- # MOBILE_CHECK_APPROVER 使用手机号验证签署方身份
5949
- # PAGING_SEAL 骑缝章
5950
- # DOWNLOAD_FLOW 授权渠道下载合同
6158
+ # <ul>
6159
+ # <li>AUTO_SIGN 企业自动签(自动签署)</li>
6160
+ # <li> OVERSEA_SIGN 企业与港澳台居民*签署合同</li>
6161
+ # <li> MOBILE_CHECK_APPROVER 使用手机号验证签署方身份</li>
6162
+ # <li> PAGING_SEAL 骑缝章</li>
6163
+ # <li> DOWNLOAD_FLOW 授权渠道下载合同 </li>
6164
+ # <li>AGE_LIMIT_EXPANSION 拓宽签署方年龄限制</li>
6165
+ # </ul>
5951
6166
  # @type ServiceType: String
5952
6167
  # @param Operate: 操作类型
5953
6168
  # OPEN:开通
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-essbasic
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.673
4
+ version: 3.0.675
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-10-10 00:00:00.000000000 Z
11
+ date: 2023-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,11 +33,11 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/tencentcloud-sdk-essbasic.rb
37
- - lib/v20201222/models.rb
38
36
  - lib/v20201222/client.rb
39
- - lib/v20210526/models.rb
37
+ - lib/v20201222/models.rb
38
+ - lib/tencentcloud-sdk-essbasic.rb
40
39
  - lib/v20210526/client.rb
40
+ - lib/v20210526/models.rb
41
41
  - lib/VERSION
42
42
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
43
43
  licenses: