tencentcloud-sdk-essbasic 3.0.435 → 3.0.436
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 +32 -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: fdc7a95dca98bedc2cedccb5a42a14ac30e728b3
|
4
|
+
data.tar.gz: edb2d0ef1e951bd246ecb33450030f5382848311
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b33a8dfac6641e61c3ad9af0f84cb71ed4464acd13988a8dda973c18636fe3a8ac6bafeb4c7b4be0e03262c60105aea5758fd3c8b625e7ccb325c7692e4b78e8
|
7
|
+
data.tar.gz: c512ef04039b9b6b2633af33035237c941be7fb6c4bef78c23ca46e99e4ec4c7545004ef639d7a31238b98e3a454caaaaa5214c639914d4389ffc0c6551f6f01
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.436
|
data/lib/v20210526/models.rb
CHANGED
@@ -52,6 +52,22 @@ module TencentCloud
|
|
52
52
|
end
|
53
53
|
end
|
54
54
|
|
55
|
+
# 签署人个性化能力信息
|
56
|
+
class ApproverOption < TencentCloud::Common::AbstractModel
|
57
|
+
# @param HideOneKeySign: 是否隐藏一键签署 false-不隐藏,默认 true-隐藏
|
58
|
+
# @type HideOneKeySign: Boolean
|
59
|
+
|
60
|
+
attr_accessor :HideOneKeySign
|
61
|
+
|
62
|
+
def initialize(hideonekeysign=nil)
|
63
|
+
@HideOneKeySign = hideonekeysign
|
64
|
+
end
|
65
|
+
|
66
|
+
def deserialize(params)
|
67
|
+
@HideOneKeySign = params['HideOneKeySign']
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
55
71
|
# 指定签署人限制项
|
56
72
|
class ApproverRestriction < TencentCloud::Common::AbstractModel
|
57
73
|
# @param Name: 指定签署人名字
|
@@ -1868,14 +1884,14 @@ module TencentCloud
|
|
1868
1884
|
# 创建签署流程签署人入参。
|
1869
1885
|
|
1870
1886
|
# 其中签署方FlowApproverInfo需要传递的参数
|
1871
|
-
# 非单C、单B、B2C合同,ApproverType、RecipientId
|
1887
|
+
# 非单C、单B、B2C合同,ApproverType、RecipientId(模板发起合同时)必传,建议都传。其他身份标识
|
1872
1888
|
# 1-个人:Name、Mobile必传
|
1873
1889
|
# 2-渠道子客企业指定经办人:OpenId必传,OrgName必传、OrgOpenId必传;
|
1874
1890
|
# 3-渠道合作企业不指定经办人:(暂不支持)
|
1875
1891
|
# 4-非渠道合作企业:Name、Mobile必传,OrgName必传,且NotChannelOrganization=True。
|
1876
1892
|
|
1877
1893
|
# RecipientId参数:
|
1878
|
-
# 从DescribeTemplates
|
1894
|
+
# 从DescribeTemplates接口中,可以得到模板下的签署方Recipient列表,根据模板自定义的Rolename在此结构体中确定其RecipientId
|
1879
1895
|
class FlowApproverInfo < TencentCloud::Common::AbstractModel
|
1880
1896
|
# @param Name: 签署人姓名,最大长度50个字符
|
1881
1897
|
# @type Name: String
|
@@ -1901,7 +1917,7 @@ module TencentCloud
|
|
1901
1917
|
# PERSON_AUTO_SIGN-个人自动签;
|
1902
1918
|
# ORGANIZATION-企业;
|
1903
1919
|
# ENTERPRISESERVER-企业静默签;
|
1904
|
-
# 注:ENTERPRISESERVER 类型仅用于使用文件创建签署流程(ChannelCreateFlowByFiles
|
1920
|
+
# 注:ENTERPRISESERVER 类型仅用于使用文件创建签署流程(ChannelCreateFlowByFiles)接口;
|
1905
1921
|
# @type ApproverType: String
|
1906
1922
|
# @param RecipientId: 签署流程签署人在模板中对应的签署人Id;在非单方签署、以及非B2C签署的场景下必传,用于指定当前签署方在签署流程中的位置;
|
1907
1923
|
# @type RecipientId: String
|
@@ -1917,10 +1933,14 @@ module TencentCloud
|
|
1917
1933
|
# @type PreReadTime: Integer
|
1918
1934
|
# @param JumpUrl: 签署完前端跳转的url,暂未使用
|
1919
1935
|
# @type JumpUrl: String
|
1936
|
+
# @param ApproverOption: 签署人个性化能力值
|
1937
|
+
# @type ApproverOption: :class:`Tencentcloud::Essbasic.v20210526.models.ApproverOption`
|
1938
|
+
# @param ApproverNeedSignReview: 当前签署方进行签署操作是否需要企业内部审批,true 则为需要
|
1939
|
+
# @type ApproverNeedSignReview: Boolean
|
1920
1940
|
|
1921
|
-
attr_accessor :Name, :IdCardType, :IdCardNumber, :Mobile, :OrganizationName, :NotChannelOrganization, :OpenId, :OrganizationOpenId, :ApproverType, :RecipientId, :Deadline, :CallbackUrl, :SignComponents, :ComponentLimitType, :PreReadTime, :JumpUrl
|
1941
|
+
attr_accessor :Name, :IdCardType, :IdCardNumber, :Mobile, :OrganizationName, :NotChannelOrganization, :OpenId, :OrganizationOpenId, :ApproverType, :RecipientId, :Deadline, :CallbackUrl, :SignComponents, :ComponentLimitType, :PreReadTime, :JumpUrl, :ApproverOption, :ApproverNeedSignReview
|
1922
1942
|
|
1923
|
-
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)
|
1943
|
+
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)
|
1924
1944
|
@Name = name
|
1925
1945
|
@IdCardType = idcardtype
|
1926
1946
|
@IdCardNumber = idcardnumber
|
@@ -1937,6 +1957,8 @@ module TencentCloud
|
|
1937
1957
|
@ComponentLimitType = componentlimittype
|
1938
1958
|
@PreReadTime = prereadtime
|
1939
1959
|
@JumpUrl = jumpurl
|
1960
|
+
@ApproverOption = approveroption
|
1961
|
+
@ApproverNeedSignReview = approverneedsignreview
|
1940
1962
|
end
|
1941
1963
|
|
1942
1964
|
def deserialize(params)
|
@@ -1963,6 +1985,11 @@ module TencentCloud
|
|
1963
1985
|
@ComponentLimitType = params['ComponentLimitType']
|
1964
1986
|
@PreReadTime = params['PreReadTime']
|
1965
1987
|
@JumpUrl = params['JumpUrl']
|
1988
|
+
unless params['ApproverOption'].nil?
|
1989
|
+
@ApproverOption = ApproverOption.new
|
1990
|
+
@ApproverOption.deserialize(params['ApproverOption'])
|
1991
|
+
end
|
1992
|
+
@ApproverNeedSignReview = params['ApproverNeedSignReview']
|
1966
1993
|
end
|
1967
1994
|
end
|
1968
1995
|
|
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.436
|
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-10-
|
11
|
+
date: 2022-10-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|