tencentcloud-sdk-sms 1.0.202 → 1.0.203
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/v20210111/models.rb +17 -7
- 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: 99a6a3d4932e5169fe8993934cb8461e723d9145
|
4
|
+
data.tar.gz: b3bda0ea5fde87e134d22a9f7999d55f03eca0eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3406aa7fff1c32c3acac199b8c5c8c6810b59a27461472c26bc25feab94c7df6c63a8156484adfb6dc3d56d2de4ece490e377f65ceddd613b1443cb834df79bc
|
7
|
+
data.tar.gz: 184d4485bc3943c961a26543fe476b1955aff9d4e91f37c7f7b342d1dc223276afce0fc5c0a47ae588bc2dc88e8b4212f4d241f37bc44f14bb5443e21139e3b0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.203
|
data/lib/v20210111/models.rb
CHANGED
@@ -554,24 +554,34 @@ module TencentCloud
|
|
554
554
|
|
555
555
|
# DescribeSmsTemplateList请求参数结构体
|
556
556
|
class DescribeSmsTemplateListRequest < TencentCloud::Common::AbstractModel
|
557
|
-
# @param TemplateIdSet: 模板 ID 数组。
|
558
|
-
# <dx-alert infotype="notice" title="注意">默认数组长度最大100</dx-alert>
|
559
|
-
# @type TemplateIdSet: Array
|
560
557
|
# @param International: 是否国际/港澳台短信:
|
561
558
|
# 0:表示国内短信。
|
562
559
|
# 1:表示国际/港澳台短信。
|
563
560
|
# @type International: Integer
|
561
|
+
# @param TemplateIdSet: 模板 ID 数组。数组为空时默认查询模板列表信息(仅允许主账号使用),请使用 Limit 和 Offset 字段设置查询范围。
|
562
|
+
# <dx-alert infotype="notice" title="注意">默认数组长度最大100</dx-alert>
|
563
|
+
# @type TemplateIdSet: Array
|
564
|
+
# @param Limit: 最大上限,最多100。
|
565
|
+
# 注:默认为0,TemplateIdSet 为空时启用。
|
566
|
+
# @type Limit: Integer
|
567
|
+
# @param Offset: 偏移量。
|
568
|
+
# 注:默认为0,TemplateIdSet 为空时启用。
|
569
|
+
# @type Offset: Integer
|
564
570
|
|
565
|
-
attr_accessor :TemplateIdSet, :
|
571
|
+
attr_accessor :International, :TemplateIdSet, :Limit, :Offset
|
566
572
|
|
567
|
-
def initialize(templateidset=nil,
|
568
|
-
@TemplateIdSet = templateidset
|
573
|
+
def initialize(international=nil, templateidset=nil, limit=nil, offset=nil)
|
569
574
|
@International = international
|
575
|
+
@TemplateIdSet = templateidset
|
576
|
+
@Limit = limit
|
577
|
+
@Offset = offset
|
570
578
|
end
|
571
579
|
|
572
580
|
def deserialize(params)
|
573
|
-
@TemplateIdSet = params['TemplateIdSet']
|
574
581
|
@International = params['International']
|
582
|
+
@TemplateIdSet = params['TemplateIdSet']
|
583
|
+
@Limit = params['Limit']
|
584
|
+
@Offset = params['Offset']
|
575
585
|
end
|
576
586
|
end
|
577
587
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-sms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.203
|
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-11-
|
11
|
+
date: 2021-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|