tencentcloud-sdk-ess 3.0.835 → 3.0.837
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201111/client.rb +25 -0
- data/lib/v20201111/models.rb +124 -0
- 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: cdb898b8b0c8194ae79fef458fddca4fce1f3055
|
4
|
+
data.tar.gz: eaf356d4e01e91545992754692fef53fe8151619
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce0af446637442471cef8a9bcd69c867e13f9889b28a7d1022267ba4df41a0bc9f3bc0344ead5abf83845f6b8a24542e9c56c7731680e9e9b8aa700ea66d99bf
|
7
|
+
data.tar.gz: 88380b036043ef9da0c55d8ed65cd479eb653102190f600dde4e03f29ea35655a690995e23a8925f34bb5bbbda37d81c1e1b3adf3b423ba60dc3022da983d082
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.837
|
data/lib/v20201111/client.rb
CHANGED
@@ -1469,6 +1469,31 @@ module TencentCloud
|
|
1469
1469
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1470
1470
|
end
|
1471
1471
|
|
1472
|
+
# 该接口会生成一个手机号变更的链接,用户可以通过该链接进入电子签系统进行手机号的变更。
|
1473
|
+
# 该接口支持员工和个人端手机号的变更。
|
1474
|
+
|
1475
|
+
# @param request: Request instance for CreateUserMobileChangeUrl.
|
1476
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::CreateUserMobileChangeUrlRequest`
|
1477
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::CreateUserMobileChangeUrlResponse`
|
1478
|
+
def CreateUserMobileChangeUrl(request)
|
1479
|
+
body = send_request('CreateUserMobileChangeUrl', request.serialize)
|
1480
|
+
response = JSON.parse(body)
|
1481
|
+
if response['Response'].key?('Error') == false
|
1482
|
+
model = CreateUserMobileChangeUrlResponse.new
|
1483
|
+
model.deserialize(response['Response'])
|
1484
|
+
model
|
1485
|
+
else
|
1486
|
+
code = response['Response']['Error']['Code']
|
1487
|
+
message = response['Response']['Error']['Message']
|
1488
|
+
reqid = response['Response']['RequestId']
|
1489
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1490
|
+
end
|
1491
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1492
|
+
raise e
|
1493
|
+
rescue StandardError => e
|
1494
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1495
|
+
end
|
1496
|
+
|
1472
1497
|
# 客户可以主动调用生成实名链接去做C端用户实名,会对实名的用户进行打标记为调用链接客户的用户
|
1473
1498
|
# 使用场景:
|
1474
1499
|
# 用户集成场景
|
data/lib/v20201111/models.rb
CHANGED
@@ -5212,6 +5212,130 @@ module TencentCloud
|
|
5212
5212
|
end
|
5213
5213
|
end
|
5214
5214
|
|
5215
|
+
# CreateUserMobileChangeUrl请求参数结构体
|
5216
|
+
class CreateUserMobileChangeUrlRequest < TencentCloud::Common::AbstractModel
|
5217
|
+
# @param Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。 支持填入集团子公司经办人 userId 代发合同。 注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
|
5218
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
5219
|
+
# @param Agent: 代理企业和员工的信息。 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
5220
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
5221
|
+
# @param UserId: 如果您要修改企业员工用户ID,传递此用户ID即可,其他参数(Name,UserAccountType,IdCardType,IdCardNumber)将被忽略。如果不传此用户ID,则会使用其他参数来进行链接生成。
|
5222
|
+
|
5223
|
+
# [点击查看用户ID的获取方式](https://res.ess.tencent.cn/cdn/tsign-developer-center/assets/images/%E7%BB%84%E7%BB%87%E6%9E%B6%E6%9E%84-47eb7105dd300e6dc0c502fba22688ae.png)
|
5224
|
+
# @type UserId: String
|
5225
|
+
# @param UserAccountType: 要修改手机号用户的类型。
|
5226
|
+
# <ul><li>0:员工 (默认)</li><li>1:个人</li>
|
5227
|
+
# </ul>
|
5228
|
+
# 如果是员工类型,<b>只能修改本方员工,而不能修改其他企业的员工</b>。
|
5229
|
+
# 如果是个人类型,可<b>不指定用户身份,生成的是固定的链接,当前登录电子签小程序的用户可进行换绑。</b>
|
5230
|
+
# @type UserAccountType: Integer
|
5231
|
+
# @param Name: 要修改手机号用户的姓名,请确保填写的姓名为对方的真实姓名,而非昵称等代名。
|
5232
|
+
|
5233
|
+
# 如果没有传递 userId且 userAccountType 是 0 或者没有传递, 此参数为<b>必填项。</b>
|
5234
|
+
# @type Name: String
|
5235
|
+
# @param IdCardType: 要修改手机号用户的证件类型,
|
5236
|
+
# 目前支持的账号类型如下:
|
5237
|
+
|
5238
|
+
# <ul><li><b>ID_CARD </b>: (默认)中国大陆居民身份证 </li>
|
5239
|
+
# <li><b>HONGKONG_AND_MACAO</b> : 港澳居民来往内地通行证</li>
|
5240
|
+
# <li><b>HONGKONG_MACAO_AND_TAIWAN </b>: 港澳台居民居住证(格式同居民身份证)</li></ul>
|
5241
|
+
# @type IdCardType: String
|
5242
|
+
# @param IdCardNumber: 要修改手机号用户的身份证号码,应符合以下规则
|
5243
|
+
# <ul><li>居民身份证号码应为18位字符串,由数字和大写字母X组成(如存在X,请大写)。</li>
|
5244
|
+
# <li>港澳居民来往内地通行证号码共11位。第1位为字母,“H”字头签发给香港居民,“M”字头签发给澳门居民;第2位至第11位为数字。</li>
|
5245
|
+
# <li>港澳台居民居住证号码编码规则与中国大陆身份证相同,应为18位字符串。</li></ul>
|
5246
|
+
# 如果没有传递 userId且 userAccountType 是 0 或者没有传递, 此参数为<b>必填项。</b>
|
5247
|
+
# @type IdCardNumber: String
|
5248
|
+
# @param Endpoint: 要跳转的链接类型
|
5249
|
+
|
5250
|
+
# <ul>
|
5251
|
+
# <li><b>HTTP</b>:(默认)跳转电子签小程序的http_url,短信通知或者H5跳转适合此类型 ,此时返回长链 (默认类型)</li>
|
5252
|
+
# <li><b>HTTP_SHORT_URL</b>:跳转电子签小程序的http_url,短信通知或者H5跳转适合此类型,此时返回短链</li>
|
5253
|
+
# <li><b>APP</b>:第三方APP或小程序跳转电子签小程序的path, APP或者小程序跳转适合此类型</li>
|
5254
|
+
# </ul>
|
5255
|
+
|
5256
|
+
# @type Endpoint: String
|
5257
|
+
# @param UserData: 在用户完成实名认证后,其自定义数据将通过[手机号换绑回调](https://qian.tencent.com/developers/company/callback_types_staffs/#%E5%8D%81%E4%B8%89-%E4%B8%AA%E4%BA%BA%E5%91%98%E5%B7%A5%E6%89%8B%E6%9C%BA%E5%8F%B7%E4%BF%AE%E6%94%B9%E5%90%8E%E5%9B%9E%E8%B0%83)返回,以便用户确认其个人数据信息。请注意,自定义数据的字符长度上限为1000,且必须采用base64编码格式。
|
5258
|
+
|
5259
|
+
# 请注意:
|
5260
|
+
# 此参数仅支持通过[获取c端用户实名链接](https://qian.tencent.com/developers/companyApis/users/CreateUserVerifyUrl)接口实名的用户生效。
|
5261
|
+
# @type UserData: String
|
5262
|
+
|
5263
|
+
attr_accessor :Operator, :Agent, :UserId, :UserAccountType, :Name, :IdCardType, :IdCardNumber, :Endpoint, :UserData
|
5264
|
+
|
5265
|
+
def initialize(operator=nil, agent=nil, userid=nil, useraccounttype=nil, name=nil, idcardtype=nil, idcardnumber=nil, endpoint=nil, userdata=nil)
|
5266
|
+
@Operator = operator
|
5267
|
+
@Agent = agent
|
5268
|
+
@UserId = userid
|
5269
|
+
@UserAccountType = useraccounttype
|
5270
|
+
@Name = name
|
5271
|
+
@IdCardType = idcardtype
|
5272
|
+
@IdCardNumber = idcardnumber
|
5273
|
+
@Endpoint = endpoint
|
5274
|
+
@UserData = userdata
|
5275
|
+
end
|
5276
|
+
|
5277
|
+
def deserialize(params)
|
5278
|
+
unless params['Operator'].nil?
|
5279
|
+
@Operator = UserInfo.new
|
5280
|
+
@Operator.deserialize(params['Operator'])
|
5281
|
+
end
|
5282
|
+
unless params['Agent'].nil?
|
5283
|
+
@Agent = Agent.new
|
5284
|
+
@Agent.deserialize(params['Agent'])
|
5285
|
+
end
|
5286
|
+
@UserId = params['UserId']
|
5287
|
+
@UserAccountType = params['UserAccountType']
|
5288
|
+
@Name = params['Name']
|
5289
|
+
@IdCardType = params['IdCardType']
|
5290
|
+
@IdCardNumber = params['IdCardNumber']
|
5291
|
+
@Endpoint = params['Endpoint']
|
5292
|
+
@UserData = params['UserData']
|
5293
|
+
end
|
5294
|
+
end
|
5295
|
+
|
5296
|
+
# CreateUserMobileChangeUrl返回参数结构体
|
5297
|
+
class CreateUserMobileChangeUrlResponse < TencentCloud::Common::AbstractModel
|
5298
|
+
# @param Url: 腾讯电子签小程序的实名认证链接。
|
5299
|
+
# 如果没有传递,默认值是 HTTP。 链接的有效期均是 7 天。
|
5300
|
+
|
5301
|
+
# - 如果EndPoint是APP,
|
5302
|
+
# 得到的链接类似于pages/guide/index?to=MOBILE_CHANGE_INTENTION&shortKey=yDCZHUyOcExAlcOvNod0, 用法可以参考描述中的"跳转到小程序的实现"
|
5303
|
+
|
5304
|
+
# - 如果EndPoint是HTTP,
|
5305
|
+
# 得到的链接类似于https://res.ess.tencent.cn/cdn/h5-activity/jump-mp.html?to=MOBILE_CHANGE_INTENTION&shortKey=yDCZHUyOcChrfpaswT0d,点击后会跳转到腾讯电子签小程序进行签署
|
5306
|
+
|
5307
|
+
# - 如果EndPoint是HTTP_SHORT_URL,
|
5308
|
+
# 得到的链接类似于https://essurl.cn/2n**42Nd,点击后会跳转到腾讯电子签小程序进行签署
|
5309
|
+
|
5310
|
+
|
5311
|
+
# 注: 生成的链路后面不能再增加参数
|
5312
|
+
# 示例值:https://essurl.cn/2n**42Nd
|
5313
|
+
# @type Url: String
|
5314
|
+
# @param ExpireTime: 链接失效期限如下:
|
5315
|
+
|
5316
|
+
# <ul>
|
5317
|
+
# <li>如果指定更换绑定手机号的用户(指定用户ID或姓名等信息),则设定的链接失效期限为7天后。</li>
|
5318
|
+
# <li>如果没有指定更换绑定手机号的用户,则生成通用跳转到个人换手机号的界面,链接不会过期。</li>
|
5319
|
+
# </ul>
|
5320
|
+
# @type ExpireTime: Integer
|
5321
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5322
|
+
# @type RequestId: String
|
5323
|
+
|
5324
|
+
attr_accessor :Url, :ExpireTime, :RequestId
|
5325
|
+
|
5326
|
+
def initialize(url=nil, expiretime=nil, requestid=nil)
|
5327
|
+
@Url = url
|
5328
|
+
@ExpireTime = expiretime
|
5329
|
+
@RequestId = requestid
|
5330
|
+
end
|
5331
|
+
|
5332
|
+
def deserialize(params)
|
5333
|
+
@Url = params['Url']
|
5334
|
+
@ExpireTime = params['ExpireTime']
|
5335
|
+
@RequestId = params['RequestId']
|
5336
|
+
end
|
5337
|
+
end
|
5338
|
+
|
5215
5339
|
# CreateUserVerifyUrl请求参数结构体
|
5216
5340
|
class CreateUserVerifyUrlRequest < TencentCloud::Common::AbstractModel
|
5217
5341
|
# @param Operator: 操作人信息
|
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.837
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|