tencentcloud-sdk-ess 3.0.1085 → 3.0.1087
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201111/client.rb +83 -0
- data/lib/v20201111/models.rb +255 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 436f6e169ce9c62a5767904127527995a374e1d1
|
4
|
+
data.tar.gz: 22982c7b7dd1aa73afd9e5017ac1896e52f93418
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e40d9dc9777e9c323449575094c617cabab473b24b527d9358682189af480e473f8db6c75342a5444c07b37016089757cfd0fce7c8f21ecae2ee9fdbdaad42ff
|
7
|
+
data.tar.gz: 281b061dbd51a54350f4e7ef0fce67c0aea4796d83b186368dea9e409d06ecbc9388e0a98f1a733fd78f809157c4b675cd6f08d8400a632cfb034cdc10bde456
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1087
|
data/lib/v20201111/client.rb
CHANGED
@@ -1457,6 +1457,33 @@ module TencentCloud
|
|
1457
1457
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1458
1458
|
end
|
1459
1459
|
|
1460
|
+
# 本接口(CreateModifyAdminAuthorizationUrl)用于重新上传超管授权书。
|
1461
|
+
|
1462
|
+
# 注意:
|
1463
|
+
# 1. 重新上传超管授权书,必须是审核失败的情况下才能重新上传,可以通过回调[!授权书认证审核结果回调](https://qian.tencent.com/developers/company/callback_types_staffs#%E5%8D%81%E5%85%AD-%E6%8E%88%E6%9D%83%E4%B9%A6%E8%AE%A4%E8%AF%81%E5%AE%A1%E6%A0%B8%E7%BB%93%E6%9E%9C%E5%9B%9E%E8%B0%83)得到
|
1464
|
+
|
1465
|
+
# @param request: Request instance for CreateModifyAdminAuthorizationUrl.
|
1466
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::CreateModifyAdminAuthorizationUrlRequest`
|
1467
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::CreateModifyAdminAuthorizationUrlResponse`
|
1468
|
+
def CreateModifyAdminAuthorizationUrl(request)
|
1469
|
+
body = send_request('CreateModifyAdminAuthorizationUrl', request.serialize)
|
1470
|
+
response = JSON.parse(body)
|
1471
|
+
if response['Response'].key?('Error') == false
|
1472
|
+
model = CreateModifyAdminAuthorizationUrlResponse.new
|
1473
|
+
model.deserialize(response['Response'])
|
1474
|
+
model
|
1475
|
+
else
|
1476
|
+
code = response['Response']['Error']['Code']
|
1477
|
+
message = response['Response']['Error']['Message']
|
1478
|
+
reqid = response['Response']['RequestId']
|
1479
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1480
|
+
end
|
1481
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1482
|
+
raise e
|
1483
|
+
rescue StandardError => e
|
1484
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1485
|
+
end
|
1486
|
+
|
1460
1487
|
# 此接口(CreateMultiFlowSignQRCode)用于创建一码多签签署码。
|
1461
1488
|
|
1462
1489
|
# **适用场景**:
|
@@ -2283,6 +2310,30 @@ module TencentCloud
|
|
2283
2310
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2284
2311
|
end
|
2285
2312
|
|
2313
|
+
# 本接口(DescribeBatchOrganizationRegistrationTasks)用于查询企业批量认证任务状态。
|
2314
|
+
|
2315
|
+
# @param request: Request instance for DescribeBatchOrganizationRegistrationTasks.
|
2316
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::DescribeBatchOrganizationRegistrationTasksRequest`
|
2317
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::DescribeBatchOrganizationRegistrationTasksResponse`
|
2318
|
+
def DescribeBatchOrganizationRegistrationTasks(request)
|
2319
|
+
body = send_request('DescribeBatchOrganizationRegistrationTasks', request.serialize)
|
2320
|
+
response = JSON.parse(body)
|
2321
|
+
if response['Response'].key?('Error') == false
|
2322
|
+
model = DescribeBatchOrganizationRegistrationTasksResponse.new
|
2323
|
+
model.deserialize(response['Response'])
|
2324
|
+
model
|
2325
|
+
else
|
2326
|
+
code = response['Response']['Error']['Code']
|
2327
|
+
message = response['Response']['Error']['Message']
|
2328
|
+
reqid = response['Response']['RequestId']
|
2329
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2330
|
+
end
|
2331
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2332
|
+
raise e
|
2333
|
+
rescue StandardError => e
|
2334
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2335
|
+
end
|
2336
|
+
|
2286
2337
|
# 此接口用于获取企业批量认证异步任务的状态及结果。
|
2287
2338
|
|
2288
2339
|
# 前提条件:已调用 CreateBatchOrganizationRegistrationTasks创建企业批量认证链接任务接口,并得到了任务Id。
|
@@ -3281,6 +3332,38 @@ module TencentCloud
|
|
3281
3332
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3282
3333
|
end
|
3283
3334
|
|
3335
|
+
# 创建一个用于更新他方自动签授权的链接(可选择他方授权或我方授权)。通过这个链接,合作方企业可以直接进入小程序,进行自动签授权的更新(更新印章)操作。
|
3336
|
+
|
3337
|
+
# 如果授权企业尚未开通企业自动签功能,该链接还将引导他们首先开通本企业的自动签服务
|
3338
|
+
|
3339
|
+
# 注:
|
3340
|
+
# 1. <font color='red'>所在企业的超管、法人才有权限调用此接口</font>(Operator.UserId 需要传递超管或者法人的UserId)
|
3341
|
+
# 2. 只能更新授权的印章,被授权的企业无法更新
|
3342
|
+
# 3. 授权企业和被授权企业必须都是已认证企业
|
3343
|
+
# 4. <font color='red'>需要授权企业或被授权企业的超管或者法人打开链接</font>走开通逻辑。
|
3344
|
+
|
3345
|
+
# @param request: Request instance for ModifyPartnerAutoSignAuthUrl.
|
3346
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::ModifyPartnerAutoSignAuthUrlRequest`
|
3347
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::ModifyPartnerAutoSignAuthUrlResponse`
|
3348
|
+
def ModifyPartnerAutoSignAuthUrl(request)
|
3349
|
+
body = send_request('ModifyPartnerAutoSignAuthUrl', request.serialize)
|
3350
|
+
response = JSON.parse(body)
|
3351
|
+
if response['Response'].key?('Error') == false
|
3352
|
+
model = ModifyPartnerAutoSignAuthUrlResponse.new
|
3353
|
+
model.deserialize(response['Response'])
|
3354
|
+
model
|
3355
|
+
else
|
3356
|
+
code = response['Response']['Error']['Code']
|
3357
|
+
message = response['Response']['Error']['Message']
|
3358
|
+
reqid = response['Response']['RequestId']
|
3359
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3360
|
+
end
|
3361
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3362
|
+
raise e
|
3363
|
+
rescue StandardError => e
|
3364
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3365
|
+
end
|
3366
|
+
|
3284
3367
|
# 修改印章状态(停用、启用)
|
3285
3368
|
|
3286
3369
|
# @param request: Request instance for OperateSeals.
|
data/lib/v20201111/models.rb
CHANGED
@@ -719,6 +719,55 @@ module TencentCloud
|
|
719
719
|
end
|
720
720
|
end
|
721
721
|
|
722
|
+
# 批量认证企业任务详情信息,其中包括 TaskId,状态信息等等。
|
723
|
+
class BatchOrganizationRegistrationTasksDetails < TencentCloud::Common::AbstractModel
|
724
|
+
# @param TaskId: 生成注册链接的任务Id
|
725
|
+
# @type TaskId: String
|
726
|
+
# @param Status: 批量创建企业任务的状态
|
727
|
+
# <ul>
|
728
|
+
# <li>Processing</li>
|
729
|
+
# <li>Create</li>
|
730
|
+
# <li>Submit</li>
|
731
|
+
# <li>Authorization</li>
|
732
|
+
# <li>Failed</li>
|
733
|
+
# </ul>
|
734
|
+
|
735
|
+
# 各个状态所代表的含义如下表格所示:
|
736
|
+
# <table>
|
737
|
+
# <thead align="center" valign="center">
|
738
|
+
# <tr><th>任务状态名称</th><th>任务状态详情</th></tr>
|
739
|
+
# </thead>
|
740
|
+
# <tbody>
|
741
|
+
# <tr><th align="center" valign="center">Processing</th><th>企业认证任务处理中,用户调用了<a href="https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks">CreateBatchOrganizationRegistrationTasks</a>接口,但是任务还在处理中的状态</th></tr>
|
742
|
+
# <tr><th align="center" valign="center">Create</th><th>创建企业认证链接任务完成,可以调用生成任务链接接口</th></tr>
|
743
|
+
# <tr><th align="center" valign="center">Submit</th><th>企业认证任务已提交,到如下界面之后,会变为这个状态
|
744
|
+
|
745
|
+
# </th></tr>
|
746
|
+
# <tr><th align="center" valign="center">Authorization</th><th>企业认证任务认证成功,点击下图下一步,进入到授权书上传或者法人认证,则会变为这个状态
|
747
|
+
|
748
|
+
# </th></tr>
|
749
|
+
# <tr><th align="center" valign="center">Failed</th><th>企业认证任务失败</th></tr>
|
750
|
+
# </tbody>
|
751
|
+
# </table>
|
752
|
+
# @type Status: String
|
753
|
+
# @param ErrorMessage: 如果任务失败,会返回错误信息
|
754
|
+
# @type ErrorMessage: String
|
755
|
+
|
756
|
+
attr_accessor :TaskId, :Status, :ErrorMessage
|
757
|
+
|
758
|
+
def initialize(taskid=nil, status=nil, errormessage=nil)
|
759
|
+
@TaskId = taskid
|
760
|
+
@Status = status
|
761
|
+
@ErrorMessage = errormessage
|
762
|
+
end
|
763
|
+
|
764
|
+
def deserialize(params)
|
765
|
+
@TaskId = params['TaskId']
|
766
|
+
@Status = params['Status']
|
767
|
+
@ErrorMessage = params['ErrorMessage']
|
768
|
+
end
|
769
|
+
end
|
770
|
+
|
722
771
|
# 用户计费使用情况详情
|
723
772
|
class BillUsageDetail < TencentCloud::Common::AbstractModel
|
724
773
|
# @param FlowId: 合同流程ID,为32位字符串。
|
@@ -1271,9 +1320,11 @@ module TencentCloud
|
|
1271
1320
|
|
1272
1321
|
# <font color="red">ComponentType为WATERMARK时</font>,支持以下参数:
|
1273
1322
|
# <ul><li> <b>Font</b>:目前只支持黑体、宋体、仿宋</li>
|
1274
|
-
# <li> <b>FontSize</b>: 范围6 :
|
1323
|
+
# <li> <b>FontSize</b>: 范围6 :72</li>
|
1275
1324
|
# <li> <b>Opacity</b>: 透明度,范围0 :1</li>
|
1325
|
+
# <li> <b>Rotate</b>: 水印旋转角度,范围0 :359</li>
|
1276
1326
|
# <li> <b>Density</b>: 水印样式,1-宽松,2-标准(默认值),3-密集,</li>
|
1327
|
+
# <li> <b>Position</b>: 水印位置,None-平铺(默认值),LeftTop-左上,LeftBottom-左下,RightTop-右上,RightBottom-右下,Center-居中</li>
|
1277
1328
|
# <li> <b>SubType</b>: 水印类型:CUSTOM_WATERMARK-自定义内容,PERSON_INFO_WATERMARK-访问者信息</li></ul>
|
1278
1329
|
# <b>参数样例</b>:`"{\"Font\":\"黑体\",\"FontSize\":20,\"Opacity\":0.1,\"Density\":2,\"SubType\":\"PERSON_INFO_WATERMARK\"}"`
|
1279
1330
|
|
@@ -4727,6 +4778,66 @@ module TencentCloud
|
|
4727
4778
|
end
|
4728
4779
|
end
|
4729
4780
|
|
4781
|
+
# CreateModifyAdminAuthorizationUrl请求参数结构体
|
4782
|
+
class CreateModifyAdminAuthorizationUrlRequest < TencentCloud::Common::AbstractModel
|
4783
|
+
# @param Operator: 执行本接口操作的员工信息。
|
4784
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
4785
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
4786
|
+
# @param Agent: 代理企业和员工的信息。
|
4787
|
+
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
4788
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
4789
|
+
# @param AuthorizationId: 企业认证流Id,可以通过回调[授权书认证审核结果回调](https://qian.tencent.com/developers/company/callback_types_staffs#%E5%8D%81%E5%85%AD-%E6%8E%88%E6%9D%83%E4%B9%A6%E8%AE%A4%E8%AF%81%E5%AE%A1%E6%A0%B8%E7%BB%93%E6%9E%9C%E5%9B%9E%E8%B0%83)得到
|
4790
|
+
# @type AuthorizationId: String
|
4791
|
+
# @param Endpoint: 要跳转的链接类型<ul><li> **HTTP**:跳转电子签小程序的http_url, 短信通知或者H5跳转适合此类型 ,此时返回长链 (默认类型)</li><li>**HTTP_SHORT_URL**:跳转电子签小程序的http_url, 短信通知或者H5跳转适合此类型,此时返回短链</li><li>**APP**: 第三方APP或小程序跳转电子签小程序的path, APP或者小程序跳转适合此类型</li><li>**PC**: 跳转电子签web 端控制台的链接。</li></ul>
|
4792
|
+
# @type Endpoint: String
|
4793
|
+
|
4794
|
+
attr_accessor :Operator, :Agent, :AuthorizationId, :Endpoint
|
4795
|
+
|
4796
|
+
def initialize(operator=nil, agent=nil, authorizationid=nil, endpoint=nil)
|
4797
|
+
@Operator = operator
|
4798
|
+
@Agent = agent
|
4799
|
+
@AuthorizationId = authorizationid
|
4800
|
+
@Endpoint = endpoint
|
4801
|
+
end
|
4802
|
+
|
4803
|
+
def deserialize(params)
|
4804
|
+
unless params['Operator'].nil?
|
4805
|
+
@Operator = UserInfo.new
|
4806
|
+
@Operator.deserialize(params['Operator'])
|
4807
|
+
end
|
4808
|
+
unless params['Agent'].nil?
|
4809
|
+
@Agent = Agent.new
|
4810
|
+
@Agent.deserialize(params['Agent'])
|
4811
|
+
end
|
4812
|
+
@AuthorizationId = params['AuthorizationId']
|
4813
|
+
@Endpoint = params['Endpoint']
|
4814
|
+
end
|
4815
|
+
end
|
4816
|
+
|
4817
|
+
# CreateModifyAdminAuthorizationUrl返回参数结构体
|
4818
|
+
class CreateModifyAdminAuthorizationUrlResponse < TencentCloud::Common::AbstractModel
|
4819
|
+
# @param Url: 变更企业超管授权书链接。
|
4820
|
+
# 没有有效期限制。
|
4821
|
+
|
4822
|
+
# 注意:
|
4823
|
+
# 此链接仅能由当时认证企业的认证人使用。
|
4824
|
+
# @type Url: String
|
4825
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4826
|
+
# @type RequestId: String
|
4827
|
+
|
4828
|
+
attr_accessor :Url, :RequestId
|
4829
|
+
|
4830
|
+
def initialize(url=nil, requestid=nil)
|
4831
|
+
@Url = url
|
4832
|
+
@RequestId = requestid
|
4833
|
+
end
|
4834
|
+
|
4835
|
+
def deserialize(params)
|
4836
|
+
@Url = params['Url']
|
4837
|
+
@RequestId = params['RequestId']
|
4838
|
+
end
|
4839
|
+
end
|
4840
|
+
|
4730
4841
|
# CreateMultiFlowSignQRCode请求参数结构体
|
4731
4842
|
class CreateMultiFlowSignQRCodeRequest < TencentCloud::Common::AbstractModel
|
4732
4843
|
# @param Operator: 执行本接口操作的员工信息。
|
@@ -4934,9 +5045,8 @@ module TencentCloud
|
|
4934
5045
|
# @param AuthorizationTypes: 指定授权方式 支持多选:
|
4935
5046
|
|
4936
5047
|
# <ul>
|
4937
|
-
# <li><strong>1</strong>:上传授权书方式</li>
|
4938
5048
|
# <li><strong>2</strong>: 法人授权方式</li>
|
4939
|
-
# <li><strong>
|
5049
|
+
# <li><strong>5</strong>: 授权书+对公打款方式</li>
|
4940
5050
|
# </ul>
|
4941
5051
|
# @type AuthorizationTypes: Array
|
4942
5052
|
# @param OrganizationName: 认证企业名称,请确认该名称与企业营业执照中注册的名称一致。
|
@@ -7420,6 +7530,65 @@ module TencentCloud
|
|
7420
7530
|
end
|
7421
7531
|
end
|
7422
7532
|
|
7533
|
+
# DescribeBatchOrganizationRegistrationTasks请求参数结构体
|
7534
|
+
class DescribeBatchOrganizationRegistrationTasksRequest < TencentCloud::Common::AbstractModel
|
7535
|
+
# @param Operator: 执行本接口操作的员工信息。
|
7536
|
+
# 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
7537
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
7538
|
+
# @param Agent: 代理企业和员工的信息。
|
7539
|
+
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
7540
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
7541
|
+
# @param TaskIds: 企业批量认证链接的子任务 SubTaskId,该 SubTaskId 是通过接口[查询企业批量认证链接](https://qian.tencent.com/developers/companyApis/organizations/DescribeBatchOrganizationRegistrationUrls)可以得到。
|
7542
|
+
# @type TaskIds: Array
|
7543
|
+
|
7544
|
+
attr_accessor :Operator, :Agent, :TaskIds
|
7545
|
+
|
7546
|
+
def initialize(operator=nil, agent=nil, taskids=nil)
|
7547
|
+
@Operator = operator
|
7548
|
+
@Agent = agent
|
7549
|
+
@TaskIds = taskids
|
7550
|
+
end
|
7551
|
+
|
7552
|
+
def deserialize(params)
|
7553
|
+
unless params['Operator'].nil?
|
7554
|
+
@Operator = UserInfo.new
|
7555
|
+
@Operator.deserialize(params['Operator'])
|
7556
|
+
end
|
7557
|
+
unless params['Agent'].nil?
|
7558
|
+
@Agent = Agent.new
|
7559
|
+
@Agent.deserialize(params['Agent'])
|
7560
|
+
end
|
7561
|
+
@TaskIds = params['TaskIds']
|
7562
|
+
end
|
7563
|
+
end
|
7564
|
+
|
7565
|
+
# DescribeBatchOrganizationRegistrationTasks返回参数结构体
|
7566
|
+
class DescribeBatchOrganizationRegistrationTasksResponse < TencentCloud::Common::AbstractModel
|
7567
|
+
# @param Details: 企业批量任务状态明细
|
7568
|
+
# @type Details: Array
|
7569
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7570
|
+
# @type RequestId: String
|
7571
|
+
|
7572
|
+
attr_accessor :Details, :RequestId
|
7573
|
+
|
7574
|
+
def initialize(details=nil, requestid=nil)
|
7575
|
+
@Details = details
|
7576
|
+
@RequestId = requestid
|
7577
|
+
end
|
7578
|
+
|
7579
|
+
def deserialize(params)
|
7580
|
+
unless params['Details'].nil?
|
7581
|
+
@Details = []
|
7582
|
+
params['Details'].each do |i|
|
7583
|
+
batchorganizationregistrationtasksdetails_tmp = BatchOrganizationRegistrationTasksDetails.new
|
7584
|
+
batchorganizationregistrationtasksdetails_tmp.deserialize(i)
|
7585
|
+
@Details << batchorganizationregistrationtasksdetails_tmp
|
7586
|
+
end
|
7587
|
+
end
|
7588
|
+
@RequestId = params['RequestId']
|
7589
|
+
end
|
7590
|
+
end
|
7591
|
+
|
7423
7592
|
# DescribeBatchOrganizationRegistrationUrls请求参数结构体
|
7424
7593
|
class DescribeBatchOrganizationRegistrationUrlsRequest < TencentCloud::Common::AbstractModel
|
7425
7594
|
# @param Operator: 执行本接口操作的员工信息。
|
@@ -10311,7 +10480,7 @@ module TencentCloud
|
|
10311
10480
|
# 注意,在合同中,不同的或签参与人必须保证其CustomApproverTag唯一。
|
10312
10481
|
# 如果或签签署人为本方企业微信参与人,则需要指定ApproverSource参数为WEWORKAPP。
|
10313
10482
|
# @type CustomApproverTag: String
|
10314
|
-
# @param RegisterInfo:
|
10483
|
+
# @param RegisterInfo: 快速注册相关信息
|
10315
10484
|
# @type RegisterInfo: :class:`Tencentcloud::Ess.v20201111.models.RegisterInfo`
|
10316
10485
|
# @param ApproverOption: 签署人个性化能力值,如是否可以转发他人处理、是否可以拒签、是否为动态补充签署人等功能开关。
|
10317
10486
|
# @type ApproverOption: :class:`Tencentcloud::Ess.v20201111.models.ApproverOption`
|
@@ -12179,6 +12348,77 @@ module TencentCloud
|
|
12179
12348
|
end
|
12180
12349
|
end
|
12181
12350
|
|
12351
|
+
# ModifyPartnerAutoSignAuthUrl请求参数结构体
|
12352
|
+
class ModifyPartnerAutoSignAuthUrlRequest < TencentCloud::Common::AbstractModel
|
12353
|
+
# @param Agent: 代理企业和员工的信息。<br/>在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
12354
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
12355
|
+
# @param Operator: 执行本接口操作的员工信息。<br/>注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
12356
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
12357
|
+
# @param AuthorizedOrganizationId: 被授企业id/授权方企业id(即OrganizationId),和AuthorizedOrganizationName二选一传入
|
12358
|
+
# @type AuthorizedOrganizationId: String
|
12359
|
+
# @param AuthorizedOrganizationName: 被授企业名称/授权方企业的名字,和AuthorizedOrganizationId二选一传入即可。请确认该名称与企业营业执照中注册的名称一致。
|
12360
|
+
# 注: `如果名称中包含英文括号(),请使用中文括号()代替。`
|
12361
|
+
# @type AuthorizedOrganizationName: String
|
12362
|
+
# @param AuthToMe: 在处理授权关系时,授权的方向
|
12363
|
+
# <ul>
|
12364
|
+
# <li><strong>false</strong>(默认值):表示我方授权他方。在这种情况下,<code>AuthorizedOrganizationName</code> 代表的是【被授权方】的企业名称,即接收授权的企业。</li>
|
12365
|
+
# <li><strong>true</strong>:表示他方授权我方。在这种情况下,<code>AuthorizedOrganizationName</code> 代表的是【授权方】的企业名称,即提供授权的企业。</li>
|
12366
|
+
# </ul>
|
12367
|
+
# @type AuthToMe: Boolean
|
12368
|
+
|
12369
|
+
attr_accessor :Agent, :Operator, :AuthorizedOrganizationId, :AuthorizedOrganizationName, :AuthToMe
|
12370
|
+
|
12371
|
+
def initialize(agent=nil, operator=nil, authorizedorganizationid=nil, authorizedorganizationname=nil, authtome=nil)
|
12372
|
+
@Agent = agent
|
12373
|
+
@Operator = operator
|
12374
|
+
@AuthorizedOrganizationId = authorizedorganizationid
|
12375
|
+
@AuthorizedOrganizationName = authorizedorganizationname
|
12376
|
+
@AuthToMe = authtome
|
12377
|
+
end
|
12378
|
+
|
12379
|
+
def deserialize(params)
|
12380
|
+
unless params['Agent'].nil?
|
12381
|
+
@Agent = Agent.new
|
12382
|
+
@Agent.deserialize(params['Agent'])
|
12383
|
+
end
|
12384
|
+
unless params['Operator'].nil?
|
12385
|
+
@Operator = UserInfo.new
|
12386
|
+
@Operator.deserialize(params['Operator'])
|
12387
|
+
end
|
12388
|
+
@AuthorizedOrganizationId = params['AuthorizedOrganizationId']
|
12389
|
+
@AuthorizedOrganizationName = params['AuthorizedOrganizationName']
|
12390
|
+
@AuthToMe = params['AuthToMe']
|
12391
|
+
end
|
12392
|
+
end
|
12393
|
+
|
12394
|
+
# ModifyPartnerAutoSignAuthUrl返回参数结构体
|
12395
|
+
class ModifyPartnerAutoSignAuthUrlResponse < TencentCloud::Common::AbstractModel
|
12396
|
+
# @param Url: 授权链接,以短链形式返回,短链的有效期参考回参中的 ExpiredTime。
|
12397
|
+
# @type Url: String
|
12398
|
+
# @param MiniAppPath: 从客户小程序或者客户APP跳转至腾讯电子签小程序进行批量签署的跳转路径
|
12399
|
+
# @type MiniAppPath: String
|
12400
|
+
# @param ExpireTime: 链接过期时间以 Unix 时间戳格式表示,从生成链接时间起,往后7天有效期。过期后短链将失效,无法打开。
|
12401
|
+
# @type ExpireTime: Integer
|
12402
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12403
|
+
# @type RequestId: String
|
12404
|
+
|
12405
|
+
attr_accessor :Url, :MiniAppPath, :ExpireTime, :RequestId
|
12406
|
+
|
12407
|
+
def initialize(url=nil, miniapppath=nil, expiretime=nil, requestid=nil)
|
12408
|
+
@Url = url
|
12409
|
+
@MiniAppPath = miniapppath
|
12410
|
+
@ExpireTime = expiretime
|
12411
|
+
@RequestId = requestid
|
12412
|
+
end
|
12413
|
+
|
12414
|
+
def deserialize(params)
|
12415
|
+
@Url = params['Url']
|
12416
|
+
@MiniAppPath = params['MiniAppPath']
|
12417
|
+
@ExpireTime = params['ExpireTime']
|
12418
|
+
@RequestId = params['RequestId']
|
12419
|
+
end
|
12420
|
+
end
|
12421
|
+
|
12182
12422
|
# 需要进行签署审核的签署人信息
|
12183
12423
|
class NeedReviewApproverInfo < TencentCloud::Common::AbstractModel
|
12184
12424
|
# @param ApproverType: 签署方经办人的类型,支持以下类型
|
@@ -12960,22 +13200,31 @@ module TencentCloud
|
|
12960
13200
|
# @type Uscc: String
|
12961
13201
|
# @param UnifiedSocialCreditCode: 社会统一信用代码
|
12962
13202
|
# @type UnifiedSocialCreditCode: String
|
13203
|
+
# @param AuthorizationTypes: 指定企业认证的授权方式 支持多选:
|
12963
13204
|
|
12964
|
-
|
13205
|
+
# <ul>
|
13206
|
+
# <li><strong>2</strong>: 法人授权方式</li>
|
13207
|
+
# <li><strong>5</strong>: 授权书+对公打款方式</li>
|
13208
|
+
# </ul>
|
13209
|
+
# @type AuthorizationTypes: Array
|
13210
|
+
|
13211
|
+
attr_accessor :LegalName, :Uscc, :UnifiedSocialCreditCode, :AuthorizationTypes
|
12965
13212
|
extend Gem::Deprecate
|
12966
13213
|
deprecate :Uscc, :none, 2025, 6
|
12967
13214
|
deprecate :Uscc=, :none, 2025, 6
|
12968
13215
|
|
12969
|
-
def initialize(legalname=nil, uscc=nil, unifiedsocialcreditcode=nil)
|
13216
|
+
def initialize(legalname=nil, uscc=nil, unifiedsocialcreditcode=nil, authorizationtypes=nil)
|
12970
13217
|
@LegalName = legalname
|
12971
13218
|
@Uscc = uscc
|
12972
13219
|
@UnifiedSocialCreditCode = unifiedsocialcreditcode
|
13220
|
+
@AuthorizationTypes = authorizationtypes
|
12973
13221
|
end
|
12974
13222
|
|
12975
13223
|
def deserialize(params)
|
12976
13224
|
@LegalName = params['LegalName']
|
12977
13225
|
@Uscc = params['Uscc']
|
12978
13226
|
@UnifiedSocialCreditCode = params['UnifiedSocialCreditCode']
|
13227
|
+
@AuthorizationTypes = params['AuthorizationTypes']
|
12979
13228
|
end
|
12980
13229
|
end
|
12981
13230
|
|
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.
|
4
|
+
version: 3.0.1087
|
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-06-
|
11
|
+
date: 2025-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|