Skip to content

Commit 2a83c77

Browse files
committed
Generated java-async 2023-09-30 for tingwu.
1 parent fe112d4 commit 2a83c77

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

tingwu-20230930/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-03-03 Version: 2.0.20
2+
- Generated java-async 2023-09-30 for tingwu.
3+
14
2025-02-05 Version: 2.0.19
25
- Generated java-async 2023-09-30 for tingwu.
36

tingwu-20230930/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-tingwu20230930</artifactId>
6-
<version>2.0.19</version>
6+
<version>2.0.20</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-tingwu20230930</name>
99
<description>Alibaba Cloud tingwu (20230930) Async SDK for Java

tingwu-20230930/src/main/java/com/aliyun/sdk/service/tingwu20230930/models/CreateTaskRequest.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1308,6 +1308,9 @@ public static class Transcription extends TeaModel {
13081308
@com.aliyun.core.annotation.NameInMap("PhraseId")
13091309
private String phraseId;
13101310

1311+
@com.aliyun.core.annotation.NameInMap("RealtimeDiarizationEnabled")
1312+
private Boolean realtimeDiarizationEnabled;
1313+
13111314
private Transcription(Builder builder) {
13121315
this.additionalStreamOutputLevel = builder.additionalStreamOutputLevel;
13131316
this.audioEventDetectionEnabled = builder.audioEventDetectionEnabled;
@@ -1316,6 +1319,7 @@ private Transcription(Builder builder) {
13161319
this.model = builder.model;
13171320
this.outputLevel = builder.outputLevel;
13181321
this.phraseId = builder.phraseId;
1322+
this.realtimeDiarizationEnabled = builder.realtimeDiarizationEnabled;
13191323
}
13201324

13211325
public static Builder builder() {
@@ -1375,6 +1379,13 @@ public String getPhraseId() {
13751379
return this.phraseId;
13761380
}
13771381

1382+
/**
1383+
* @return realtimeDiarizationEnabled
1384+
*/
1385+
public Boolean getRealtimeDiarizationEnabled() {
1386+
return this.realtimeDiarizationEnabled;
1387+
}
1388+
13781389
public static final class Builder {
13791390
private Integer additionalStreamOutputLevel;
13801391
private Boolean audioEventDetectionEnabled;
@@ -1383,6 +1394,7 @@ public static final class Builder {
13831394
private String model;
13841395
private Integer outputLevel;
13851396
private String phraseId;
1397+
private Boolean realtimeDiarizationEnabled;
13861398

13871399
/**
13881400
* AdditionalStreamOutputLevel.
@@ -1440,6 +1452,14 @@ public Builder phraseId(String phraseId) {
14401452
return this;
14411453
}
14421454

1455+
/**
1456+
* RealtimeDiarizationEnabled.
1457+
*/
1458+
public Builder realtimeDiarizationEnabled(Boolean realtimeDiarizationEnabled) {
1459+
this.realtimeDiarizationEnabled = realtimeDiarizationEnabled;
1460+
return this;
1461+
}
1462+
14431463
public Transcription build() {
14441464
return new Transcription(this);
14451465
}

0 commit comments

Comments
 (0)