tencentcloud-sdk-ess 3.0.602 → 3.0.603

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201111/models.rb +36 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ad69a05bf91b3205182325e254a33b139f0466ae
4
- data.tar.gz: 632ddaac3e6b7ee9761fe22788776c49d5c32caa
3
+ metadata.gz: 16a65096356ebea060794f0ee2e84a94aba4fe1b
4
+ data.tar.gz: 5ea4ff33553da4a4cc4b75c4aa8659c33fc155f9
5
5
  SHA512:
6
- metadata.gz: 9a7d83bd6acfbfee3692bd39f5a708dcf79f4a6998ab9f4ea36b431babdc62c3485b6368548e4db1dd0bf107babd35024af5b421a0ac01d33adf9bc4ceb8ca59
7
- data.tar.gz: 464eb6b7a69cd8ee265b8bb25a30496809a7baf90ab6a43a1cc85913fb9a9d466d47b8fcea3772f14bbf7be2c51d064f850fc4e216c71aed202b32c6bb57997c
6
+ metadata.gz: 58e7f2e2143dc69f0ceae804202a9e4346def28bdca248b916d29cf0f2ded2e0afab0677dbe58a20a4f3a9a91dd90ed113191a1086743c0b06d45d9415290422
7
+ data.tar.gz: 6a5d17a9032fb35ae9caf95182ea8bcef7d1677ddc81ce02cfaf6d4ab93d57e2446bc94d7d98cb57d1333cfb0f90675c6d8617c6dd3cbeb788d5addb0f18994c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.602
1
+ 3.0.603
@@ -816,12 +816,15 @@ module TencentCloud
816
816
  # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
817
817
  # @param FlowIds: 需要执行撤回的签署流程id数组,最多100个
818
818
  # @type FlowIds: Array
819
+ # @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
820
+ # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
819
821
 
820
- attr_accessor :Operator, :FlowIds
822
+ attr_accessor :Operator, :FlowIds, :Agent
821
823
 
822
- def initialize(operator=nil, flowids=nil)
824
+ def initialize(operator=nil, flowids=nil, agent=nil)
823
825
  @Operator = operator
824
826
  @FlowIds = flowids
827
+ @Agent = agent
825
828
  end
826
829
 
827
830
  def deserialize(params)
@@ -830,6 +833,10 @@ module TencentCloud
830
833
  @Operator.deserialize(params['Operator'])
831
834
  end
832
835
  @FlowIds = params['FlowIds']
836
+ unless params['Agent'].nil?
837
+ @Agent = Agent.new
838
+ @Agent.deserialize(params['Agent'])
839
+ end
833
840
  end
834
841
  end
835
842
 
@@ -1291,12 +1298,15 @@ module TencentCloud
1291
1298
  # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
1292
1299
  # @param FlowId: 签署流程编号
1293
1300
  # @type FlowId: String
1301
+ # @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
1302
+ # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
1294
1303
 
1295
- attr_accessor :Operator, :FlowId
1304
+ attr_accessor :Operator, :FlowId, :Agent
1296
1305
 
1297
- def initialize(operator=nil, flowid=nil)
1306
+ def initialize(operator=nil, flowid=nil, agent=nil)
1298
1307
  @Operator = operator
1299
1308
  @FlowId = flowid
1309
+ @Agent = agent
1300
1310
  end
1301
1311
 
1302
1312
  def deserialize(params)
@@ -1305,6 +1315,10 @@ module TencentCloud
1305
1315
  @Operator.deserialize(params['Operator'])
1306
1316
  end
1307
1317
  @FlowId = params['FlowId']
1318
+ unless params['Agent'].nil?
1319
+ @Agent = Agent.new
1320
+ @Agent.deserialize(params['Agent'])
1321
+ end
1308
1322
  end
1309
1323
  end
1310
1324
 
@@ -1346,12 +1360,15 @@ module TencentCloud
1346
1360
  # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
1347
1361
  # @param FlowIds: 需要执行催办的签署流程id数组,最多100个
1348
1362
  # @type FlowIds: Array
1363
+ # @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
1364
+ # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
1349
1365
 
1350
- attr_accessor :Operator, :FlowIds
1366
+ attr_accessor :Operator, :FlowIds, :Agent
1351
1367
 
1352
- def initialize(operator=nil, flowids=nil)
1368
+ def initialize(operator=nil, flowids=nil, agent=nil)
1353
1369
  @Operator = operator
1354
1370
  @FlowIds = flowids
1371
+ @Agent = agent
1355
1372
  end
1356
1373
 
1357
1374
  def deserialize(params)
@@ -1360,6 +1377,10 @@ module TencentCloud
1360
1377
  @Operator.deserialize(params['Operator'])
1361
1378
  end
1362
1379
  @FlowIds = params['FlowIds']
1380
+ unless params['Agent'].nil?
1381
+ @Agent = Agent.new
1382
+ @Agent.deserialize(params['Agent'])
1383
+ end
1363
1384
  end
1364
1385
  end
1365
1386
 
@@ -3128,12 +3149,15 @@ module TencentCloud
3128
3149
  # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
3129
3150
  # @param ReportId: 出证报告编号
3130
3151
  # @type ReportId: String
3152
+ # @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
3153
+ # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
3131
3154
 
3132
- attr_accessor :Operator, :ReportId
3155
+ attr_accessor :Operator, :ReportId, :Agent
3133
3156
 
3134
- def initialize(operator=nil, reportid=nil)
3157
+ def initialize(operator=nil, reportid=nil, agent=nil)
3135
3158
  @Operator = operator
3136
3159
  @ReportId = reportid
3160
+ @Agent = agent
3137
3161
  end
3138
3162
 
3139
3163
  def deserialize(params)
@@ -3142,6 +3166,10 @@ module TencentCloud
3142
3166
  @Operator.deserialize(params['Operator'])
3143
3167
  end
3144
3168
  @ReportId = params['ReportId']
3169
+ unless params['Agent'].nil?
3170
+ @Agent = Agent.new
3171
+ @Agent.deserialize(params['Agent'])
3172
+ end
3145
3173
  end
3146
3174
  end
3147
3175
 
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.602
4
+ version: 3.0.603
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-06-29 00:00:00.000000000 Z
11
+ date: 2023-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common