tencentcloud-sdk-ess 3.0.639 → 3.0.640

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/v20201111/models.rb +49 -13
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d1048d1b8079483db8064cb3806ddd48e6c79ca6
4
- data.tar.gz: 616c8eddc1efecc40261658b0d3b231b55d73cad
3
+ metadata.gz: 279c684e8e87c91d78ef8e1f0cbffa1bffbd8dcb
4
+ data.tar.gz: 4b0bf7af644948caf5b0ba7e504e015046425d77
5
5
  SHA512:
6
- metadata.gz: cdb4a7288442c961e49a1a319b2bcf4e906bf4bed1d16135f6877db24218077a5aedcf5cd6af0710b385695bb62f93ee68b0bff3fc040c484b0a9e01aba3b031
7
- data.tar.gz: c862ceccd1cca01cc2988ce8d9cbb8cdccd472a2b3b1f22e5587c2b7836e5360f12c55c2a0cfa8fdbc8daa83167ebb28a99a95d23713d5f0304698b0deda82a6
6
+ metadata.gz: 8563e567c9d940abd0a8b9db423d26399883b581a4a2771e24555876d5d741f548bbb870183ab6247a6a30679df9fabc7dac4497f458f8b51e9d22d875448a1d
7
+ data.tar.gz: 4db81f72c45423a7b43323e3f2ddf38632df03afc1e4e1beef54e2b009d29ba3b54c282e01503628f24ffe989dd3c39c31c0d7678d37f7ba84fe5a59e65d314c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.639
1
+ 3.0.640
@@ -100,7 +100,7 @@ module TencentCloud
100
100
  # @param SignComponents: 合同中的签署控件列表,列表中可支持下列多种签署控件,控件的详细定义参考开发者中心的Component结构体
101
101
  # <ul><li> 个人签名/印章</li>
102
102
  # <li> 企业印章</li>
103
- # <li> 骑缝章等签署控件</li><ul>
103
+ # <li> 骑缝章等签署控件</li></ul>
104
104
  # @type SignComponents: Array
105
105
  # @param ApproverIdCardType: 签署方经办人的证件类型,支持以下类型
106
106
  # <ul><li>ID_CARD 居民身份证 (默认值)</li>
@@ -2172,10 +2172,14 @@ module TencentCloud
2172
2172
 
2173
2173
  # CreateIntegrationDepartment请求参数结构体
2174
2174
  class CreateIntegrationDepartmentRequest < TencentCloud::Common::AbstractModel
2175
- # @param Operator: 操作人信息,UserId必填且需拥有组织架构管理权限
2175
+ # @param Operator: 执行本接口操作的员工信息。
2176
+ # 注: `在调用此接口时,请确保指定的员工已获得组织架构管理权限,并具备接口传入的相应资源的数据权限。`
2176
2177
  # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
2177
2178
  # @param DeptName: 部门名称,不超过50个字符
2178
2179
  # @type DeptName: String
2180
+ # @param Agent: 代理企业和员工的信息。
2181
+ # 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
2182
+ # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
2179
2183
  # @param ParentDeptId: 电子签父部门ID,与ParentDeptOpenId二选一,优先ParentDeptId,都为空时自动填充至根节点下
2180
2184
  # @type ParentDeptId: String
2181
2185
  # @param ParentDeptOpenId: 第三方平台中父部门ID,与ParentDeptId二选一,优先ParentDeptId,都为空时自动填充至根节点下
@@ -2185,11 +2189,12 @@ module TencentCloud
2185
2189
  # @param OrderNo: 排序号,1~30000范围内
2186
2190
  # @type OrderNo: Integer
2187
2191
 
2188
- attr_accessor :Operator, :DeptName, :ParentDeptId, :ParentDeptOpenId, :DeptOpenId, :OrderNo
2192
+ attr_accessor :Operator, :DeptName, :Agent, :ParentDeptId, :ParentDeptOpenId, :DeptOpenId, :OrderNo
2189
2193
 
2190
- def initialize(operator=nil, deptname=nil, parentdeptid=nil, parentdeptopenid=nil, deptopenid=nil, orderno=nil)
2194
+ def initialize(operator=nil, deptname=nil, agent=nil, parentdeptid=nil, parentdeptopenid=nil, deptopenid=nil, orderno=nil)
2191
2195
  @Operator = operator
