Skip to content

Commit 7a48c27

Browse files
committed
Commit: 87e31c72
1 parent 97461e7 commit 7a48c27

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

client/.openapi-generator/FILES

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ src/main/generated/com/regula/documentreader/webclient/model/RfidCertificateType
191191
src/main/generated/com/regula/documentreader/webclient/model/RfidDG1.java
192192
src/main/generated/com/regula/documentreader/webclient/model/RfidDataFile.java
193193
src/main/generated/com/regula/documentreader/webclient/model/RfidDataFileType.java
194-
src/main/generated/com/regula/documentreader/webclient/model/RfidDataGroupTypeTag.java
195194
src/main/generated/com/regula/documentreader/webclient/model/RfidDistinguishedName.java
196195
src/main/generated/com/regula/documentreader/webclient/model/RfidLocation.java
197196
src/main/generated/com/regula/documentreader/webclient/model/RfidOrigin.java

client/src/main/generated/com/regula/documentreader/webclient/model/RfidApplicationType.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
@JsonAdapter(RfidApplicationType.Adapter.class)
2727
public 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

client/src/main/generated/com/regula/documentreader/webclient/model/RfidDG1.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff 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()) {

0 commit comments

Comments
 (0)