tencentcloud-sdk-essbasic 3.0.610 → 3.0.611
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/v20210526/models.rb +7 -2
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ed8c863c20cde75359793a0ea7ef7c0d45a3b52
|
|
4
|
+
data.tar.gz: ee144766eb3b32fb60b55e215ba6d73f9dcd0d2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 891d899b65261607f8b2f6da1a4e3d28a4b1e47cf7237aa9b5f51297c6689ece8507e9ace4506112e28b99b49e5e5a776d89edd0ba0edc4354e41854b94f03c9
|
|
7
|
+
data.tar.gz: 5be8ed5df551679263d0a9c20b9fd439d9820ec8fbb0a2fc88598b36e4ca10a5ec086884ebec0facf6e5fcaf8425ded182884eb4d3746567b737ea85e84e41cb
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.611
|
data/lib/v20210526/models.rb
CHANGED
|
@@ -3812,13 +3812,16 @@ module TencentCloud
|
|
|
3812
3812
|
# - 发起流程时系统自动补充
|
|
3813
3813
|
# - 创建签署链接时,可以通过查询详情接口获得签署人的SignId,然后可传入此值为该签署人创建签署链接,无需再传姓名、手机号、证件号等其他信息
|
|
3814
3814
|
# @type SignId: String
|
|
3815
|
+
# @param NotifyType: SMS: 短信; NONE: 不发信息
|
|
3816
|
+
# 默认为SMS(该字段对子客无效)
|
|
3817
|
+
# @type NotifyType: String
|
|
3815
3818
|
|
|
3816
|
-
attr_accessor :Name, :IdCardType, :IdCardNumber, :Mobile, :OrganizationName, :NotChannelOrganization, :OpenId, :OrganizationOpenId, :ApproverType, :RecipientId, :Deadline, :CallbackUrl, :SignComponents, :ComponentLimitType, :PreReadTime, :JumpUrl, :ApproverOption, :ApproverNeedSignReview, :ApproverVerifyTypes, :ApproverSignTypes, :SignId
|
|
3819
|
+
attr_accessor :Name, :IdCardType, :IdCardNumber, :Mobile, :OrganizationName, :NotChannelOrganization, :OpenId, :OrganizationOpenId, :ApproverType, :RecipientId, :Deadline, :CallbackUrl, :SignComponents, :ComponentLimitType, :PreReadTime, :JumpUrl, :ApproverOption, :ApproverNeedSignReview, :ApproverVerifyTypes, :ApproverSignTypes, :SignId, :NotifyType
|
|
3817
3820
|
extend Gem::Deprecate
|
|
3818
3821
|
deprecate :CallbackUrl, :none, 2023, 7
|
|
3819
3822
|
deprecate :CallbackUrl=, :none, 2023, 7
|
|
3820
3823
|
|
|
3821
|
-
def initialize(name=nil, idcardtype=nil, idcardnumber=nil, mobile=nil, organizationname=nil, notchannelorganization=nil, openid=nil, organizationopenid=nil, approvertype=nil, recipientid=nil, deadline=nil, callbackurl=nil, signcomponents=nil, componentlimittype=nil, prereadtime=nil, jumpurl=nil, approveroption=nil, approverneedsignreview=nil, approververifytypes=nil, approversigntypes=nil, signid=nil)
|
|
3824
|
+
def initialize(name=nil, idcardtype=nil, idcardnumber=nil, mobile=nil, organizationname=nil, notchannelorganization=nil, openid=nil, organizationopenid=nil, approvertype=nil, recipientid=nil, deadline=nil, callbackurl=nil, signcomponents=nil, componentlimittype=nil, prereadtime=nil, jumpurl=nil, approveroption=nil, approverneedsignreview=nil, approververifytypes=nil, approversigntypes=nil, signid=nil, notifytype=nil)
|
|
3822
3825
|
@Name = name
|
|
3823
3826
|
@IdCardType = idcardtype
|
|
3824
3827
|
@IdCardNumber = idcardnumber
|
|
@@ -3840,6 +3843,7 @@ module TencentCloud
|
|
|
3840
3843
|
@ApproverVerifyTypes = approververifytypes
|
|
3841
3844
|
@ApproverSignTypes = approversigntypes
|
|
3842
3845
|
@SignId = signid
|
|
3846
|
+
@NotifyType = notifytype
|
|
3843
3847
|
end
|
|
3844
3848
|
|
|
3845
3849
|
def deserialize(params)
|
|
@@ -3874,6 +3878,7 @@ module TencentCloud
|
|
|
3874
3878
|
@ApproverVerifyTypes = params['ApproverVerifyTypes']
|
|
3875
3879
|
@ApproverSignTypes = params['ApproverSignTypes']
|
|
3876
3880
|
@SignId = params['SignId']
|
|
3881
|
+
@NotifyType = params['NotifyType']
|
|
3877
3882
|
end
|
|
3878
3883
|
end
|
|
3879
3884
|
|
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.
|
|
4
|
+
version: 3.0.611
|
|
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-07-
|
|
11
|
+
date: 2023-07-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,11 +33,11 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/v20201222/client.rb
|
|
37
|
-
- lib/v20201222/models.rb
|
|
38
36
|
- lib/tencentcloud-sdk-essbasic.rb
|
|
39
|
-
- lib/v20210526/client.rb
|
|
40
37
|
- lib/v20210526/models.rb
|
|
38
|
+
- lib/v20210526/client.rb
|
|
39
|
+
- lib/v20201222/models.rb
|
|
40
|
+
- lib/v20201222/client.rb
|
|
41
41
|
- lib/VERSION
|
|
42
42
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
43
43
|
licenses:
|