Skip to content

Commit 76fc3f4

Browse files
release 3.0.14
1 parent e1d0acb commit 76fc3f4

File tree

5 files changed

+312
-110
lines changed

5 files changed

+312
-110
lines changed

tencentcloud/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# limitations under the License.
1515

1616

17-
__version__ = '3.0.13'
17+
__version__ = '3.0.14'

tencentcloud/aai/v20180522/models.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,14 @@ def __init__(self):
9797
:type Text: str
9898
:param SessionId: 一次请求对应一个SessionId,会原样返回
9999
:type SessionId: str
100-
:param ProjectId: 项目id
101-
:type ProjectId: int
102100
:param ModelType: 模型类型,1-默认模型
103101
:type ModelType: int
104-
:param Volume: 音量大小,暂仅支持默认值1.0
102+
:param Volume: 音量大小,暂仅支持默认值1
105103
:type Volume: float
106-
:param Speed: 语速,暂仅支持默认值1.0
104+
:param Speed: 语速,暂仅支持默认值1
107105
:type Speed: float
106+
:param ProjectId: 用户自定义项目id,默认为0
107+
:type ProjectId: int
108108
:param VoiceType: 音色,1-默认音色
109109
:type VoiceType: int
110110
:param PrimaryLanguage: 主语言类型<li>1-中文(包括粤语),最大300字符</li><li>2-英文,最大支持600字符</li>
@@ -114,10 +114,10 @@ def __init__(self):
114114
"""
115115
self.Text = None
116116
self.SessionId = None
117-
self.ProjectId = None
118117
self.ModelType = None
119118
self.Volume = None
120119
self.Speed = None
120+
self.ProjectId = None
121121
self.VoiceType = None
122122
self.PrimaryLanguage = None
123123
self.SampleRate = None
@@ -126,10 +126,10 @@ def __init__(self):
126126
def _deserialize(self, params):
127127
self.Text = params.get("Text")
128128
self.SessionId = params.get("SessionId")
129-
self.ProjectId = params.get("ProjectId")
130129
self.ModelType = params.get("ModelType")
131130
self.Volume = params.get("Volume")
132131
self.Speed = params.get("Speed")
132+
self.ProjectId = params.get("ProjectId")
133133
self.VoiceType = params.get("VoiceType")
134134
self.PrimaryLanguage = params.get("PrimaryLanguage")
135135
self.SampleRate = params.get("SampleRate")

0 commit comments

Comments
 (0)