We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1eaa079 + 29d1cd5 commit 2a25b36Copy full SHA for 2a25b36
src/main/java/com/amadeus/resources/FlightOrder.java
@@ -53,6 +53,13 @@ public static class Name {
53
54
private @Getter @Setter String firstName;
55
private @Getter @Setter String lastName;
56
+ private @Getter @Setter String middleName;
57
+
58
+ // Constructor with firstName and lastName only
59
+ public Name(String firstName, String lastName) {
60
+ this.firstName = firstName;
61
+ this.lastName = lastName;
62
+ }
63
}
64
65
@AllArgsConstructor
0 commit comments