2192
2196
  @DeptName = deptname
2197
+ @Agent = agent
2193
2198
  @ParentDeptId = parentdeptid
2194
2199
  @ParentDeptOpenId = parentdeptopenid
2195
2200
  @DeptOpenId = deptopenid
@@ -2202,6 +2207,10 @@ module TencentCloud
2202
2207
  @Operator.deserialize(params['Operator'])
2203
2208
  end
2204
2209
  @DeptName = params['DeptName']
2210
+ unless params['Agent'].nil?
2211
+ @Agent = Agent.new
2212
+ @Agent.deserialize(params['Agent'])
2213
+ end
2205
2214
  @ParentDeptId = params['ParentDeptId']
2206
2215
  @ParentDeptOpenId = params['ParentDeptOpenId']
2207
2216
  @DeptOpenId = params['DeptOpenId']
@@ -3366,18 +3375,23 @@ module TencentCloud
3366
3375
 
3367
3376
  # DeleteIntegrationDepartment请求参数结构体
3368
3377
  class DeleteIntegrationDepartmentRequest < TencentCloud::Common::AbstractModel
3369
- # @param Operator: 操作人信息,UserId必填且需拥有组织架构管理权限
3378
+ # @param Operator: 执行本接口操作的员工信息。
3379
+ # 注: `在调用此接口时,请确保指定的员工已获得组织架构管理权限,并具备接口传入的相应资源的数据权限。`
3370
3380
  # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
3371
3381
  # @param DeptId: 电子签中的部门id,通过DescribeIntegrationDepartments接口可获得
3372
3382
  # @type DeptId: String
3383
+ # @param Agent: 代理企业和员工的信息。
3384
+ # 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
3385
+ # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
3373
3386
  # @param ReceiveDeptId: 交接部门ID。待删除部门中的合同、印章和模板数据,交接至该部门ID下,未填写交接至公司根部门。
3374
3387
  # @type ReceiveDeptId: String
3375
3388
 
3376
- attr_accessor :Operator, :DeptId, :ReceiveDeptId
3389
+ attr_accessor :Operator, :DeptId, :Agent, :ReceiveDeptId
3377
3390
 
3378
- def initialize(operator=nil, deptid=nil, receivedeptid=nil)
3391
+ def initialize(operator=nil, deptid=nil, agent=nil, receivedeptid=nil)
3379
3392
  @Operator = operator
3380
3393
  @DeptId = deptid
3394
+ @Agent = agent
3381
3395
  @ReceiveDeptId = receivedeptid
3382
3396
  end
3383
3397
 
@@ -3387,6 +3401,10 @@ module TencentCloud
3387
3401
  @Operator.deserialize(params['Operator'])
3388
3402
  end
3389
3403
  @DeptId = params['DeptId']
3404
+ unless params['Agent'].nil?
3405
+ @Agent = Agent.new
3406
+ @Agent.deserialize(params['Agent'])
3407
+ end
3390
3408
  @ReceiveDeptId = params['ReceiveDeptId']
3391
3409
  end
3392
3410
  end
@@ -4170,20 +4188,25 @@ module TencentCloud
4170
4188
 
4171
4189
  # DescribeIntegrationDepartments请求参数结构体
4172
4190
  class DescribeIntegrationDepartmentsRequest < TencentCloud::Common::AbstractModel
4173
- # @param Operator: 操作人信息,UserId必填且需拥有组织架构管理权限
4191
+ # @param Operator: 执行本接口操作的员工信息。
4192
+ # 注: `在调用此接口时,请确保指定的员工已获得组织架构管理权限,并具备接口传入的相应资源的数据权限。`
4174
4193
  # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
4175
4194
  # @param QueryType: 查询类型 0-查询单个部门节点 1-单个部门节点及一级子节点部门列表
4176
4195
  # @type QueryType: Integer
4196
+ # @param Agent: 代理企业和员工的信息。
4197
+ # 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
4198
+ # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
4177
4199
  # @param DeptId: 部门ID,与DeptOpenId二选一,优先DeptId,都为空时获取根节点数据
4178
4200
  # @type DeptId: String
