Skip to content

Commit 9cd07f6

Browse files
author
BitsAdmin
committed
Merge 'i18n_openapi-Java-2021-05-21-online-2458-2026_04_01_20_46_51' into 'integration_2026-04-02_1133415429890'
feat: [development task] i18n_openapi-2458-Java (2246441) See merge request: !947
2 parents 16f4d0f + d8a2816 commit 9cd07f6

50 files changed

Lines changed: 6613 additions & 82 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

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

Lines changed: 882 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
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+
* BaseRespForVideoEditorAsyncGenDubbingOutput
28+
*/
29+
30+
31+
32+
public class BaseRespForVideoEditorAsyncGenDubbingOutput {
33+
@SerializedName("statusCode")
34+
private Integer statusCode = null;
35+
36+
@SerializedName("statusMessage")
37+
private String statusMessage = null;
38+
39+
public BaseRespForVideoEditorAsyncGenDubbingOutput statusCode(Integer statusCode) {
40+
this.statusCode = statusCode;
41+
return this;
42+
}
43+
44+
/**
45+
* Get statusCode
46+
* @return statusCode
47+
**/
48+
@Schema(description = "")
49+
public Integer getStatusCode() {
50+
return statusCode;
51+
}
52+
53+
public void setStatusCode(Integer statusCode) {
54+
this.statusCode = statusCode;
55+
}
56+
57+
public BaseRespForVideoEditorAsyncGenDubbingOutput statusMessage(String statusMessage) {
58+
this.statusMessage = statusMessage;
59+
return this;
60+
}
61+
62+
/**
63+
* Get statusMessage
64+
* @return statusMessage
65+
**/
66+
@Schema(description = "")
67+
public String getStatusMessage() {
68+
return statusMessage;
69+
}
70+
71+
public void setStatusMessage(String statusMessage) {
72+
this.statusMessage = statusMessage;
73+
}
74+
75+
76+
@Override
77+
public boolean equals(java.lang.Object o) {
78+
if (this == o) {
79+
return true;
80+
}
81+
if (o == null || getClass() != o.getClass()) {
82+
return false;
83+
}
84+
BaseRespForVideoEditorAsyncGenDubbingOutput baseRespForVideoEditorAsyncGenDubbingOutput = (BaseRespForVideoEditorAsyncGenDubbingOutput) o;
85+
return Objects.equals(this.statusCode, baseRespForVideoEditorAsyncGenDubbingOutput.statusCode) &&
86+
Objects.equals(this.statusMessage, baseRespForVideoEditorAsyncGenDubbingOutput.statusMessage);
87+
}
88+
89+
@Override
90+
public int hashCode() {
91+
return Objects.hash(statusCode, statusMessage);
92+
}
93+
94+
95+
@Override
96+
public String toString() {
97+
StringBuilder sb = new StringBuilder();
98+
sb.append("class BaseRespForVideoEditorAsyncGenDubbingOutput {\n");
99+
100+
sb.append(" statusCode: ").append(toIndentedString(statusCode)).append("\n");
101+
sb.append(" statusMessage: ").append(toIndentedString(statusMessage)).append("\n");
102+
sb.append("}");
103+
return sb.toString();
104+
}
105+
106+
/**
107+
* Convert the given object to string with each line indented by 4 spaces
108+
* (except the first line).
109+
*/
110+
private String toIndentedString(java.lang.Object o) {
111+
if (o == null) {
112+
return "null";
113+
}
114+
return o.toString().replace("\n", "\n ");
115+
}
116+
117+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
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+
* BaseRespForVideoEditorSaveSubtitleOutput
28+
*/
29+
30+
31+
32+
public class BaseRespForVideoEditorSaveSubtitleOutput {
33+
@SerializedName("statusCode")
34+
private Integer statusCode = null;
35+
36+
@SerializedName("statusMessage")
37+
private String statusMessage = null;
38+
39+
public BaseRespForVideoEditorSaveSubtitleOutput statusCode(Integer statusCode) {
40+
this.statusCode = statusCode;
41+
return this;
42+
}
43+
44+
/**
45+
* Get statusCode
46+
* @return statusCode
47+
**/
48+
@Schema(description = "")
49+
public Integer getStatusCode() {
50+
return statusCode;
51+
}
52+
53+
public void setStatusCode(Integer statusCode) {
54+
this.statusCode = statusCode;
55+
}
56+
57+
public BaseRespForVideoEditorSaveSubtitleOutput statusMessage(String statusMessage) {
58+
this.statusMessage = statusMessage;
59+
return this;
60+
}
61+
62+
/**
63+
* Get statusMessage
64+
* @return statusMessage
65+
**/
66+
@Schema(description = "")
67+
public String getStatusMessage() {
68+
return statusMessage;
69+
}
70+
71+
public void setStatusMessage(String statusMessage) {
72+
this.statusMessage = statusMessage;
73+
}
74+
75+
76+
@Override
77+
public boolean equals(java.lang.Object o) {
78+
if (this == o) {
79+
return true;
80+
}
81+
if (o == null || getClass() != o.getClass()) {
82+
return false;
83+
}
84+
BaseRespForVideoEditorSaveSubtitleOutput baseRespForVideoEditorSaveSubtitleOutput = (BaseRespForVideoEditorSaveSubtitleOutput) o;
85+
return Objects.equals(this.statusCode, baseRespForVideoEditorSaveSubtitleOutput.statusCode) &&
86+
Objects.equals(this.statusMessage, baseRespForVideoEditorSaveSubtitleOutput.statusMessage);
87+
}
88+
89+
@Override
90+
public int hashCode() {
91+
return Objects.hash(statusCode, statusMessage);
92+
}
93+
94+
95+
@Override
96+
public String toString() {
97+
StringBuilder sb = new StringBuilder();
98+
sb.append("class BaseRespForVideoEditorSaveSubtitleOutput {\n");
99+
100+
sb.append(" statusCode: ").append(toIndentedString(statusCode)).append("\n");
101+
sb.append(" statusMessage: ").append(toIndentedString(statusMessage)).append("\n");
102+
sb.append("}");
103+
return sb.toString();
104+
}
105+
106+
/**
107+
* Convert the given object to string with each line indented by 4 spaces
108+
* (except the first line).
109+
*/
110+
private String toIndentedString(java.lang.Object o) {
111+
if (o == null) {
112+
return "null";
113+
}
114+
return o.toString().replace("\n", "\n ");
115+
}
116+
117+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
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+
* BaseRespForVideoEditorSubmitSubtaskOutput
28+
*/
29+
30+
31+
32+
public class BaseRespForVideoEditorSubmitSubtaskOutput {
33+
@SerializedName("statusCode")
34+
private Integer statusCode = null;
35+
36+
@SerializedName("statusMessage")
37+
private String statusMessage = null;
38+
39+
public BaseRespForVideoEditorSubmitSubtaskOutput statusCode(Integer statusCode) {
40+
this.statusCode = statusCode;
41+
return this;
42+
}
43+
44+
/**
45+
* Get statusCode
46+
* @return statusCode
47+
**/
48+
@Schema(description = "")
49+
public Integer getStatusCode() {
50+
return statusCode;
51+
}
52+
53+
public void setStatusCode(Integer statusCode) {
54+
this.statusCode = statusCode;
55+
}
56+
57+
public BaseRespForVideoEditorSubmitSubtaskOutput statusMessage(String statusMessage) {
58+
this.statusMessage = statusMessage;
59+
return this;
60+
}
61+
62+
/**
63+
* Get statusMessage
64+
* @return statusMessage
65+
**/
66+
@Schema(description = "")
67+
public String getStatusMessage() {
68+
return statusMessage;
69+
}
70+
71+
public void setStatusMessage(String statusMessage) {
72+
this.statusMessage = statusMessage;
73+
}
74+
75+
76+
@Override
77+
public boolean equals(java.lang.Object o) {
78+
if (this == o) {
79+
return true;
80+
}
81+
if (o == null || getClass() != o.getClass()) {
82+
return false;
83+
}
84+
BaseRespForVideoEditorSubmitSubtaskOutput baseRespForVideoEditorSubmitSubtaskOutput = (BaseRespForVideoEditorSubmitSubtaskOutput) o;
85+
return Objects.equals(this.statusCode, baseRespForVideoEditorSubmitSubtaskOutput.statusCode) &&
86+
Objects.equals(this.statusMessage, baseRespForVideoEditorSubmitSubtaskOutput.statusMessage);
87+
}
88+
89+
@Override
90+
public int hashCode() {
91+
return Objects.hash(statusCode, statusMessage);
92+
}
93+
94+
95+
@Override
96+
public String toString() {
97+
StringBuilder sb = new StringBuilder();
98+
sb.append("class BaseRespForVideoEditorSubmitSubtaskOutput {\n");
99+
100+
sb.append(" statusCode: ").append(toIndentedString(statusCode)).append("\n");
101+
sb.append(" statusMessage: ").append(toIndentedString(statusMessage)).append("\n");
102+
sb.append("}");
103+
return sb.toString();
104+
}
105+
106+
/**
107+
* Convert the given object to string with each line indented by 4 spaces
108+
* (except the first line).
109+
*/
110+
private String toIndentedString(java.lang.Object o) {
111+
if (o == null) {
112+
return "null";
113+
}
114+
return o.toString().replace("\n", "\n ");
115+
}
116+
117+
}

0 commit comments

Comments
 (0)