tencentcloud-sdk-essbasic 3.0.859 → 3.0.860

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210526/models.rb +11 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4acd3c7b697c6de93b8a4f9ccb5cfb6e670d5da0
4
- data.tar.gz: 32d3a5b978d80416c82f334820a5b07c3931ecd4
3
+ metadata.gz: 8f67c0eecef11a582e57bba006f47c9bdfb66bf5
4
+ data.tar.gz: 2d8ca4b74a5cc28bd85acc68b3f39be32384e5d2
5
5
  SHA512:
6
- metadata.gz: f965f28638d182d4574636fdda87c5430878001e2730de4a9f233d4b9a61820d06ea0b7e47c6bb18e9c74c72ae4bf50b9e598234dfb029c39c2f04e2f29424a2
7
- data.tar.gz: bc44fbaa1e961fd697ae7f3f93f359844f0f5e13eb81fce9889bf79a1bb0f594bd9f770f5f20a025177bc53d0d737e2e34d28adce65689baf104274d81cd8951
6
+ metadata.gz: 773048bc601229591964863a34e87b5f7f3b6a9dfb3aa46b638363888fa2979d38438f95d82dbfc004238c8cdc622974e15001a503f5347a4b23befe97063a89
7
+ data.tar.gz: 530de773ec99dac1e8191b66acf427090a2a2ec5a2eec63c94f01e04db42b5ba71edef15b58fdd075fcb35e641107005d1300c2b70629d867fe977f735adb65f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.859
1
+ 3.0.860
@@ -5435,12 +5435,16 @@ module TencentCloud
5435
5435
  # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
5436
5436
  # @param FlowId: 合同流程ID,为32位字符串。建议开发者妥善保存此流程ID,以便于顺利进行后续操作。可登录腾讯电子签控制台,在 "合同"->"合同中心" 中查看某个合同的FlowId(在页面中展示为合同ID)。
5437
5437
  # @type FlowId: String
5438
+ # @param ExpiredOn: 链接/二维码的有效截止时间,格式为unix时间戳。最长不超过 2099年12月31日(4102415999)。
5439
+ # 默认值为有效期为当前时间后7天。
5440
+ # @type ExpiredOn: Integer
5438
5441
 
5439
- attr_accessor :Agent, :FlowId
5442
+ attr_accessor :Agent, :FlowId, :ExpiredOn
5440
5443
 
5441
- def initialize(agent=nil, flowid=nil)
5444
+ def initialize(agent=nil, flowid=nil, expiredon=nil)
5442
5445
  @Agent = agent
5443
5446
  @FlowId = flowid
5447
+ @ExpiredOn = expiredon
5444
5448
  end
5445
5449
 
5446
5450
  def deserialize(params)
@@ -5449,6 +5453,7 @@ module TencentCloud
5449
5453
  @Agent.deserialize(params['Agent'])
5450
5454
  end
5451
5455
  @FlowId = params['FlowId']
5456
+ @ExpiredOn = params['ExpiredOn']
5452
5457
  end
5453
5458
  end
5454
5459
 
@@ -6888,7 +6893,7 @@ module TencentCloud
6888
6893
  # <ul><li>**0**:(默认)模板列表及详情</li>
6889
6894
  # <li>**1**:仅模板列表, 不会返回模板中的签署控件, 填写控件, 参与方角色列表等信息</li></ul>
6890
6895
  # @type ContentType: Integer
6891
- # @param TemplateIds: 合同模板ID数组,每一个合同模板ID为32位字符串, 最多支持200个模板的批量查询。
6896
+ # @param TemplateIds: 合同模板ID数组,每一个合同模板ID为32位字符串, 最多支持100个模板的批量查询。
6892
6897
 
6893
6898
  # 注意:
6894
6899
  # 1.` 此参数TemplateIds与TemplateId互为独立,若两者均传入,以TemplateId为准。`
@@ -6900,7 +6905,7 @@ module TencentCloud
6900
6905
  # @type TemplateIds: Array
6901
6906
  # @param Limit: 指定每页返回的数据条数,和Offset参数配合使用。
6902
6907
 
6903
- # 注:`1.默认值为20,单页做大值为200。`
6908
+ # 注:`1.默认值为20,单页做大值为100。`
6904
6909
  # @type Limit: Integer
6905
6910
  # @param Offset: 查询结果分页返回,指定从第几页返回数据,和Limit参数配合使用。
6906
6911
 
@@ -10101,8 +10106,10 @@ module TencentCloud
10101
10106
  # @param UserId: 员工在电子签平台的用户ID
10102
10107
  # @type UserId: String
10103
10108
  # @param DisplayName: 显示的员工名
10109
+ # 注意:2024-07-08 及之后创建的应用号,该字段返回的是打码信息
10104
10110
  # @type DisplayName: String
10105
10111
  # @param Mobile: 员工手机号
10112
+ # 注意:2024-07-08 及之后创建的应用号,该字段返回的是打码信息
10106
10113
  # @type Mobile: String
10107
10114
  # @param Email: 员工邮箱
10108
10115
  # 注意:此字段可能返回 null,表示取不到有效值。
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.859
4
+ version: 3.0.860
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-07 00:00:00.000000000 Z
11
+ date: 2024-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common