Skip to content

Commit f497c4d

Browse files
committed
Update SplitVideoParts.
1 parent 53085db commit f497c4d

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2023-03-14 Version: 0.0.9
2+
- Update SplitVideoParts.
3+
14
2023-03-10 Version: 3.0.14
25
- Support create default VPC and create default vSwitch .
36

aliyun-net-sdk-videorecog/Videorecog/Model/V20200320/SplitVideoPartsRequest.cs

+32
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ public SplitVideoPartsRequest()
4343

4444
private string template;
4545

46+
private int? minTime;
47+
48+
private int? maxTime;
49+
4650
private string videoUrl;
4751

4852
[JsonProperty(PropertyName = "Template")]
@@ -59,6 +63,34 @@ public string Template
5963
}
6064
}
6165

66+
[JsonProperty(PropertyName = "MinTime")]
67+
public int? MinTime
68+
{
69+
get
70+
{
71+
return minTime;
72+
}
73+
set
74+
{
75+
minTime = value;
76+
DictionaryUtil.Add(BodyParameters, "MinTime", value.ToString());
77+
}
78+
}
79+
80+
[JsonProperty(PropertyName = "MaxTime")]
81+
public int? MaxTime
82+
{
83+
get
84+
{
85+
return maxTime;
86+
}
87+
set
88+
{
89+
maxTime = value;
90+
DictionaryUtil.Add(BodyParameters, "MaxTime", value.ToString());
91+
}
92+
}
93+
6294
[JsonProperty(PropertyName = "VideoUrl")]
6395
public string VideoUrl
6496
{

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
55
<RootNamespace>Aliyun.Acs.videorecog</RootNamespace>
6-
<Version>0.0.8</Version>
6+
<Version>0.0.9</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)