tencentcloud-sdk-ess 3.0.571 → 3.0.573
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 +1 -1
- data/lib/v20201111/models.rb +12 -4
- 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: 76b20d2e71d4c78d70d61b64b8fb6f79b7bb257c
|
4
|
+
data.tar.gz: a2e280151dc2baf7ca6bfee86d85e9366cf1fbfd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e66960fb40a3175df5f1cfcfd2fe2a2087bc5bf9a5481facf3ac5838c9eb5de5ada06f63f2ae3609fa6e989103da4921c658f56d53c4ed6bc31ba60f0dac7d1
|
7
|
+
data.tar.gz: 7399f2cd942cb2ecb1c7285171f9d98203b9d6662fdc66c27ccf8fd6d2651483c27133fe15eb73732c14c2bd1c6f0041e1ae4eb17ea7d97dc84002b2a8358bfb
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.573
|
data/lib/v20201111/client.rb
CHANGED
@@ -203,7 +203,7 @@ module TencentCloud
|
|
203
203
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
204
204
|
end
|
205
205
|
|
206
|
-
#
|
206
|
+
# 通过模板创建签署流程
|
207
207
|
# 适用场景:在标准制式的合同场景中,可通过提前预制好模板文件,每次调用模板文件的id,补充合同内容信息及签署信息生成电子合同。
|
208
208
|
# 注:该接口是通过模板生成合同流程的前置接口,先创建一个不包含签署文件的流程。配合“创建电子文档”接口和“发起流程”接口使用。
|
209
209
|
|
data/lib/v20201111/models.rb
CHANGED
@@ -1082,10 +1082,12 @@ module TencentCloud
|
|
1082
1082
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1083
1083
|
# @param CcNotifyType: 给关注人发送短信通知的类型,0-合同发起时通知 1-签署完成后通知
|
1084
1084
|
# @type CcNotifyType: Integer
|
1085
|
+
# @param AutoSignScene: 个人自动签场景。发起自动签署时,需设置对应自动签署场景,目前仅支持场景:处方单-E_PRESCRIPTION_AUTO_SIGN
|
1086
|
+
# @type AutoSignScene: String
|
1085
1087
|
|
1086
|
-
attr_accessor :Operator, :FlowName, :Approvers, :FileIds, :FlowType, :Components, :CcInfos, :NeedPreview, :PreviewType, :Deadline, :Unordered, :CustomShowMap, :NeedSignReview, :UserData, :ApproverVerifyType, :FlowDescription, :SignBeanTag, :Agent, :CcNotifyType
|
1088
|
+
attr_accessor :Operator, :FlowName, :Approvers, :FileIds, :FlowType, :Components, :CcInfos, :NeedPreview, :PreviewType, :Deadline, :Unordered, :CustomShowMap, :NeedSignReview, :UserData, :ApproverVerifyType, :FlowDescription, :SignBeanTag, :Agent, :CcNotifyType, :AutoSignScene
|
1087
1089
|
|
1088
|
-
def initialize(operator=nil, flowname=nil, approvers=nil, fileids=nil, flowtype=nil, components=nil, ccinfos=nil, needpreview=nil, previewtype=nil, deadline=nil, unordered=nil, customshowmap=nil, needsignreview=nil, userdata=nil, approververifytype=nil, flowdescription=nil, signbeantag=nil, agent=nil, ccnotifytype=nil)
|
1090
|
+
def initialize(operator=nil, flowname=nil, approvers=nil, fileids=nil, flowtype=nil, components=nil, ccinfos=nil, needpreview=nil, previewtype=nil, deadline=nil, unordered=nil, customshowmap=nil, needsignreview=nil, userdata=nil, approververifytype=nil, flowdescription=nil, signbeantag=nil, agent=nil, ccnotifytype=nil, autosignscene=nil)
|
1089
1091
|
@Operator = operator
|
1090
1092
|
@FlowName = flowname
|
1091
1093
|
@Approvers = approvers
|
@@ -1105,6 +1107,7 @@ module TencentCloud
|
|
1105
1107
|
@SignBeanTag = signbeantag
|
1106
1108
|
@Agent = agent
|
1107
1109
|
@CcNotifyType = ccnotifytype
|
1110
|
+
@AutoSignScene = autosignscene
|
1108
1111
|
end
|
1109
1112
|
|
1110
1113
|
def deserialize(params)
|
@@ -1154,6 +1157,7 @@ module TencentCloud
|
|
1154
1157
|
@Agent.deserialize(params['Agent'])
|
1155
1158
|
end
|
1156
1159
|
@CcNotifyType = params['CcNotifyType']
|
1160
|
+
@AutoSignScene = params['AutoSignScene']
|
1157
1161
|
end
|
1158
1162
|
end
|
1159
1163
|
|
@@ -1331,10 +1335,12 @@ module TencentCloud
|
|
1331
1335
|
# @param CcInfos: 被抄送人的信息列表。
|
1332
1336
|
# 注: 此功能为白名单功能,若有需要,请联系电子签客服开白使用。
|
1333
1337
|
# @type CcInfos: Array
|
1338
|
+
# @param AutoSignScene: 个人自动签场景。发起自动签署时,需设置对应自动签署场景,目前仅支持场景:处方单-E_PRESCRIPTION_AUTO_SIGN
|
1339
|
+
# @type AutoSignScene: String
|
1334
1340
|
|
1335
|
-
attr_accessor :Operator, :FlowName, :Approvers, :FlowType, :ClientToken, :RelatedFlowId, :DeadLine, :UserData, :FlowDescription, :Unordered, :CustomShowMap, :NeedSignReview, :CallbackUrl, :Agent, :CcInfos
|
1341
|
+
attr_accessor :Operator, :FlowName, :Approvers, :FlowType, :ClientToken, :RelatedFlowId, :DeadLine, :UserData, :FlowDescription, :Unordered, :CustomShowMap, :NeedSignReview, :CallbackUrl, :Agent, :CcInfos, :AutoSignScene
|
1336
1342
|
|
1337
|
-
def initialize(operator=nil, flowname=nil, approvers=nil, flowtype=nil, clienttoken=nil, relatedflowid=nil, deadline=nil, userdata=nil, flowdescription=nil, unordered=nil, customshowmap=nil, needsignreview=nil, callbackurl=nil, agent=nil, ccinfos=nil)
|
1343
|
+
def initialize(operator=nil, flowname=nil, approvers=nil, flowtype=nil, clienttoken=nil, relatedflowid=nil, deadline=nil, userdata=nil, flowdescription=nil, unordered=nil, customshowmap=nil, needsignreview=nil, callbackurl=nil, agent=nil, ccinfos=nil, autosignscene=nil)
|
1338
1344
|
@Operator = operator
|
1339
1345
|
@FlowName = flowname
|
1340
1346
|
@Approvers = approvers
|
@@ -1350,6 +1356,7 @@ module TencentCloud
|
|
1350
1356
|
@CallbackUrl = callbackurl
|
1351
1357
|
@Agent = agent
|
1352
1358
|
@CcInfos = ccinfos
|
1359
|
+
@AutoSignScene = autosignscene
|
1353
1360
|
end
|
1354
1361
|
|
1355
1362
|
def deserialize(params)
|
@@ -1388,6 +1395,7 @@ module TencentCloud
|
|
1388
1395
|
@CcInfos << ccinfo_tmp
|
1389
1396
|
end
|
1390
1397
|
end
|
1398
|
+
@AutoSignScene = params['AutoSignScene']
|
1391
1399
|
end
|
1392
1400
|
end
|
1393
1401
|
|
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.573
|
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-05-
|
11
|
+
date: 2023-05-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|