8000 chore(language-translator-v3): manual changes · devrohitraj/java-sdk@64a977d · GitHub
[go: up one dir, main page]

Skip to content

Commit 64a977d

Browse files
committed
chore(language-translator-v3): manual changes
1 parent ba2ca91 commit 64a977d

File tree

2 files changed

+76
-2
lines changed

2 files changed

+76
-2
lines changed

language-translator/src/main/java/com/ibm/watson/language_translator/v3/model/ListDocumentsOptions.java

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,41 @@
1515
import com.ibm.cloud.sdk.core.service.model.GenericModel;
1616

1717
/** The listDocuments options. */
18-
public class ListDocumentsOptions extends GenericModel {}
18+
public class ListDocumentsOptions extends GenericModel {
19+
20+
/**
21+
* Builder.
22+
*/
23+
public static class Builder {
24+
25+
private Builder(ListDocumentsOptions listDocumentsOptions) {
26+
}
27+
28+
/**
29+
* Instantiates a new builder.
30+
*/
31+
public Builder() {
32+
}
33+
34+
/**
35+
* Builds a ListDocumentsOptions.
36+
*
37+
* @return the listDocumentsOptions
38+
*/
39+
public ListDocumentsOptions build() {
40+
return new ListDocumentsOptions(this);
41+
}
42+
}
43+
44+
private ListDocumentsOptions(Builder builder) {
45+
}
46+
47+
/**
48+
* New builder.
49+
*
50+
* @return a ListDocumentsOptions builder
51+
*/
52+
public Builder newBuilder() {
53+
return new Builder(this);
54+
}
55+
}

language-translator/src/main/java/com/ibm/watson/language_translator/v3/model/ListIdentifiableLanguagesOptions.java

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,41 @@
1515
import com.ibm.cloud.sdk.core.service.model.GenericModel;
1616

1717
/** The listIdentifiableLanguages options. */
18-
public class ListIdentifiableLanguagesOptions extends GenericModel {}
18+
public class ListIdentifiableLanguagesOptions extends GenericModel {
19+
20+
/**
21+
* Builder.
22+
*/
23+
public static class Builder {
24+
25+
private Builder(ListIdentifiableLanguagesOptions listIdentifiableLanguagesOptions) {
26+
}
27+
28+
/**
29+
* Instantiates a new builder.
30+
*/
31+
public Builder() {
32+
}
33+
34+
/**
35+
* Builds a ListIdentifiableLanguagesOptions.
36+
*
37+
* @return the listIdentifiableLanguagesOptions
38+
*/
39+
public ListIdentifiableLanguagesOptions build() {
40+
return new ListIdentifiableLanguagesOptions(this);
41+
}
42+
}
43+
44+
private ListIdentifiableLanguagesOptions(Builder builder) {
45+
}
46+
47+
/**
48+
* New builder.
49+
*
50+
* @return a ListIdentifiableLanguagesOptions builder
51+
*/
52+
public Builder newBuilder() {
53+
return new Builder(this);
54+
}
55+
}

0 commit comments

Comments
 (0)
0