18
18
import java .util .Objects ;
19
19
20
20
/** Extended document type info and Regula's 'Information Reference Systems' links */
21
- public class TFDSIDList {
21
+ public class FDSIDList {
22
22
public static final String SERIALIZED_NAME_I_C_A_O = "ICAO" ;
23
23
24
24
@ SerializedName (SERIALIZED_NAME_I_C_A_O )
@@ -32,7 +32,7 @@ public class TFDSIDList {
32
32
public static final String SERIALIZED_NAME_D_TYPE = "dType" ;
33
33
34
34
@ SerializedName (SERIALIZED_NAME_D_TYPE )
35
- private DocumentType dType ;
35
+ private int dType ;
36
36
37
37
public static final String SERIALIZED_NAME_D_FORMAT = "dFormat" ;
38
38
@@ -69,7 +69,7 @@ public class TFDSIDList {
69
69
@ SerializedName (SERIALIZED_NAME_D_STATE_NAME )
70
70
private String dStateName ;
71
71
72
- public TFDSIDList withICAO (String ICAO ) {
72
+ public FDSIDList withICAO (String ICAO ) {
73
73
this .ICAO = ICAO ;
74
74
return this ;
75
75
}
@@ -88,12 +88,12 @@ public void setICAO(String ICAO) {
88
88
this .ICAO = ICAO ;
89
89
}
90
90
91
- public TFDSIDList withList (List <Integer > list ) {
91
+ public FDSIDList withList (List <Integer > list ) {
92
92
this .list = list ;
93
93
return this ;
94
94
}
95
95
96
- public TFDSIDList addListItem (int listItem ) {
96
+ public FDSIDList addListItem (int listItem ) {
97
97
if (this .list == null ) {
98
98
this .list = new ArrayList <Integer >();
99
99
}
@@ -115,7 +115,7 @@ public void setList(List<Integer> list) {
115
115
this .list = list ;
116
116
}
117
117
118
- public TFDSIDList withDType (DocumentType dType ) {
118
+ public FDSIDList withDType (int dType ) {
119
119
this .dType = dType ;
120
120
return this ;
121
121
}
@@ -126,15 +126,15 @@ public TFDSIDList withDType(DocumentType dType) {
126
126
* @return dType
127
127
*/
128
128
@ javax .annotation .Nullable
129
- public DocumentType getdType () {
129
+ public int getdType () {
130
130
return dType ;
131
131
}
132
132
133
- public void setdType (DocumentType dType ) {
133
+ public void setdType (int dType ) {
134
134
this .dType = dType ;
135
135
}
136
136
137
- public TFDSIDList withDFormat (int dFormat ) {
137
+ public FDSIDList withDFormat (int dFormat ) {
138
138
this .dFormat = dFormat ;
139
139
return this ;
140
140
}
@@ -153,7 +153,7 @@ public void setdFormat(int dFormat) {
153
153
this .dFormat = dFormat ;
154
154
}
155
155
156
- public TFDSIDList withDMRZ (Boolean dMRZ ) {
156
+ public FDSIDList withDMRZ (Boolean dMRZ ) {
157
157
this .dMRZ = dMRZ ;
158
158
return this ;
159
159
}
@@ -172,7 +172,7 @@ public void setdMRZ(Boolean dMRZ) {
172
172
this .dMRZ = dMRZ ;
173
173
}
174
174
175
- public TFDSIDList withDDescription (String dDescription ) {
175
+ public FDSIDList withDDescription (String dDescription ) {
176
176
this .dDescription = dDescription ;
177
177
return this ;
178
178
}
@@ -191,7 +191,7 @@ public void setdDescription(String dDescription) {
191
191
this .dDescription = dDescription ;
192
192
}
193
193
194
- public TFDSIDList withDYear (String dYear ) {
194
+ public FDSIDList withDYear (String dYear ) {
195
195
this .dYear = dYear ;
196
196
return this ;
197
197
}
@@ -210,7 +210,7 @@ public void setdYear(String dYear) {
210
210
this .dYear = dYear ;
211
211
}
212
212
213
- public TFDSIDList withDCountryName (String dCountryName ) {
213
+ public FDSIDList withDCountryName (String dCountryName ) {
214
214
this .dCountryName = dCountryName ;
215
215
return this ;
216
216
}
@@ -229,7 +229,7 @@ public void setdCountryName(String dCountryName) {
229
229
this .dCountryName = dCountryName ;
230
230
}
231
231
232
- public TFDSIDList withDStateCode (String dStateCode ) {
232
+ public FDSIDList withDStateCode (String dStateCode ) {
233
233
this .dStateCode = dStateCode ;
234
234
return this ;
235
235
}
@@ -248,7 +248,7 @@ public void setdStateCode(String dStateCode) {
248
248
this .dStateCode = dStateCode ;
249
249
}
250
250
251
- public TFDSIDList withDStateName (String dStateName ) {
251
+ public FDSIDList withDStateName (String dStateName ) {
252
252
this .dStateName = dStateName ;
253
253
return this ;
254
254
}
@@ -275,17 +275,17 @@ public boolean equals(java.lang.Object o) {
275
275
if (o == null || getClass () != o .getClass ()) {
276
276
return false ;
277
277
}
278
- TFDSIDList tfDSIDList = (TFDSIDList ) o ;
279
- return Objects .equals (this .ICAO , tfDSIDList .ICAO )
280
- && Objects .equals (this .list , tfDSIDList .list )
281
- && Objects .equals (this .dType , tfDSIDList .dType )
282
- && Objects .equals (this .dFormat , tfDSIDList .dFormat )
283
- && Objects .equals (this .dMRZ , tfDSIDList .dMRZ )
284
- && Objects .equals (this .dDescription , tfDSIDList .dDescription )
285
- && Objects .equals (this .dYear , tfDSIDList .dYear )
286
- && Objects .equals (this .dCountryName , tfDSIDList .dCountryName )
287
- && Objects .equals (this .dStateCode , tfDSIDList .dStateCode )
288
- && Objects .equals (this .dStateName , tfDSIDList .dStateName );
278
+ FDSIDList fdSIDList = (FDSIDList ) o ;
279
+ return Objects .equals (this .ICAO , fdSIDList .ICAO )
280
+ && Objects .equals (this .list , fdSIDList .list )
281
+ && Objects .equals (this .dType , fdSIDList .dType )
282
+ && Objects .equals (this .dFormat , fdSIDList .dFormat )
283
+ && Objects .equals (this .dMRZ , fdSIDList .dMRZ )
284
+ && Objects .equals (this .dDescription , fdSIDList .dDescription )
285
+ && Objects .equals (this .dYear , fdSIDList .dYear )
286
+ && Objects .equals (this .dCountryName , fdSIDList .dCountryName )
287
+ && Objects .equals (this .dStateCode , fdSIDList .dStateCode )
288
+ && Objects .equals (this .dStateName , fdSIDList .dStateName );
289
289
}
290
290
291
291
@ Override
@@ -306,7 +306,7 @@ public int hashCode() {
306
306
@ Override
307
307
public String toString () {
308
308
StringBuilder sb = new StringBuilder ();
309
- sb .append ("class TFDSIDList {\n " );
309
+ sb .append ("class FDSIDList {\n " );
310
310
sb .append (" ICAO: " ).append (toIndentedString (ICAO )).append ("\n " );
311
311
sb .append (" list: " ).append (toIndentedString (list )).append ("\n " );
312
312
sb .append (" dType: " ).append (toIndentedString (dType )).append ("\n " );
0 commit comments