tencentcloud-sdk-essbasic 3.0.576 → 3.0.577

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 +22 -14
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0ee777df8166817cb42a6a2afd4357ea0f4a1dc7
4
- data.tar.gz: ae91c0818967da0eeb7dda46ac1c8d9a8e18937e
3
+ metadata.gz: 37bddd7ee592b9e2b0b66483090c4027b1355ec9
4
+ data.tar.gz: 62608a63a9b8714ec0e3e3e20d9de0b7a620798d
5
5
  SHA512:
6
- metadata.gz: 257946f6a5efcbcbf8cdeb5bc42110467209d90c108c32d9ccf03c59be4d2d1a460d49da1906dd81c22d7c2a2ebc5e580be383b758173e2eb42f7c29678192bc
7
- data.tar.gz: 5db47a4c29466dd751a814f82dd7e64c03939602eb5aed570353072c66d7ac07f6d9af37e50a3fc15bb5b87054f6cfa9c3a7fa822830dd4a95cb9db13faf74d9
6
+ metadata.gz: cc86902b30f446191042055b60029c0e978e25af1f1e2fb587e9b128f163bbe750ab40893c7d070688d79fc2c7a6d63fe0ddf9e6ae719905329fd6b8f6b59afd
7
+ data.tar.gz: cd3cae1edc2e55a57ddf3e3ce2ee34575e0692b301b236c5a1fe417711e105a6ba237fcaf62f1267092cc2387ce41828c86fb9f0928a20de8ebbc75dfa4b9163
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.576
1
+ 3.0.577
@@ -154,10 +154,12 @@ module TencentCloud
154
154
  # @type UserData: String
155
155
  # @param CcInfos: 抄送人信息
156
156
  # @type CcInfos: Array
157
+ # @param NeedCreateReview: 是否需要发起前审核,当指定NeedCreateReview=true,则发起后,需要使用接口:ChannelCreateFlowSignReview,来完成发起前审核,审核通过后,可以继续查看,签署合同
158
+ # @type NeedCreateReview: Boolean
157
159
 
158
- attr_accessor :FlowName, :FlowType, :FlowDescription, :Deadline, :Unordered, :IntelligentStatus, :FormFields, :NeedSignReview, :UserData, :CcInfos
160
+ attr_accessor :FlowName, :FlowType, :FlowDescription, :Deadline, :Unordered, :IntelligentStatus, :FormFields, :NeedSignReview, :UserData, :CcInfos, :NeedCreateReview
159
161
 
160
- def initialize(flowname=nil, flowtype=nil, flowdescription=nil, deadline=nil, unordered=nil, intelligentstatus=nil, formfields=nil, needsignreview=nil, userdata=nil, ccinfos=nil)
162
+ def initialize(flowname=nil, flowtype=nil, flowdescription=nil, deadline=nil, unordered=nil, intelligentstatus=nil, formfields=nil, needsignreview=nil, userdata=nil, ccinfos=nil, needcreatereview=nil)
161
163
  @FlowName = flowname
162
164
  @FlowType = flowtype
163
165
  @FlowDescription = flowdescription
@@ -168,6 +170,7 @@ module TencentCloud
168
170
  @NeedSignReview = needsignreview
169
171
  @UserData = userdata
170
172
  @CcInfos = ccinfos
173
+ @NeedCreateReview = needcreatereview
171
174
  end
172
175
 
173
176
  def deserialize(params)
@@ -195,6 +198,7 @@ module TencentCloud
195
198
  @CcInfos << ccinfo_tmp
196
199
  end
197
200
  end
201
+ @NeedCreateReview = params['NeedCreateReview']
198
202
  end
199
203
  end
200
204
 
@@ -1699,21 +1703,21 @@ module TencentCloud
1699
1703
  # @type Offset: Integer
1700
1704
  # @param Limit: 查询数量,最大200
1701
1705
  # @type Limit: String
1702
- # @param Operator: 操作人信息
1703
- # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
1704
1706
  # @param Filters: 查询的关键字段:
1705
- # Key:"RoleType",Vales:["1"]查询系统角色,Values:["2]查询自定义角色
1707
+ # Key:"RoleType",Values:["1"]查询系统角色,Values:["2"]查询自定义角色
1706
1708
  # Key:"RoleStatus",Values:["1"]查询启用角色,Values:["2"]查询禁用角色
