tencentcloud-sdk-essbasic 3.0.716 → 3.0.717
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 +35 -7
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d63bd6db3caa17928568312d186627a93fccd73e
|
4
|
+
data.tar.gz: 1c0e76a5d0ad755ac69ecccd403f8efedc3ea267
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71b9e19fb4baea770b64e89f72c4cc10377336d8b7e8e66dddd9b804b3b03bd002290e15bd75839a9f0ef19488aaa7d247f467047f47f4bba71f07cebeb855cc
|
7
|
+
data.tar.gz: 01f8fdca2d0655e58055942bf85351bc04d85c4e85a2f042632758e6c08262af1501594f06a073b63646decebace4cac8956501f576b84fe2034b35a6f22a135
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.717
|
data/lib/v20210526/models.rb
CHANGED
@@ -1328,18 +1328,31 @@ module TencentCloud
|
|
1328
1328
|
# @type HiddenComponents: Boolean
|
1329
1329
|
# @param Operator: 渠道操作者信息
|
1330
1330
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
1331
|
+
# @param UserData: 用户自定义参数
|
1332
|
+
# <ul>
|
1333
|
+
# <li>目前仅支持EmbedType=CREATE_TEMPLATE时传入</li>
|
1334
|
+
# <li>指定后,创建,编辑,删除模版时,回调都会携带该userData</li>
|
1335
|
+
# <li>支持的格式:json字符串的BASE64编码字符串</li>
|
1336
|
+
# <li>示例:<ul>
|
1337
|
+
# <li>json字符串:{"ComeFrom":"xxx"},BASE64编码:eyJDb21lRnJvbSI6Inh4eCJ9</li>
|
1338
|
+
# <li>eyJDb21lRnJvbSI6Inh4eCJ9,为符合要求的userData数据格式</li>
|
1339
|
+
# </ul>
|
1340
|
+
# </li>
|
1341
|
+
# </ul>
|
1342
|
+
# @type UserData: String
|
1331
1343
|
|
1332
|
-
attr_accessor :Agent, :EmbedType, :BusinessId, :HiddenComponents, :Operator
|
1344
|
+
attr_accessor :Agent, :EmbedType, :BusinessId, :HiddenComponents, :Operator, :UserData
|
1333
1345
|
extend Gem::Deprecate
|
1334
1346
|
deprecate :Operator, :none, 2023, 11
|
1335
1347
|
deprecate :Operator=, :none, 2023, 11
|
1336
1348
|
|
1337
|
-
def initialize(agent=nil, embedtype=nil, businessid=nil, hiddencomponents=nil, operator=nil)
|
1349
|
+
def initialize(agent=nil, embedtype=nil, businessid=nil, hiddencomponents=nil, operator=nil, userdata=nil)
|
1338
1350
|
@Agent = agent
|
1339
1351
|
@EmbedType = embedtype
|
1340
1352
|
@BusinessId = businessid
|
1341
1353
|
@HiddenComponents = hiddencomponents
|
1342
1354
|
@Operator = operator
|
1355
|
+
@UserData = userdata
|
1343
1356
|
end
|
1344
1357
|
|
1345
1358
|
def deserialize(params)
|
@@ -1354,6 +1367,7 @@ module TencentCloud
|
|
1354
1367
|
@Operator = UserInfo.new
|
1355
1368
|
@Operator.deserialize(params['Operator'])
|
1356
1369
|
end
|
1370
|
+
@UserData = params['UserData']
|
1357
1371
|
end
|
1358
1372
|
end
|
1359
1373
|
|
@@ -2312,9 +2326,15 @@ module TencentCloud
|
|
2312
2326
|
|
2313
2327
|
# ChannelCreatePrepareFlow请求参数结构体
|
2314
2328
|
class ChannelCreatePrepareFlowRequest < TencentCloud::Common::AbstractModel
|
2315
|
-
# @param ResourceId:
|
2329
|
+
# @param ResourceId: 资源id,与ResourceType相对应,取值范围:
|
2330
|
+
# <ul>
|
2331
|
+
# <li>文件Id(通过UploadFiles获取文件资源Id)</li>
|
2332
|
+
# <li>模板Id</li>
|
2333
|
+
# </ul>
|
2316
2334
|
# @type ResourceId: String
|
2317
|
-
# @param ResourceType:
|
2335
|
+
# @param ResourceType: 资源类型,取值有:
|
2336
|
+
# <ul><li> **1**:模板</li>
|
2337
|
+
# <li> **2**:文件(默认值)</li></ul>
|
2318
2338
|
# @type ResourceType: Integer
|
2319
2339
|
# @param FlowInfo: 要创建的合同信息
|
2320
2340
|
# @type FlowInfo: :class:`Tencentcloud::Essbasic.v20210526.models.BaseFlowInfo`
|
@@ -2332,7 +2352,8 @@ module TencentCloud
|
|
2332
2352
|
# @type FlowOption: :class:`Tencentcloud::Essbasic.v20210526.models.CreateFlowOption`
|
2333
2353
|
# @param FlowApproverList: 合同签署人信息
|
2334
2354
|
# @type FlowApproverList: Array
|
2335
|
-
# @param FlowId:
|
2355
|
+
# @param FlowId: 合同Id:用于通过一个已发起的合同快速生成一个发起流程web链接
|
2356
|
+
# 注: `该参数必须是一个待发起审核的合同id,并且还未审核通过`
|
2336
2357
|
# @type FlowId: String
|
2337
2358
|
# @param NeedPreview: 该参数不可用,请通过获取 web 可嵌入接口获取合同流程预览 URL
|
2338
2359
|
# @type NeedPreview: Boolean
|
@@ -4977,10 +4998,15 @@ module TencentCloud
|
|
4977
4998
|
# **true**:禁止编辑填写控件
|
4978
4999
|
# **false**:(默认)允许编辑填写控件
|
4979
5000
|
# @type ForbidEditFillComponent: Boolean
|
5001
|
+
# @param SkipUploadFile: 跳过上传文件步骤
|
5002
|
+
|
5003
|
+
# **true**:跳过
|
5004
|
+
# **false**:(默认)不跳过,需要传ResourceId
|
5005
|
+
# @type SkipUploadFile: String
|
4980
5006
|
|
4981
|
-
attr_accessor :CanEditFlow, :HideShowFlowName, :HideShowFlowType, :HideShowDeadline, :CanSkipAddApprover, :CustomCreateFlowDescription, :ForbidEditFillComponent
|
5007
|
+
attr_accessor :CanEditFlow, :HideShowFlowName, :HideShowFlowType, :HideShowDeadline, :CanSkipAddApprover, :CustomCreateFlowDescription, :ForbidEditFillComponent, :SkipUploadFile
|
4982
5008
|
|
4983
|
-
def initialize(caneditflow=nil, hideshowflowname=nil, hideshowflowtype=nil, hideshowdeadline=nil, canskipaddapprover=nil, customcreateflowdescription=nil, forbideditfillcomponent=nil)
|
5009
|
+
def initialize(caneditflow=nil, hideshowflowname=nil, hideshowflowtype=nil, hideshowdeadline=nil, canskipaddapprover=nil, customcreateflowdescription=nil, forbideditfillcomponent=nil, skipuploadfile=nil)
|
4984
5010
|
@CanEditFlow = caneditflow
|
4985
5011
|
@HideShowFlowName = hideshowflowname
|
4986
5012
|
@HideShowFlowType = hideshowflowtype
|
@@ -4988,6 +5014,7 @@ module TencentCloud
|
|
4988
5014
|
@CanSkipAddApprover = canskipaddapprover
|
4989
5015
|
@CustomCreateFlowDescription = customcreateflowdescription
|
4990
5016
|
@ForbidEditFillComponent = forbideditfillcomponent
|
5017
|
+
@SkipUploadFile = skipuploadfile
|
4991
5018
|
end
|
4992
5019
|
|
4993
5020
|
def deserialize(params)
|
@@ -4998,6 +5025,7 @@ module TencentCloud
|
|
4998
5025
|
@CanSkipAddApprover = params['CanSkipAddApprover']
|
4999
5026
|
@CustomCreateFlowDescription = params['CustomCreateFlowDescription']
|
5000
5027
|
@ForbidEditFillComponent = params['ForbidEditFillComponent']
|
5028
|
+
@SkipUploadFile = params['SkipUploadFile']
|
5001
5029
|
end
|
5002
5030
|
end
|
5003
5031
|
|