Skip to content

Commit e663356

Browse files
committed
update based on spec
1 parent e3fcd28 commit e663356

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

api/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13791,7 +13791,7 @@ components:
1379113791
- DEU
1379213792
- ESP
1379313793
- CHE
13794-
nullable: true
13794+
nullable: false
1379513795
type: string
1379613796
businessEntityTypeEnum:
1379713797
description: "The type of registered business. If no option is applicable, please\

bandwidth.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5915,7 +5915,7 @@ components:
59155915
- DEU
59165916
- ESP
59175917
- CHE
5918-
nullable: true
5918+
nullable: false
59195919
businessEntityTypeEnum:
59205920
type: string
59215921
description: >-

src/main/java/com/bandwidth/sdk/model/BusinessRegistrationIssuingCountryEnum.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static BusinessRegistrationIssuingCountryEnum fromValue(String value) {
7878
return b;
7979
}
8080
}
81-
return null;
81+
throw new IllegalArgumentException("Unexpected value '" + value + "'");
8282
}
8383

8484
public static class Adapter extends TypeAdapter<BusinessRegistrationIssuingCountryEnum> {

0 commit comments

Comments
 (0)