1707
1709
  # @type Filters: Array
1710
+ # @param Operator: 操作人信息
1711
+ # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
1708
1712
 
1709
- attr_accessor :Agent, :Offset, :Limit, :Operator, :Filters
1713
+ attr_accessor :Agent, :Offset, :Limit, :Filters, :Operator
1710
1714
 
1711
- def initialize(agent=nil, offset=nil, limit=nil, operator=nil, filters=nil)
1715
+ def initialize(agent=nil, offset=nil, limit=nil, filters=nil, operator=nil)
1712
1716
  @Agent = agent
1713
1717
  @Offset = offset
1714
1718
  @Limit = limit
1715
- @Operator = operator
1716
1719
  @Filters = filters
1720
+ @Operator = operator
1717
1721
  end
1718
1722
 
1719
1723
  def deserialize(params)
@@ -1723,10 +1727,6 @@ module TencentCloud
1723
1727
  end
1724
1728
  @Offset = params['Offset']
1725
1729
  @Limit = params['Limit']
1726
- unless params['Operator'].nil?
1727
- @Operator = UserInfo.new
1728
- @Operator.deserialize(params['Operator'])
1729
- end
1730
1730
  unless params['Filters'].nil?
1731
1731
  @Filters = []
1732
1732
  params['Filters'].each do |i|
@@ -1735,6 +1735,10 @@ module TencentCloud
1735
1735
  @Filters << filter_tmp
1736
1736
  end
1737
1737
  end
1738
+ unless params['Operator'].nil?
1739
+ @Operator = UserInfo.new
1740
+ @Operator.deserialize(params['Operator'])
1741
+ end
1738
1742
  end
1739
1743
  end
1740
1744
 
@@ -3609,10 +3613,12 @@ module TencentCloud
3609
3613
  # @type FlowApproverInfos: Array
3610
3614
  # @param CcInfos: 合同(流程)关注方信息列表
3611
3615
  # @type CcInfos: Array
3616
+ # @param NeedCreateReview: 是否需要发起前审批,当NeedCreateReview为true,表明当前流程是需要发起前审核的合同,可能无法进行查看,签署操作,需要等审核完成后,才可以继续后续流程
3617
+ # @type NeedCreateReview: Boolean
3612
3618
 
3613
- attr_accessor :FlowId, :FlowName, :FlowType, :FlowStatus, :FlowMessage, :CreateOn, :DeadLine, :CustomData, :FlowApproverInfos, :CcInfos
3619
+ attr_accessor :FlowId, :FlowName, :FlowType, :FlowStatus, :FlowMessage, :CreateOn, :DeadLine, :CustomData, :FlowApproverInfos, :CcInfos, :NeedCreateReview
3614
3620
 
3615
- def initialize(flowid=nil, flowname=nil, flowtype=nil, flowstatus=nil, flowmessage=nil, createon=nil, deadline=nil, customdata=nil, flowapproverinfos=nil, ccinfos=nil)
3621
+ def initialize(flowid=nil, flowname=nil, flowtype=nil, flowstatus=nil, flowmessage=nil, createon=nil, deadline=nil, customdata=nil, flowapproverinfos=nil, ccinfos=nil, needcreatereview=nil)
3616
3622
  @FlowId = flowid
3617
3623
  @FlowName = flowname
3618
3624
  @FlowType = flowtype
@@ -3623,6 +3629,7 @@ module TencentCloud
3623
3629
  @CustomData = customdata
3624
3630
  @FlowApproverInfos = flowapproverinfos
3625
3631
  @CcInfos = ccinfos
3632
+ @NeedCreateReview = needcreatereview
3626
3633
  end
3627
3634
 
3628
3635
  def deserialize(params)
@@ -3650,6 +3657,7 @@ module TencentCloud
3650
3657
  @CcInfos << flowapproverdetail_tmp
3651
3658
  end
3652
3659
  end
3660
+ @NeedCreateReview = params['NeedCreateReview']
3653
3661
  end
3654
3662
  end
3655
3663
 
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.576
4
+ version: 3.0.577
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-05-24 00:00:00.000000000 Z
11
+ date: 2023-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common