Skip to content

Commit 29f598f

Browse files
committed
chore(language-translator-v3): post-gen manual change
1 parent 9b4fa35 commit 29f598f

File tree

1 file changed

+38
-1
lines changed

1 file changed

+38
-1
lines changed

language-translator/src/main/java/com/ibm/watson/language_translator/v3/model/ListLanguagesOptions.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 listLanguages options. */
18-
public class ListLanguagesOptions extends GenericModel {}
18+
public class ListLanguagesOptions extends GenericModel {
19+
20+
/**
21+
* Builder.
22+
*/
23+
public static class Builder {
24+
25+
private Builder(ListLanguagesOptions 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 ListLanguagesOptions build() {
40+
return new ListLanguagesOptions(this);
41+
}
42+
}
43+
44+
private ListLanguagesOptions(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+
}

0 commit comments

Comments
 (0)