Skip to content

Commit

Permalink
Add nullable property
Browse files Browse the repository at this point in the history
  • Loading branch information
szekelyzol authored Oct 9, 2024
1 parent 8498513 commit b61971f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15962,6 +15962,7 @@ components:
- vi
- zh
example: fr
nullable: true
type: string
transcript:
description: "Use this parameter to enable transcription. \n\n- When `true`,\
Expand Down Expand Up @@ -16117,6 +16118,7 @@ components:
- vi
- zh
example: fr
nullable: true
type: string
transcript:
description: "Use this parameter to enable transcription. \n\n- When `true`,\
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public static LanguageEnum fromValue(String value) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
return null;
}

public static class Adapter extends TypeAdapter<LanguageEnum> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public static LanguageEnum fromValue(String value) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
return null;
}

public static class Adapter extends TypeAdapter<LanguageEnum> {
Expand Down

0 comments on commit b61971f

Please sign in to comment.