File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
src/main/java/video/api/client/api/models Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -15962,6 +15962,7 @@ components:
15962
15962
- vi
15963
15963
- zh
15964
15964
example: fr
15965
+ nullable: true
15965
15966
type: string
15966
15967
transcript:
15967
15968
description: "Use this parameter to enable transcription. \n\n- When `true`,\
@@ -16117,6 +16118,7 @@ components:
16117
16118
- vi
16118
16119
- zh
16119
16120
example: fr
16121
+ nullable: true
16120
16122
type: string
16121
16123
transcript:
16122
16124
description: "Use this parameter to enable transcription. \n\n- When `true`,\
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ public static LanguageEnum fromValue(String value) {
176
176
return b ;
177
177
}
178
178
}
179
- throw new IllegalArgumentException ( "Unexpected value '" + value + "'" ) ;
179
+ return null ;
180
180
}
181
181
182
182
public static class Adapter extends TypeAdapter <LanguageEnum > {
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ public static LanguageEnum fromValue(String value) {
162
162
return b ;
163
163
}
164
164
}
165
- throw new IllegalArgumentException ( "Unexpected value '" + value + "'" ) ;
165
+ return null ;
166
166
}
167
167
168
168
public static class Adapter extends TypeAdapter <LanguageEnum > {
You can’t perform that action at this time.
0 commit comments