4179
4201
  # @param DeptOpenId: 客户系统部门ID,与DeptId二选一,优先DeptId,都为空时获取根节点数据
4180
4202
  # @type DeptOpenId: String
4181
4203
 
4182
- attr_accessor :Operator, :QueryType, :DeptId, :DeptOpenId
4204
+ attr_accessor :Operator, :QueryType, :Agent, :DeptId, :DeptOpenId
4183
4205
 
4184
- def initialize(operator=nil, querytype=nil, deptid=nil, deptopenid=nil)
4206
+ def initialize(operator=nil, querytype=nil, agent=nil, deptid=nil, deptopenid=nil)
4185
4207
  @Operator = operator
4186
4208
  @QueryType = querytype
4209
+ @Agent = agent
4187
4210
  @DeptId = deptid
4188
4211
  @DeptOpenId = deptopenid
4189
4212
  end
@@ -4194,6 +4217,10 @@ module TencentCloud
4194
4217
  @Operator.deserialize(params['Operator'])
4195
4218
  end
4196
4219
  @QueryType = params['QueryType']
4220
+ unless params['Agent'].nil?
4221
+ @Agent = Agent.new
4222
+ @Agent.deserialize(params['Agent'])
4223
+ end
4197
4224
  @DeptId = params['DeptId']
4198
4225
  @DeptOpenId = params['DeptOpenId']
4199
4226
  end
@@ -6232,10 +6259,14 @@ module TencentCloud
6232
6259
 
6233
6260
  # ModifyIntegrationDepartment请求参数结构体
6234
6261
  class ModifyIntegrationDepartmentRequest < TencentCloud::Common::AbstractModel
6235
- # @param Operator: 操作人信息,UserId必填且需拥有组织架构管理权限
6262
+ # @param Operator: 执行本接口操作的员工信息。
6263
+ # 注: `在调用此接口时,请确保指定的员工已获得组织架构管理权限,并具备接口传入的相应资源的数据权限。`
6236
6264
  # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
6237
6265
  # @param DeptId: 电子签部门ID,通过DescribeIntegrationDepartments接口可以获取
6238
6266
  # @type DeptId: String
6267
+ # @param Agent: 代理企业和员工的信息。
6268
+ # 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
6269
+ # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
6239
6270
  # @param ParentDeptId: 电子签父部门ID,通过DescribeIntegrationDepartments接口可以获取
6240
6271
  # @type ParentDeptId: String
6241
6272
  # @param DeptName: 部门名称,不超过50个字符
@@ -6245,11 +6276,12 @@ module TencentCloud
6245
6276
  # @param OrderNo: 排序号,1~30000范围内
6246
6277
  # @type OrderNo: Integer
6247
6278
 
6248
- attr_accessor :Operator, :DeptId, :ParentDeptId, :DeptName, :DeptOpenId, :OrderNo
6279
+ attr_accessor :Operator, :DeptId, :Agent, :ParentDeptId, :DeptName, :DeptOpenId, :OrderNo
6249
6280
 
6250
- def initialize(operator=nil, deptid=nil, parentdeptid=nil, deptname=nil, deptopenid=nil, orderno=nil)
6281
+ def initialize(operator=nil, deptid=nil, agent=nil, parentdeptid=nil, deptname=nil, deptopenid=nil, orderno=nil)
6251
6282
  @Operator = operator
6252
6283
  @DeptId = deptid
6284
+ @Agent = agent
6253
6285
  @ParentDeptId = parentdeptid
6254
6286
  @DeptName = deptname
6255
6287
  @DeptOpenId = deptopenid
@@ -6262,6 +6294,10 @@ module TencentCloud
6262
6294
  @Operator.deserialize(params['Operator'])
6263
6295
  end
6264
6296
  @DeptId = params['DeptId']
6297
+ unless params['Agent'].nil?
6298
+ @Agent = Agent.new
6299
+ @Agent.deserialize(params['Agent'])
6300
+ end
6265
6301
  @ParentDeptId = params['ParentDeptId']
6266
6302
  @DeptName = params['DeptName']
6267
6303
  @DeptOpenId = params['DeptOpenId']
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.639
4
+ version: 3.0.640
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-08-18 00:00:00.000000000 Z
11
+ date: 2023-08-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common