Skip to content

Commit 944c85f

Browse files
author
BitsAdmin
committed
Merge 'i18n_openapi-Java-2021-05-21-online-2483-2026_04_08_20_39_01' into 'integration_2026-04-09_1135713353474'
feat: [development task] i18n_openapi-2483-Java (2265213) See merge request: !954
2 parents 65c60da + 2847389 commit 944c85f

34 files changed

Lines changed: 3134 additions & 971 deletions

volcengine-java-sdk-i18nopenapi/src/main/java/com/volcengine/i18nopenapi/I18NOpenapiApi.java

Lines changed: 912 additions & 30 deletions
Large diffs are not rendered by default.

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

Lines changed: 0 additions & 117 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,255 @@
1+
/*
2+
* i18n_openapi
3+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4+
*
5+
* OpenAPI spec version: common-version
6+
*
7+
*
8+
* NOTE: This class is auto generated by the swagger code generator program.
9+
* https://github.com/swagger-api/swagger-codegen.git
10+
* Do not edit the class manually.
11+
*/
12+
13+
package com.volcengine.i18nopenapi.model;
14+
15+
import java.util.Objects;
16+
import java.util.Arrays;
17+
import com.google.gson.TypeAdapter;
18+
import com.google.gson.annotations.JsonAdapter;
19+
import com.google.gson.annotations.SerializedName;
20+
import com.google.gson.stream.JsonReader;
21+
import com.google.gson.stream.JsonWriter;
22+
import io.swagger.v3.oas.annotations.media.Schema;
23+
import java.io.IOException;
24+
import javax.validation.constraints.*;
25+
import javax.validation.Valid;
26+
/**
27+
* BuiltInEmotionTagForVideoEditorGetEmotionTagsOutput
28+
*/
29+
30+
31+
32+
public class BuiltInEmotionTagForVideoEditorGetEmotionTagsOutput {
33+
@SerializedName("createTime")
34+
private Integer createTime = null;
35+
36+
@SerializedName("emotionTag")
37+
private String emotionTag = null;
38+
39+
@SerializedName("id")
40+
private Integer id = null;
41+
42+
@SerializedName("name")
43+
private String name = null;
44+
45+
@SerializedName("operator")
46+
private String operator = null;
47+
48+
@SerializedName("taskId")
49+
private Integer taskId = null;
50+
51+
@SerializedName("type")
52+
private Integer type = null;
53+
54+
@SerializedName("voiceId")
55+
private String voiceId = null;
56+
57+
public BuiltInEmotionTagForVideoEditorGetEmotionTagsOutput createTime(Integer createTime) {
58+
this.createTime = createTime;
59+
return this;
60+
}
61+
62+
/**
63+
* Get createTime
64+
* @return createTime
65+
**/
66+
@Schema(description = "")
67+
public Integer getCreateTime() {
68+
return createTime;
69+
}
70+
71+
public void setCreateTime(Integer createTime) {
72+
this.createTime = createTime;
73+
}
74+
75+
public BuiltInEmotionTagForVideoEditorGetEmotionTagsOutput emotionTag(String emotionTag) {
76+
this.emotionTag = emotionTag;
77+
return this;
78+
}
79+
80+
/**
81+
* Get emotionTag
82+
* @return emotionTag
83+
**/
84+
@Schema(description = "")
85+
public String getEmotionTag() {
86+
return emotionTag;
87+
}
88+
89+
public void setEmotionTag(String emotionTag) {
90+
this.emotionTag = emotionTag;
91+
}
92+
93+
public BuiltInEmotionTagForVideoEditorGetEmotionTagsOutput id(Integer id) {
94+
this.id = id;
95+
return this;
96+
}
97+
98+
/**
99+
* Get id
100+
* @return id
101+
**/
102+
@Schema(description = "")
103+
public Integer getId() {
104+
return id;
105+
}
106+
107+
public void setId(Integer id) {
108+
this.id = id;
109+
}
110+
111+
public BuiltInEmotionTagForVideoEditorGetEmotionTagsOutput name(String name) {
112+
this.name = name;
113+
return this;
114+
}
115+
116+
/**
117+
* Get name
118+
* @return name
119+
**/
120+
@Schema(description = "")
121+
public String getName() {
122+
return name;
123+
}
124+
125+
public void setName(String name) {
126+
this.name = name;
127+
}
128+
129+
public BuiltInEmotionTagForVideoEditorGetEmotionTagsOutput operator(String operator) {
130+
this.operator = operator;
131+
return this;
132+
}
133+
134+
/**
135+
* Get operator
136+
* @return operator
137+
**/
138+
@Schema(description = "")
139+
public String getOperator() {
140+
return operator;
141+
}
142+
143+
public void setOperator(String operator) {
144+
this.operator = operator;
145+
}
146+
147+
public BuiltInEmotionTagForVideoEditorGetEmotionTagsOutput taskId(Integer taskId) {
148+
this.taskId = taskId;
149+
return this;
150+
}
151+
152+
/**
153+
* Get taskId
154+
* @return taskId
155+
**/
156+
@Schema(description = "")
157+
public Integer getTaskId() {
158+
return taskId;
159+
}
160+
161+
public void setTaskId(Integer taskId) {
162+
this.taskId = taskId;
163+
}
164+
165+
public BuiltInEmotionTagForVideoEditorGetEmotionTagsOutput type(Integer type) {
166+
this.type = type;
167+
return this;
168+
}
169+
170+
/**
171+
* Get type
172+
* @return type
173+
**/
174+
@Schema(description = "")
175+
public Integer getType() {
176+
return type;
177+
}
178+
179+
public void setType(Integer type) {
180+
this.type = type;
181+
}
182+
183+
public BuiltInEmotionTagForVideoEditorGetEmotionTagsOutput voiceId(String voiceId) {
184+
this.voiceId = voiceId;
185+
return this;
186+
}
187+
188+
/**
189+
* Get voiceId
190+
* @return voiceId
191+
**/
192+
@Schema(description = "")
193+
public String getVoiceId() {
194+
return voiceId;
195+
}
196+
197+
public void setVoiceId(String voiceId) {
198+
this.voiceId = voiceId;
199+
}
200+
201+
202+
@Override
203+
public boolean equals(java.lang.Object o) {
204+
if (this == o) {
205+
return true;
206+
}
207+
if (o == null || getClass() != o.getClass()) {
208+
return false;
209+
}
210+
BuiltInEmotionTagForVideoEditorGetEmotionTagsOutput builtInEmotionTagForVideoEditorGetEmotionTagsOutput = (BuiltInEmotionTagForVideoEditorGetEmotionTagsOutput) o;
211+
return Objects.equals(this.createTime, builtInEmotionTagForVideoEditorGetEmotionTagsOutput.createTime) &&
212+
Objects.equals(this.emotionTag, builtInEmotionTagForVideoEditorGetEmotionTagsOutput.emotionTag) &&
213+
Objects.equals(this.id, builtInEmotionTagForVideoEditorGetEmotionTagsOutput.id) &&
214+
Objects.equals(this.name, builtInEmotionTagForVideoEditorGetEmotionTagsOutput.name) &&
215+
Objects.equals(this.operator, builtInEmotionTagForVideoEditorGetEmotionTagsOutput.operator) &&
216+
Objects.equals(this.taskId, builtInEmotionTagForVideoEditorGetEmotionTagsOutput.taskId) &&
217+
Objects.equals(this.type, builtInEmotionTagForVideoEditorGetEmotionTagsOutput.type) &&
218+
Objects.equals(this.voiceId, builtInEmotionTagForVideoEditorGetEmotionTagsOutput.voiceId);
219+
}
220+
221+
@Override
222+
public int hashCode() {
223+
return Objects.hash(createTime, emotionTag, id, name, operator, taskId, type, voiceId);
224+
}
225+
226+
227+
@Override
228+
public String toString() {
229+
StringBuilder sb = new StringBuilder();
230+
sb.append("class BuiltInEmotionTagForVideoEditorGetEmotionTagsOutput {\n");
231+
232+
sb.append(" createTime: ").append(toIndentedString(createTime)).append("\n");
233+
sb.append(" emotionTag: ").append(toIndentedString(emotionTag)).append("\n");
234+
sb.append(" id: ").append(toIndentedString(id)).append("\n");
235+
sb.append(" name: ").append(toIndentedString(name)).append("\n");
236+
sb.append(" operator: ").append(toIndentedString(operator)).append("\n");
237+
sb.append(" taskId: ").append(toIndentedString(taskId)).append("\n");
238+
sb.append(" type: ").append(toIndentedString(type)).append("\n");
239+
sb.append(" voiceId: ").append(toIndentedString(voiceId)).append("\n");
240+
sb.append("}");
241+
return sb.toString();
242+
}
243+
244+
/**
245+
* Convert the given object to string with each line indented by 4 spaces
246+
* (except the first line).
247+
*/
248+
private String toIndentedString(java.lang.Object o) {
249+
if (o == null) {
250+
return "null";
251+
}
252+
return o.toString().replace("\n", "\n ");
253+
}
254+
255+
}

0 commit comments

Comments
 (0)