Skip to content

Commit 73a6ae4

Browse files
author
BitsAdmin
committed
Merge 'i18n_openapi-Java-2021-05-21-online-1960-2025_12_19_15_24_30' into 'integration_2025-12-22_1095874065666'
feat: [development task] i18n_openapi-1960-Java (1958914) See merge request: !806
2 parents 50bdd35 + 3433087 commit 73a6ae4

File tree

1 file changed

+28
-5
lines changed

1 file changed

+28
-5
lines changed

volcengine-java-sdk-i18nopenapi/src/main/java/com/volcengine/i18nopenapi/model/TaskInfoForVideoProjectSerialTaskCreateInput.java

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ public class TaskInfoForVideoProjectSerialTaskCreateInput {
3939
@SerializedName("asrModel")
4040
private Integer asrModel = null;
4141

42+
@SerializedName("bgmPolicy")
43+
private Integer bgmPolicy = null;
44+
4245
@SerializedName("comment")
4346
private String comment = null;
4447

@@ -55,7 +58,7 @@ public class TaskInfoForVideoProjectSerialTaskCreateInput {
5558
private String dramaTitle = null;
5659

5760
@SerializedName("isDub")
58-
private Integer isDub = null;
61+
private Boolean isDub = null;
5962

6063
@SerializedName("needTranslateCover")
6164
private Boolean needTranslateCover = null;
@@ -123,6 +126,24 @@ public void setAsrModel(Integer asrModel) {
123126
this.asrModel = asrModel;
124127
}
125128

129+
public TaskInfoForVideoProjectSerialTaskCreateInput bgmPolicy(Integer bgmPolicy) {
130+
this.bgmPolicy = bgmPolicy;
131+
return this;
132+
}
133+
134+
/**
135+
* Get bgmPolicy
136+
* @return bgmPolicy
137+
**/
138+
@Schema(description = "")
139+
public Integer getBgmPolicy() {
140+
return bgmPolicy;
141+
}
142+
143+
public void setBgmPolicy(Integer bgmPolicy) {
144+
this.bgmPolicy = bgmPolicy;
145+
}
146+
126147
public TaskInfoForVideoProjectSerialTaskCreateInput comment(String comment) {
127148
this.comment = comment;
128149
return this;
@@ -213,7 +234,7 @@ public void setDramaTitle(String dramaTitle) {
213234
this.dramaTitle = dramaTitle;
214235
}
215236

216-
public TaskInfoForVideoProjectSerialTaskCreateInput isDub(Integer isDub) {
237+
public TaskInfoForVideoProjectSerialTaskCreateInput isDub(Boolean isDub) {
217238
this.isDub = isDub;
218239
return this;
219240
}
@@ -223,11 +244,11 @@ public TaskInfoForVideoProjectSerialTaskCreateInput isDub(Integer isDub) {
223244
* @return isDub
224245
**/
225246
@Schema(description = "")
226-
public Integer getIsDub() {
247+
public Boolean isIsDub() {
227248
return isDub;
228249
}
229250

230-
public void setIsDub(Integer isDub) {
251+
public void setIsDub(Boolean isDub) {
231252
this.isDub = isDub;
232253
}
233254

@@ -432,6 +453,7 @@ public boolean equals(java.lang.Object o) {
432453
TaskInfoForVideoProjectSerialTaskCreateInput taskInfoForVideoProjectSerialTaskCreateInput = (TaskInfoForVideoProjectSerialTaskCreateInput) o;
433454
return Objects.equals(this.aiRemoveType, taskInfoForVideoProjectSerialTaskCreateInput.aiRemoveType) &&
434455
Objects.equals(this.asrModel, taskInfoForVideoProjectSerialTaskCreateInput.asrModel) &&
456+
Objects.equals(this.bgmPolicy, taskInfoForVideoProjectSerialTaskCreateInput.bgmPolicy) &&
435457
Objects.equals(this.comment, taskInfoForVideoProjectSerialTaskCreateInput.comment) &&
436458
Objects.equals(this.deadline, taskInfoForVideoProjectSerialTaskCreateInput.deadline) &&
437459
Objects.equals(this.dramaCoverUrl, taskInfoForVideoProjectSerialTaskCreateInput.dramaCoverUrl) &&
@@ -452,7 +474,7 @@ public boolean equals(java.lang.Object o) {
452474

453475
@Override
454476
public int hashCode() {
455-
return Objects.hash(aiRemoveType, asrModel, comment, deadline, dramaCoverUrl, dramaDescription, dramaTitle, isDub, needTranslateCover, needTranslateDesc, needTranslateTitle, needTranslateTitleAndDesc, serialNumber, sourceLang, targetLangs, targetStyleMap, taskName, useMT);
477+
return Objects.hash(aiRemoveType, asrModel, bgmPolicy, comment, deadline, dramaCoverUrl, dramaDescription, dramaTitle, isDub, needTranslateCover, needTranslateDesc, needTranslateTitle, needTranslateTitleAndDesc, serialNumber, sourceLang, targetLangs, targetStyleMap, taskName, useMT);
456478
}
457479

458480

@@ -463,6 +485,7 @@ public String toString() {
463485

464486
sb.append(" aiRemoveType: ").append(toIndentedString(aiRemoveType)).append("\n");
465487
sb.append(" asrModel: ").append(toIndentedString(asrModel)).append("\n");
488+
sb.append(" bgmPolicy: ").append(toIndentedString(bgmPolicy)).append("\n");
466489
sb.append(" comment: ").append(toIndentedString(comment)).append("\n");
467490
sb.append(" deadline: ").append(toIndentedString(deadline)).append("\n");
468491
sb.append(" dramaCoverUrl: ").append(toIndentedString(dramaCoverUrl)).append("\n");

0 commit comments

Comments
 (0)