tencentcloud-sdk-ess 3.0.1092 → 3.0.1094

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d1e1426480ffacabfd4ea8897fcd7a7ff27cb6be
4
- data.tar.gz: 455ff18c5cec94638fd2b78e6a1d2a02cad5309c
3
+ metadata.gz: 57a8747291bed803f97103272f02e92d86d6f9f2
4
+ data.tar.gz: 73fbc47bbfc23e03bd3fe90f906c9c913b750bd2
5
5
  SHA512:
6
- metadata.gz: 1d5c9ce39ad37346bfb30bb428e7deb36084a624b7e7cf4c4e746518ad8d6be20772506c4159bef1cdbed4de25f2d3fda1e7cb1b78c6b2e0c2e2bbceb19cb8c7
7
- data.tar.gz: f8d3d10e8c3b13b46fb69d91fe6741befa2ad5fa72abb53daf0a934953e1bfd0cb7a134a0feb56a9bb5f1863ccfd2ecda06529406fb0e24664e4f3a15233d41a
6
+ metadata.gz: 7299734c8849ee78afa8ccc80e39ee177c93cf3a1661158fafb3bad49f366fd1b630bfd14acdce1b60c05a4792930a96811e96f8eb1974f94f2135351d4c788a
7
+ data.tar.gz: 66a5f1edebdba6e16f1e5ff52908d979221b8da9c4a96c13b9d074047e45562e2317e79a46ad27df7f82a27a33a60d1a25f58b7beb6384f0b724993316533d4d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1092
1
+ 3.0.1094
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
6
6
  # you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
6
6
  # you may not use this file except in compliance with the License.
@@ -10371,6 +10371,7 @@ module TencentCloud
10371
10371
  # @param FlowDescription: 合同流程描述信息。
10372
10372
  # @type FlowDescription: String
10373
10373
  # @param FlowType: 合同流程的类别分类(如销售合同/入职合同等)。
10374
+ # 该字段将被废弃,不建议使用。 请使用 UserFlowType。
10374
10375
  # @type FlowType: String
10375
10376
  # @param FlowStatus: 合同流程当前的签署状态, 会存在下列的状态值
10376
10377
  # <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li>
@@ -10394,10 +10395,17 @@ module TencentCloud
10394
10395
  # @type Creator: String
10395
10396
  # @param Deadline: 合同流程的签署截止时间,格式为Unix标准时间戳(秒)。
10396
10397
  # @type Deadline: Integer
10398
+ # @param UserFlowType: 用户合同的自定义分类。
10397
10399
 
10398
- attr_accessor :FlowId, :FlowName, :FlowDescription, :FlowType, :FlowStatus, :CreatedOn, :FlowMessage, :Creator, :Deadline
10400
+ # 自定义合同类型的位置,在下图所示地方:
10401
+ # ![image](https://qcloudimg.tencent-cloud.cn/raw/00d72934c31bd49115a566e4e1a4530d.png)
10402
+ # @type UserFlowType: :class:`Tencentcloud::Ess.v20201111.models.UserFlowType`
10403
+ # @param TemplateId: 发起模板时,使用的模板Id
10404
+ # @type TemplateId: String
10405
+
10406
+ attr_accessor :FlowId, :FlowName, :FlowDescription, :FlowType, :FlowStatus, :CreatedOn, :FlowMessage, :Creator, :Deadline, :UserFlowType, :TemplateId
10399
10407
 
10400
- def initialize(flowid=nil, flowname=nil, flowdescription=nil, flowtype=nil, flowstatus=nil, createdon=nil, flowmessage=nil, creator=nil, deadline=nil)
10408
+ def initialize(flowid=nil, flowname=nil, flowdescription=nil, flowtype=nil, flowstatus=nil, createdon=nil, flowmessage=nil, creator=nil, deadline=nil, userflowtype=nil, templateid=nil)
10401
10409
  @FlowId = flowid
10402
10410
  @FlowName = flowname
10403
10411
  @FlowDescription = flowdescription
@@ -10407,6 +10415,8 @@ module TencentCloud
10407
10415
  @FlowMessage = flowmessage
10408
10416
  @Creator = creator
10409
10417
  @Deadline = deadline
10418
+ @UserFlowType = userflowtype
10419
+ @TemplateId = templateid
10410
10420
  end
10411
10421
 
10412
10422
  def deserialize(params)
@@ -10419,6 +10429,11 @@ module TencentCloud
10419
10429
  @FlowMessage = params['FlowMessage']
