@@ -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