tencentcloud-sdk-trp 1.0.362 → 3.0.371
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210515/models.rb +21 -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: 2c8c3dde2500f09961378ed15394fbfdcd0029a2
|
4
|
+
data.tar.gz: 4e426f1e56a2f337c1b0619f100ced1f90b4b6c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d1b76092df0a747fbe2f73d08d48e872e5d81ec0918b5f1832be4f90b9a92924bee47c703232b439e6dd1e503fd609bef5eda88cd7c8d013d0b76b94fc42c1f
|
7
|
+
data.tar.gz: 560ba5d276161cf40d01ffd83a715fe36b83065cab0ee4be7716868bff244b4d3b4b56d154e487a1d6c768f1b67908b51397e09178095ed575d60ab3ffc5c483
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.0.371
|
data/lib/v20210515/models.rb
CHANGED
@@ -88,7 +88,7 @@ module TencentCloud
|
|
88
88
|
# @param ProductName: 产品名称
|
89
89
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
90
90
|
# @type ProductName: String
|
91
|
-
# @param Ext:
|
91
|
+
# @param Ext: 未使用
|
92
92
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
93
93
|
# @type Ext: :class:`Tencentcloud::Trp.v20210515.models.Ext`
|
94
94
|
# @param TplName: 模板名称
|
@@ -169,16 +169,19 @@ module TencentCloud
|
|
169
169
|
# @type BatchId: String
|
170
170
|
# @param Remark: 备注
|
171
171
|
# @type Remark: String
|
172
|
+
# @param MpTpl: 活动ID
|
173
|
+
# @type MpTpl: String
|
172
174
|
|
173
|
-
attr_accessor :CorpId, :MerchantId, :ProductId, :BatchType, :BatchId, :Remark
|
175
|
+
attr_accessor :CorpId, :MerchantId, :ProductId, :BatchType, :BatchId, :Remark, :MpTpl
|
174
176
|
|
175
|
-
def initialize(corpid=nil, merchantid=nil, productid=nil, batchtype=nil, batchid=nil, remark=nil)
|
177
|
+
def initialize(corpid=nil, merchantid=nil, productid=nil, batchtype=nil, batchid=nil, remark=nil, mptpl=nil)
|
176
178
|
@CorpId = corpid
|
177
179
|
@MerchantId = merchantid
|
178
180
|
@ProductId = productid
|
179
181
|
@BatchType = batchtype
|
180
182
|
@BatchId = batchid
|
181
183
|
@Remark = remark
|
184
|
+
@MpTpl = mptpl
|
182
185
|
end
|
183
186
|
|
184
187
|
def deserialize(params)
|
@@ -188,6 +191,7 @@ module TencentCloud
|
|
188
191
|
@BatchType = params['BatchType']
|
189
192
|
@BatchId = params['BatchId']
|
190
193
|
@Remark = params['Remark']
|
194
|
+
@MpTpl = params['MpTpl']
|
191
195
|
end
|
192
196
|
end
|
193
197
|
|
@@ -1395,14 +1399,23 @@ module TencentCloud
|
|
1395
1399
|
# @type Status: Integer
|
1396
1400
|
# @param MpTpl: 模板ID
|
1397
1401
|
# @type MpTpl: String
|
1402
|
+
# @param MerchantId: 商户ID
|
1403
|
+
# @type MerchantId: String
|
1404
|
+
# @param ProductId: 商品ID
|
1405
|
+
# @type ProductId: String
|
1406
|
+
# @param Remark: 备注
|
1407
|
+
# @type Remark: String
|
1398
1408
|
|
1399
|
-
attr_accessor :BatchId, :CorpId, :Status, :MpTpl
|
1409
|
+
attr_accessor :BatchId, :CorpId, :Status, :MpTpl, :MerchantId, :ProductId, :Remark
|
1400
1410
|
|
1401
|
-
def initialize(batchid=nil, corpid=nil, status=nil, mptpl=nil)
|
1411
|
+
def initialize(batchid=nil, corpid=nil, status=nil, mptpl=nil, merchantid=nil, productid=nil, remark=nil)
|
1402
1412
|
@BatchId = batchid
|
1403
1413
|
@CorpId = corpid
|
1404
1414
|
@Status = status
|
1405
1415
|
@MpTpl = mptpl
|
1416
|
+
@MerchantId = merchantid
|
1417
|
+
@ProductId = productid
|
1418
|
+
@Remark = remark
|
1406
1419
|
end
|
1407
1420
|
|
1408
1421
|
def deserialize(params)
|
@@ -1410,6 +1423,9 @@ module TencentCloud
|
|
1410
1423
|
@CorpId = params['CorpId']
|
1411
1424
|
@Status = params['Status']
|
1412
1425
|
@MpTpl = params['MpTpl']
|
1426
|
+
@MerchantId = params['MerchantId']
|
1427
|
+
@ProductId = params['ProductId']
|
1428
|
+
@Remark = params['Remark']
|
1413
1429
|
end
|
1414
1430
|
end
|
1415
1431
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-trp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.371
|
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-
|
11
|
+
date: 2022-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|