10420
10430
  @Creator = params['Creator']
10421
10431
  @Deadline = params['Deadline']
10432
+ unless params['UserFlowType'].nil?
10433
+ @UserFlowType = UserFlowType.new
10434
+ @UserFlowType.deserialize(params['UserFlowType'])
10435
+ end
10436
+ @TemplateId = params['TemplateId']
10422
10437
  end
10423
10438
  end
10424
10439
 
@@ -10707,6 +10722,7 @@ module TencentCloud
10707
10722
  # @param FlowName: 合同流程的名称(可自定义此名称),长度不能超过200,只能由中文、字母、数字和下划线组成。
10708
10723
  # @type FlowName: String
10709
10724
  # @param FlowType: 合同流程的类别分类(如销售合同/入职合同等)。
10725
+ # 该字段将被废弃,不建议使用。
10710
10726
  # @type FlowType: String
10711
10727
  # @param FlowStatus: 合同流程当前的签署状态, 会存在下列的状态值 <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li> <li> **1** : 待签署</li> <li> **2** : 部分签署</li> <li> **3** : 已拒签</li> <li> **4** : 已签署</li> <li> **5** : 已过期</li> <li> **6** : 已撤销</li> <li> **7** : 未开启流程(合同中存在填写环节)</li> <li> **8** : 等待填写</li> <li> **9** : 部分填写</li> <li> **10** : 已拒填</li> <li> **16** : 已失效(可能因为参与方修改姓名等原因)</li> <li> **21** : 已解除</li></ul>
10712
10728
  # @type FlowStatus: Integer
@@ -10722,10 +10738,17 @@ module TencentCloud
10722
10738
  # @type CcInfos: Array
10723
10739
  # @param Creator: 合同流程发起方的员工编号, 即员工在腾讯电子签平台的唯一身份标识。
10724
10740
  # @type Creator: String
10741
+ # @param UserFlowType: 用户合同的自定义分类。
10725
10742
 
10726
- attr_accessor :FlowId, :FlowName, :FlowType, :FlowStatus, :FlowMessage, :FlowDescription, :CreatedOn, :FlowApproverInfos, :CcInfos, :Creator
10743
+ # 自定义合同类型的位置,在下图所示地方:
10744
+ # ![image](https://qcloudimg.tencent-cloud.cn/raw/00d72934c31bd49115a566e4e1a4530d.png)
10745
+ # @type UserFlowType: :class:`Tencentcloud::Ess.v20201111.models.UserFlowType`
10746
+ # @param TemplateId: 发起模板时,使用的模板Id
10747
+ # @type TemplateId: String
10748
+
10749
+ attr_accessor :FlowId, :FlowName, :FlowType, :FlowStatus, :FlowMessage, :FlowDescription, :CreatedOn, :FlowApproverInfos, :CcInfos, :Creator, :UserFlowType, :TemplateId
10727
10750
 
10728
- def initialize(flowid=nil, flowname=nil, flowtype=nil, flowstatus=nil, flowmessage=nil, flowdescription=nil, createdon=nil, flowapproverinfos=nil, ccinfos=nil, creator=nil)
10751
+ def initialize(flowid=nil, flowname=nil, flowtype=nil, flowstatus=nil, flowmessage=nil, flowdescription=nil, createdon=nil, flowapproverinfos=nil, ccinfos=nil, creator=nil, userflowtype=nil, templateid=nil)
10729
10752
  @FlowId = flowid
10730
10753
  @FlowName = flowname
10731
10754
  @FlowType = flowtype
@@ -10736,6 +10759,8 @@ module TencentCloud
10736
10759
  @FlowApproverInfos = flowapproverinfos
10737
10760
  @CcInfos = ccinfos
10738
10761
  @Creator = creator
10762
+ @UserFlowType = userflowtype
10763
+ @TemplateId = templateid
10739
10764
  end
10740
10765
 
10741
10766
  def deserialize(params)
@@ -10763,6 +10788,11 @@ module TencentCloud
10763
10788
  end
10764
10789
  end
10765
10790
  @Creator = params['Creator']
10791
+ unless params['UserFlowType'].nil?
10792
+ @UserFlowType = UserFlowType.new
10793
+ @UserFlowType.deserialize(params['UserFlowType'])
10794
+ end
10795
+ @TemplateId = params['TemplateId']
10766
10796
  end
10767
10797
  end
10768
10798
 
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.1092
4
+ version: 3.0.1094
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-07-03 00:00:00.000000000 Z
11
+ date: 2025-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common