Skip to content

Commit dcfc883

Browse files
Update models
1 parent 5610793 commit dcfc883

File tree

3 files changed

+39
-4
lines changed

3 files changed

+39
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ public FaceApi childAgeThreshold(@javax.annotation.Nullable Integer childAgeThre
260260
}
261261

262262
/**
263-
* Minimum age of a child, at which portrait comparison result will be effective. Default: 13.
263+
* The age threshold for the portrait comparison. Default: 13.
264264
*
265265
* @return childAgeThreshold
266266
*/

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

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ public class LivenessParams {
6363
@javax.annotation.Nullable
6464
private Boolean checkBlackAndWhiteCopy;
6565

66+
public static final String SERIALIZED_NAME_CHECK_DYNAPRINT = "checkDynaprint";
67+
68+
@SerializedName(SERIALIZED_NAME_CHECK_DYNAPRINT)
69+
@javax.annotation.Nullable
70+
private Boolean checkDynaprint;
71+
6672
public LivenessParams() {}
6773

6874
public LivenessParams checkOVI(@javax.annotation.Nullable Boolean checkOVI) {
@@ -161,6 +167,25 @@ public void setCheckBlackAndWhiteCopy(@javax.annotation.Nullable Boolean checkBl
161167
this.checkBlackAndWhiteCopy = checkBlackAndWhiteCopy;
162168
}
163169

170+
public LivenessParams checkDynaprint(@javax.annotation.Nullable Boolean checkDynaprint) {
171+
this.checkDynaprint = checkDynaprint;
172+
return this;
173+
}
174+
175+
/**
176+
* This parameter is used to enable Dynaprint check
177+
*
178+
* @return checkDynaprint
179+
*/
180+
@javax.annotation.Nullable
181+
public Boolean getCheckDynaprint() {
182+
return checkDynaprint;
183+
}
184+
185+
public void setCheckDynaprint(@javax.annotation.Nullable Boolean checkDynaprint) {
186+
this.checkDynaprint = checkDynaprint;
187+
}
188+
164189
@Override
165190
public boolean equals(Object o) {
166191
if (this == o) {
@@ -174,12 +199,14 @@ public boolean equals(Object o) {
174199
&& Objects.equals(this.checkMLI, livenessParams.checkMLI)
175200
&& Objects.equals(this.checkHolo, livenessParams.checkHolo)
176201
&& Objects.equals(this.checkED, livenessParams.checkED)
177-
&& Objects.equals(this.checkBlackAndWhiteCopy, livenessParams.checkBlackAndWhiteCopy);
202+
&& Objects.equals(this.checkBlackAndWhiteCopy, livenessParams.checkBlackAndWhiteCopy)
203+
&& Objects.equals(this.checkDynaprint, livenessParams.checkDynaprint);
178204
}
179205

180206
@Override
181207
public int hashCode() {
182-
return Objects.hash(checkOVI, checkMLI, checkHolo, checkED, checkBlackAndWhiteCopy);
208+
return Objects.hash(
209+
checkOVI, checkMLI, checkHolo, checkED, checkBlackAndWhiteCopy, checkDynaprint);
183210
}
184211

185212
@Override
@@ -193,6 +220,7 @@ public String toString() {
193220
sb.append(" checkBlackAndWhiteCopy: ")
194221
.append(toIndentedString(checkBlackAndWhiteCopy))
195222
.append("\n");
223+
sb.append(" checkDynaprint: ").append(toIndentedString(checkDynaprint)).append("\n");
196224
sb.append("}");
197225
return sb.toString();
198226
}
@@ -218,6 +246,7 @@ private String toIndentedString(Object o) {
218246
openapiFields.add("checkHolo");
219247
openapiFields.add("checkED");
220248
openapiFields.add("checkBlackAndWhiteCopy");
249+
openapiFields.add("checkDynaprint");
221250

222251
// a set of required properties/fields (JSON key names)
223252
openapiRequiredFields = new HashSet<String>();

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1947,7 +1947,13 @@ public enum TextFieldType {
19471947
FT_DATE_OF_FIRST_POSITIVE_TEST_RESULT(691),
19481948

19491949
/** EF.CardAccess */
1950-
EF_CARD_ACCESS(692);
1950+
EF_CARD_ACCESS(692),
1951+
1952+
/** Short flight number */
1953+
SHORT_FLIGHT_NUMBER(693),
1954+
1955+
/** Airline code */
1956+
AIRLINE_CODE(694);
19511957

19521958
private Integer value;
19531959

0 commit comments

Comments
 (0)