tencentcloud-sdk-essbasic 1.0.286 → 1.0.287
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/v20210526/models.rb +22 -5
- 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: 838d64106eaff7115d3f4f9bd96130b5dd847540
|
4
|
+
data.tar.gz: db678b1a01755f6586cba40c6d5d5cff2d822685
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2472e75393243c64f67922f8ffde7bd60c466f6d7ad70502b979586b08b9206a9c6418293cae63b4ae9c18ba5e3dc9978263ca86f0be37a699e8ef4890a8d6a
|
7
|
+
data.tar.gz: 274a407f78fd9cf4f2fa262c4d5e9da4ee1e563368521a34d70a593ffe4c8e93c6017226ab3b9745445446ab9ef237849db3413d5d1791c117dc01164ded99a6
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.287
|
data/lib/v20210526/models.rb
CHANGED
@@ -351,15 +351,18 @@ module TencentCloud
|
|
351
351
|
# @type Endpoint: String
|
352
352
|
# @param JumpUrl: 签署完之后的H5页面的跳转链接,针对Endpoint为CHANNEL时有效
|
353
353
|
# @type JumpUrl: String
|
354
|
+
# @param AutoJumpBack: "APP" 类型的签署链接,可以设置此值;表示签署完成后自动回跳至源APP;
|
355
|
+
# @type AutoJumpBack: Boolean
|
354
356
|
|
355
|
-
attr_accessor :Agent, :FlowIds, :Operator, :Endpoint, :JumpUrl
|
357
|
+
attr_accessor :Agent, :FlowIds, :Operator, :Endpoint, :JumpUrl, :AutoJumpBack
|
356
358
|
|
357
|
-
def initialize(agent=nil, flowids=nil, operator=nil, endpoint=nil, jumpurl=nil)
|
359
|
+
def initialize(agent=nil, flowids=nil, operator=nil, endpoint=nil, jumpurl=nil, autojumpback=nil)
|
358
360
|
@Agent = agent
|
359
361
|
@FlowIds = flowids
|
360
362
|
@Operator = operator
|
361
363
|
@Endpoint = endpoint
|
362
364
|
@JumpUrl = jumpurl
|
365
|
+
@AutoJumpBack = autojumpback
|
363
366
|
end
|
364
367
|
|
365
368
|
def deserialize(params)
|
@@ -374,6 +377,7 @@ module TencentCloud
|
|
374
377
|
end
|
375
378
|
@Endpoint = params['Endpoint']
|
376
379
|
@JumpUrl = params['JumpUrl']
|
380
|
+
@AutoJumpBack = params['AutoJumpBack']
|
377
381
|
end
|
378
382
|
end
|
379
383
|
|
@@ -769,7 +773,9 @@ module TencentCloud
|
|
769
773
|
# @type Deadline: Integer
|
770
774
|
# @param CallbackUrl: 签署完回调url
|
771
775
|
# @type CallbackUrl: String
|
772
|
-
# @param ApproverType: 签署人类型,PERSON
|
776
|
+
# @param ApproverType: 签署人类型,PERSON-个人;ORGANIZATION-企业;
|
777
|
+
# ENTERPRISESERVER-企业静默签;
|
778
|
+
# 注:ENTERPRISESERVER 类型仅用于使用文件创建流程(ChannelCreateFlowByFiles)接口;并且仅能指定发起方企业签署方为静默签署;
|
773
779
|
# @type ApproverType: String
|
774
780
|
# @param OpenId: 用户侧第三方id
|
775
781
|
# @type OpenId: String
|
@@ -786,10 +792,12 @@ module TencentCloud
|
|
786
792
|
# @param NotChannelOrganization: 指定签署人非渠道企业下员工,在ApproverType为ORGANIZATION时指定。
|
787
793
|
# 默认为false,即签署人位于同一个渠道应用号下;
|
788
794
|
# @type NotChannelOrganization: Boolean
|
795
|
+
# @param SignComponents: 使用PDF文件直接发起合同时,签署人指定的签署控件
|
796
|
+
# @type SignComponents: Array
|
789
797
|
|
790
|
-
attr_accessor :Name, :IdCardNumber, :Mobile, :JumpUrl, :Deadline, :CallbackUrl, :ApproverType, :OpenId, :PreReadTime, :ComponentLimitType, :RecipientId, :OrganizationName, :OrganizationOpenId, :NotChannelOrganization
|
798
|
+
attr_accessor :Name, :IdCardNumber, :Mobile, :JumpUrl, :Deadline, :CallbackUrl, :ApproverType, :OpenId, :PreReadTime, :ComponentLimitType, :RecipientId, :OrganizationName, :OrganizationOpenId, :NotChannelOrganization, :SignComponents
|
791
799
|
|
792
|
-
def initialize(name=nil, idcardnumber=nil, mobile=nil, jumpurl=nil, deadline=nil, callbackurl=nil, approvertype=nil, openid=nil, prereadtime=nil, componentlimittype=nil, recipientid=nil, organizationname=nil, organizationopenid=nil, notchannelorganization=nil)
|
800
|
+
def initialize(name=nil, idcardnumber=nil, mobile=nil, jumpurl=nil, deadline=nil, callbackurl=nil, approvertype=nil, openid=nil, prereadtime=nil, componentlimittype=nil, recipientid=nil, organizationname=nil, organizationopenid=nil, notchannelorganization=nil, signcomponents=nil)
|
793
801
|
@Name = name
|
794
802
|
@IdCardNumber = idcardnumber
|
795
803
|
@Mobile = mobile
|
@@ -804,6 +812,7 @@ module TencentCloud
|
|
804
812
|
@OrganizationName = organizationname
|
805
813
|
@OrganizationOpenId = organizationopenid
|
806
814
|
@NotChannelOrganization = notchannelorganization
|
815
|
+
@SignComponents = signcomponents
|
807
816
|
end
|
808
817
|
|
809
818
|
def deserialize(params)
|
@@ -821,6 +830,14 @@ module TencentCloud
|
|
821
830
|
@OrganizationName = params['OrganizationName']
|
822
831
|
@OrganizationOpenId = params['OrganizationOpenId']
|
823
832
|
@NotChannelOrganization = params['NotChannelOrganization']
|
833
|
+
unless params['SignComponents'].nil?
|
834
|
+
@SignComponents = []
|
835
|
+
params['SignComponents'].each do |i|
|
836
|
+
component_tmp = Component.new
|
837
|
+
component_tmp.deserialize(i)
|
838
|
+
@SignComponents << component_tmp
|
839
|
+
end
|
840
|
+
end
|
824
841
|
end
|
825
842
|
end
|
826
843
|
|
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: 1.0.
|
4
|
+
version: 1.0.287
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-03-
|
11
|
+
date: 2022-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|