Skip to content

Commit 7644c0d

Browse files
committed
Commit: e483e0d1
1 parent 97461e7 commit 7644c0d

File tree

3 files changed

+8
-14
lines changed

3 files changed

+8
-14
lines changed

client/.openapi-generator/FILES

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ src/main/generated/com/regula/documentreader/webclient/model/RfidAccessControlIn
179179
src/main/generated/com/regula/documentreader/webclient/model/RfidAccessControlProcedureType.java
180180
src/main/generated/com/regula/documentreader/webclient/model/RfidAccessKey.java
181181
src/main/generated/com/regula/documentreader/webclient/model/RfidApplication.java
182-
src/main/generated/com/regula/documentreader/webclient/model/RfidApplicationType.java
183182
src/main/generated/com/regula/documentreader/webclient/model/RfidAttributeData.java
184183
src/main/generated/com/regula/documentreader/webclient/model/RfidAttributeName.java
185184
src/main/generated/com/regula/documentreader/webclient/model/RfidAuthenticationProcedureType.java
@@ -191,7 +190,6 @@ src/main/generated/com/regula/documentreader/webclient/model/RfidCertificateType
191190
src/main/generated/com/regula/documentreader/webclient/model/RfidDG1.java
192191
src/main/generated/com/regula/documentreader/webclient/model/RfidDataFile.java
193192
src/main/generated/com/regula/documentreader/webclient/model/RfidDataFileType.java
194-
src/main/generated/com/regula/documentreader/webclient/model/RfidDataGroupTypeTag.java
195193
src/main/generated/com/regula/documentreader/webclient/model/RfidDistinguishedName.java
196194
src/main/generated/com/regula/documentreader/webclient/model/RfidLocation.java
197195
src/main/generated/com/regula/documentreader/webclient/model/RfidOrigin.java

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

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class RfidApplication {
4141

4242
@SerializedName(SERIALIZED_NAME_TYPE)
4343
@javax.annotation.Nonnull
44-
private RfidApplicationType type;
44+
private Integer type;
4545

4646
public static final String SERIALIZED_NAME_STATUS = "Status";
4747

@@ -81,7 +81,7 @@ public class RfidApplication {
8181

8282
public RfidApplication() {}
8383

84-
public RfidApplication type(@javax.annotation.Nonnull RfidApplicationType type) {
84+
public RfidApplication type(@javax.annotation.Nonnull Integer type) {
8585
this.type = type;
8686
return this;
8787
}
@@ -92,11 +92,11 @@ public RfidApplication type(@javax.annotation.Nonnull RfidApplicationType type)
9292
* @return type
9393
*/
9494
@javax.annotation.Nonnull
95-
public RfidApplicationType getType() {
95+
public Integer getType() {
9696
return type;
9797
}
9898

99-
public void setType(@javax.annotation.Nonnull RfidApplicationType type) {
99+
public void setType(@javax.annotation.Nonnull Integer type) {
100100
this.type = type;
101101
}
102102

@@ -323,8 +323,6 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti
323323
}
324324
}
325325
JsonObject jsonObj = jsonElement.getAsJsonObject();
326-
// validate the required field `Type`
327-
RfidApplicationType.validateJsonElement(jsonObj.get("Type"));
328326
// validate the required field `Status`
329327
RFIDErrorCodes.validateJsonElement(jsonObj.get("Status"));
330328
if (!jsonObj.get("ApplicationID").isJsonPrimitive()) {

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)