tencentcloud-sdk-essbasic 1.0.228 → 1.0.229
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 -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: e6fcddff21db989ec2e98e24c5e65c07236a42d9
|
4
|
+
data.tar.gz: 264acf3091feb13dd667560eabf2a071ed30a318
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4ba485c3df2b49f2a2200b9fda92f525d9e5ff43bcb27a988d54aec348f437f991b135620ae44a4a21869f9c56255fb975fa17743af5a50343fd28d5eccd7a9
|
7
|
+
data.tar.gz: e4f934c24eec240aabe03f81e9d02ed596b2d05958dce0327db4c0efb8483875edd4e3966599b9332d68fa7b94f7acdbc8313f6df1c0383492fad8cc202eb05e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.229
|
data/lib/v20210526/models.rb
CHANGED
@@ -72,6 +72,22 @@ module TencentCloud
|
|
72
72
|
end
|
73
73
|
end
|
74
74
|
|
75
|
+
# 抄送信息
|
76
|
+
class CcInfo < TencentCloud::Common::AbstractModel
|
77
|
+
# @param Mobile: 被抄送人手机号
|
78
|
+
# @type Mobile: String
|
79
|
+
|
80
|
+
attr_accessor :Mobile
|
81
|
+
|
82
|
+
def initialize(mobile=nil)
|
83
|
+
@Mobile = mobile
|
84
|
+
end
|
85
|
+
|
86
|
+
def deserialize(params)
|
87
|
+
@Mobile = params['Mobile']
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
75
91
|
# 此结构体 (Component) 用于描述控件属性。
|
76
92
|
class Component < TencentCloud::Common::AbstractModel
|
77
93
|
# @param ComponentId: 控件编号
|
@@ -676,10 +692,12 @@ module TencentCloud
|
|
676
692
|
# @type FlowDescription: String
|
677
693
|
# @param CustomerData: 渠道的业务信息,限制1024字符
|
678
694
|
# @type CustomerData: String
|
695
|
+
# @param CcInfos: 被抄送人的信息列表
|
696
|
+
# @type CcInfos: Array
|
679
697
|
|
680
|
-
attr_accessor :FlowName, :Deadline, :TemplateId, :FlowType, :CallbackUrl, :FlowApprovers, :FormFields, :FlowDescription, :CustomerData
|
698
|
+
attr_accessor :FlowName, :Deadline, :TemplateId, :FlowType, :CallbackUrl, :FlowApprovers, :FormFields, :FlowDescription, :CustomerData, :CcInfos
|
681
699
|
|
682
|
-
def initialize(flowname=nil, deadline=nil, templateid=nil, flowtype=nil, callbackurl=nil, flowapprovers=nil, formfields=nil, flowdescription=nil, customerdata=nil)
|
700
|
+
def initialize(flowname=nil, deadline=nil, templateid=nil, flowtype=nil, callbackurl=nil, flowapprovers=nil, formfields=nil, flowdescription=nil, customerdata=nil, ccinfos=nil)
|
683
701
|
@FlowName = flowname
|
684
702
|
@Deadline = deadline
|
685
703
|
@TemplateId = templateid
|
@@ -689,6 +707,7 @@ module TencentCloud
|
|
689
707
|
@FormFields = formfields
|
690
708
|
@FlowDescription = flowdescription
|
691
709
|
@CustomerData = customerdata
|
710
|
+
@CcInfos = ccinfos
|
692
711
|
end
|
693
712
|
|
694
713
|
def deserialize(params)
|
@@ -715,6 +734,14 @@ module TencentCloud
|
|
715
734
|
end
|
716
735
|
@FlowDescription = params['FlowDescription']
|
717
736
|
@CustomerData = params['CustomerData']
|
737
|
+
unless params['CcInfos'].nil?
|
738
|
+
@CcInfos = []
|
739
|
+
params['CcInfos'].each do |i|
|
740
|
+
ccinfo_tmp = CcInfo.new
|
741
|
+
ccinfo_tmp.deserialize(i)
|
742
|
+
@CcInfos << ccinfo_tmp
|
743
|
+
end
|
744
|
+
end
|
718
745
|
end
|
719
746
|
end
|
720
747
|
|
@@ -1341,10 +1368,12 @@ module TencentCloud
|
|
1341
1368
|
# @type TemplateType: Integer
|
1342
1369
|
# @param Recipients: 模板中的流程参与人信息
|
1343
1370
|
# @type Recipients: Array
|
1371
|
+
# @param IsPromoter: 是否是发起人
|
1372
|
+
# @type IsPromoter: Boolean
|
1344
1373
|
|
1345
|
-
attr_accessor :TemplateId, :TemplateName, :Description, :Components, :SignComponents, :Creator, :CreatedOn, :TemplateType, :Recipients
|
1374
|
+
attr_accessor :TemplateId, :TemplateName, :Description, :Components, :SignComponents, :Creator, :CreatedOn, :TemplateType, :Recipients, :IsPromoter
|
1346
1375
|
|
1347
|
-
def initialize(templateid=nil, templatename=nil, description=nil, components=nil, signcomponents=nil, creator=nil, createdon=nil, templatetype=nil, recipients=nil)
|
1376
|
+
def initialize(templateid=nil, templatename=nil, description=nil, components=nil, signcomponents=nil, creator=nil, createdon=nil, templatetype=nil, recipients=nil, ispromoter=nil)
|
1348
1377
|
@TemplateId = templateid
|
1349
1378
|
@TemplateName = templatename
|
1350
1379
|
@Description = description
|
@@ -1354,6 +1383,7 @@ module TencentCloud
|
|
1354
1383
|
@CreatedOn = createdon
|
1355
1384
|
@TemplateType = templatetype
|
1356
1385
|
@Recipients = recipients
|
1386
|
+
@IsPromoter = ispromoter
|
1357
1387
|
end
|
1358
1388
|
|
1359
1389
|
def deserialize(params)
|
@@ -1387,6 +1417,7 @@ module TencentCloud
|
|
1387
1417
|
@Recipients << recipient_tmp
|
1388
1418
|
end
|
1389
1419
|
end
|
1420
|
+
@IsPromoter = params['IsPromoter']
|
1390
1421
|
end
|
1391
1422
|
end
|
1392
1423
|
|
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.229
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|