tencentcloud-sdk-ess 3.0.431 → 3.0.432
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/models.rb +32 -20
- 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: 8b6bc81cdd2710e4306c1508369d1cf69257553c
|
4
|
+
data.tar.gz: d31f31a655685b5920936a629af8d94822818c67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93766a5f674d4159375f4c63ec6daab6c00206da44e494af6ebd6f934e5d919ebbbbecd544e2a284827cdfc994779d3907105bb52327e90647398db0f85264ff
|
7
|
+
data.tar.gz: af162908830badd5c6138ffb220a074505968aeb6cadb7bb03a0bf2012a92c9200c96873116d95ac6a2f0163666f24461becf27c4e2d9ccb3b86dbc8337b962a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.432
|
data/lib/v20201111/models.rb
CHANGED
@@ -334,6 +334,7 @@ module TencentCloud
|
|
334
334
|
# FILL_IMAGE、ATTACHMENT - 附件的FileId,需要通过UploadFiles接口上传获取
|
335
335
|
# SELECTOR - 选项值
|
336
336
|
# DYNAMIC_TABLE - 传入json格式的表格内容,具体见数据结构FlowInfo:https://cloud.tencent.com/document/api/1420/61525#FlowInfo
|
337
|
+
# SIGN_SEAL - 印章Id,于控制台查询获取
|
337
338
|
# @type ComponentValue: String
|
338
339
|
# @param IsFormType: 是否是表单域类型,默认不存在
|
339
340
|
# @type IsFormType: Boolean
|
@@ -1040,18 +1041,12 @@ module TencentCloud
|
|
1040
1041
|
|
1041
1042
|
# CreateMultiFlowSignQRCode请求参数结构体
|
1042
1043
|
class CreateMultiFlowSignQRCodeRequest < TencentCloud::Common::AbstractModel
|
1044
|
+
# @param Operator: 用户信息
|
1045
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
1043
1046
|
# @param TemplateId: 模板ID
|
1044
1047
|
# @type TemplateId: String
|
1045
1048
|
# @param FlowName: 签署流程名称,最大长度不超过200字符
|
1046
1049
|
# @type FlowName: String
|
1047
|
-
# @param Operator: 用户信息
|
1048
|
-
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
1049
|
-
# @param Agent: 应用信息
|
1050
|
-
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1051
|
-
# @param CallbackUrl: 回调地址,最大长度1000字符串
|
1052
|
-
# 回调时机:
|
1053
|
-
# 用户通过签署二维码发起签署流程时,企业额度不足导致失败
|
1054
|
-
# @type CallbackUrl: String
|
1055
1050
|
# @param MaxFlowNum: 最大可发起签署流程份数,默认5份
|
1056
1051
|
# 发起流程数量超过此上限后二维码自动失效
|
1057
1052
|
# @type MaxFlowNum: Integer
|
@@ -1059,38 +1054,55 @@ module TencentCloud
|
|
1059
1054
|
# @type FlowEffectiveDay: Integer
|
1060
1055
|
# @param QrEffectiveDay: 二维码有效天数 默认7天 最高设置不超过90天
|
1061
1056
|
# @type QrEffectiveDay: Integer
|
1062
|
-
# @param
|
1057
|
+
# @param Restrictions: 限制二维码用户条件
|
1058
|
+
# @type Restrictions: Array
|
1059
|
+
# @param CallbackUrl: 回调地址,最大长度1000字符串
|
1060
|
+
# 回调时机:
|
1061
|
+
# 用户通过签署二维码发起签署流程时,企业额度不足导致失败
|
1062
|
+
# @type CallbackUrl: String
|
1063
|
+
# @param Agent: 应用信息
|
1064
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1065
|
+
# @param ApproverRestrictions: 限制二维码用户条件(已弃用)
|
1063
1066
|
# @type ApproverRestrictions: :class:`Tencentcloud::Ess.v20201111.models.ApproverRestriction`
|
1064
1067
|
|
1065
|
-
attr_accessor :TemplateId, :FlowName, :
|
1068
|
+
attr_accessor :Operator, :TemplateId, :FlowName, :MaxFlowNum, :FlowEffectiveDay, :QrEffectiveDay, :Restrictions, :CallbackUrl, :Agent, :ApproverRestrictions
|
1066
1069
|
|
1067
|
-
def initialize(templateid=nil, flowname=nil,
|
1070
|
+
def initialize(operator=nil, templateid=nil, flowname=nil, maxflownum=nil, floweffectiveday=nil, qreffectiveday=nil, restrictions=nil, callbackurl=nil, agent=nil, approverrestrictions=nil)
|
1071
|
+
@Operator = operator
|
1068
1072
|
@TemplateId = templateid
|
1069
1073
|
@FlowName = flowname
|
1070
|
-
@Operator = operator
|
1071
|
-
@Agent = agent
|
1072
|
-
@CallbackUrl = callbackurl
|
1073
1074
|
@MaxFlowNum = maxflownum
|
1074
1075
|
@FlowEffectiveDay = floweffectiveday
|
1075
1076
|
@QrEffectiveDay = qreffectiveday
|
1077
|
+
@Restrictions = restrictions
|
1078
|
+
@CallbackUrl = callbackurl
|
1079
|
+
@Agent = agent
|
1076
1080
|
@ApproverRestrictions = approverrestrictions
|
1077
1081
|
end
|
1078
1082
|
|
1079
1083
|
def deserialize(params)
|
1080
|
-
@TemplateId = params['TemplateId']
|
1081
|
-
@FlowName = params['FlowName']
|
1082
1084
|
unless params['Operator'].nil?
|
1083
1085
|
@Operator = UserInfo.new
|
1084
1086
|
@Operator.deserialize(params['Operator'])
|
1085
1087
|
end
|
1088
|
+
@TemplateId = params['TemplateId']
|
1089
|
+
@FlowName = params['FlowName']
|
1090
|
+
@MaxFlowNum = params['MaxFlowNum']
|
1091
|
+
@FlowEffectiveDay = params['FlowEffectiveDay']
|
1092
|
+
@QrEffectiveDay = params['QrEffectiveDay']
|
1093
|
+
unless params['Restrictions'].nil?
|
1094
|
+
@Restrictions = []
|
1095
|
+
params['Restrictions'].each do |i|
|
1096
|
+
approverrestriction_tmp = ApproverRestriction.new
|
1097
|
+
approverrestriction_tmp.deserialize(i)
|
1098
|
+
@Restrictions << approverrestriction_tmp
|
1099
|
+
end
|
1100
|
+
end
|
1101
|
+
@CallbackUrl = params['CallbackUrl']
|
1086
1102
|
unless params['Agent'].nil?
|
1087
1103
|
@Agent = Agent.new
|
1088
1104
|
@Agent.deserialize(params['Agent'])
|
1089
1105
|
end
|
1090
|
-
@CallbackUrl = params['CallbackUrl']
|
1091
|
-
@MaxFlowNum = params['MaxFlowNum']
|
1092
|
-
@FlowEffectiveDay = params['FlowEffectiveDay']
|
1093
|
-
@QrEffectiveDay = params['QrEffectiveDay']
|
1094
1106
|
unless params['ApproverRestrictions'].nil?
|
1095
1107
|
@ApproverRestrictions = ApproverRestriction.new
|
1096
1108
|
@ApproverRestrictions.deserialize(params['ApproverRestrictions'])
|
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.432
|
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-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|