File tree Expand file tree Collapse file tree 3 files changed +7
-13
lines changed
src/main/generated/com/regula/documentreader/webclient/model Expand file tree Collapse file tree 3 files changed +7
-13
lines changed Original file line number Diff line number Diff line change @@ -191,7 +191,6 @@ src/main/generated/com/regula/documentreader/webclient/model/RfidCertificateType
191191src/main/generated/com/regula/documentreader/webclient/model/RfidDG1.java
192192src/main/generated/com/regula/documentreader/webclient/model/RfidDataFile.java
193193src/main/generated/com/regula/documentreader/webclient/model/RfidDataFileType.java
194- src/main/generated/com/regula/documentreader/webclient/model/RfidDataGroupTypeTag.java
195194src/main/generated/com/regula/documentreader/webclient/model/RfidDistinguishedName.java
196195src/main/generated/com/regula/documentreader/webclient/model/RfidLocation.java
197196src/main/generated/com/regula/documentreader/webclient/model/RfidOrigin.java
Original file line number Diff line number Diff line change 2626@ JsonAdapter (RfidApplicationType .Adapter .class )
2727public enum RfidApplicationType {
2828
29- /** Not defined */
30- UNSPECIFIED (0 ),
29+ /** Root files */
30+ ROOT_FILES (0 ),
3131
3232 /** ePassport application */
3333 E_PASSPORT (1 ),
@@ -51,10 +51,7 @@ public enum RfidApplicationType {
5151 LDS2_AddBiometrics (7 ),
5252
5353 /** Digital Travel Credentials */
54- eDTC_PC (8 ),
55-
56- /** Master File */
57- ROOT_FILES (0 );
54+ eDTC_PC (8 );
5855
5956 private Integer value ;
6057
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public class RfidDG1 {
3939
4040 @ SerializedName (SERIALIZED_NAME_TYPE )
4141 @ javax .annotation .Nonnull
42- private RfidDataGroupTypeTag type ;
42+ private Integer type ;
4343
4444 public static final String SERIALIZED_NAME_DOCUMENT_I_D = "DocumentID" ;
4545
@@ -134,7 +134,7 @@ public class RfidDG1 {
134134
135135 public RfidDG1 () {}
136136
137- public RfidDG1 type (@ javax .annotation .Nonnull RfidDataGroupTypeTag type ) {
137+ public RfidDG1 type (@ javax .annotation .Nonnull Integer type ) {
138138 this .type = type ;
139139 return this ;
140140 }
@@ -145,11 +145,11 @@ public RfidDG1 type(@javax.annotation.Nonnull RfidDataGroupTypeTag type) {
145145 * @return type
146146 */
147147 @ javax .annotation .Nonnull
148- public RfidDataGroupTypeTag getType () {
148+ public Integer getType () {
149149 return type ;
150150 }
151151
152- public void setType (@ javax .annotation .Nonnull RfidDataGroupTypeTag type ) {
152+ public void setType (@ javax .annotation .Nonnull Integer type ) {
153153 this .type = type ;
154154 }
155155
@@ -602,8 +602,6 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti
602602 }
603603 }
604604 JsonObject jsonObj = jsonElement .getAsJsonObject ();
605- // validate the required field `Type`
606- RfidDataGroupTypeTag .validateJsonElement (jsonObj .get ("Type" ));
607605 // validate the required field `DocumentID`
608606 DocumentFormat .validateJsonElement (jsonObj .get ("DocumentID" ));
609607 if (!jsonObj .get ("DocumentType" ).isJsonPrimitive ()) {
You can’t perform that action at this time.
0 commit comments