Skip to content

Commit d4cfd52

Browse files
committed
Generated 2025-02-28 for AIPodcast.
1 parent b789cf4 commit d4cfd52

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-05-30 Version: 1.0.2
2+
- Generated 2025-02-28 for `AIPodcast`.
3+
14
2025-05-30 Version: 1.0.1
25
- Generated 2025-02-28 for `AIPodcast`.
36

aliyun-net-sdk-aipodcast/AIPodcast/Model/V20250228/PodcastTaskSubmitRequest.cs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ public PodcastTaskSubmitRequest()
3939
Method = MethodType.POST;
4040
}
4141

42+
private string sourceLang;
43+
4244
private int? counts;
4345

4446
private List<string> fileUrls = new List<string>(){ };
@@ -51,6 +53,20 @@ public PodcastTaskSubmitRequest()
5153

5254
private string workspaceId;
5355

56+
[JsonProperty(PropertyName = "sourceLang")]
57+
public string SourceLang
58+
{
59+
get
60+
{
61+
return sourceLang;
62+
}
63+
set
64+
{
65+
sourceLang = value;
66+
DictionaryUtil.Add(BodyParameters, "sourceLang", value);
67+
}
68+
}
69+
5470
[JsonProperty(PropertyName = "counts")]
5571
public int? Counts
5672
{

aliyun-net-sdk-aipodcast/aliyun-net-sdk-aipodcast.vs2017.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
55
<RootNamespace>Aliyun.Acs.AIPodcast</RootNamespace>
6-
<Version>1.0.1</Version>
6+
<Version>1.0.2</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)