Skip to content

Commit 64010bc

Browse files
committed
Commit: 4d4f0b78
1 parent e4ad82c commit 64010bc

File tree

1 file changed

+33
-4
lines changed

1 file changed

+33
-4
lines changed

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

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,12 @@ public class ProcessParams {
461461
@javax.annotation.Nullable
462462
private Boolean strictExpiryDate;
463463

464+
public static final String SERIALIZED_NAME_CHECK_V_D_S = "checkVDS";
465+
466+
@SerializedName(SERIALIZED_NAME_CHECK_V_D_S)
467+
@javax.annotation.Nullable
468+
private Boolean checkVDS;
469+
464470
public ProcessParams() {}
465471

466472
public ProcessParams generateDTCVC(@javax.annotation.Nullable Boolean generateDTCVC) {
@@ -1957,7 +1963,7 @@ public ProcessParams strictExpiryDate(@javax.annotation.Nullable Boolean strictE
19571963
}
19581964

19591965
/**
1960-
* When disabled, date of expiry doesn't affect the mrz and text statuses.
1966+
* When disabled, date of expiry doesn't affect the MRZ and text statuses.
19611967
*
19621968
* @return strictExpiryDate
19631969
*/
@@ -1970,6 +1976,25 @@ public void setStrictExpiryDate(@javax.annotation.Nullable Boolean strictExpiryD
19701976
this.strictExpiryDate = strictExpiryDate;
19711977
}
19721978

1979+
public ProcessParams checkVDS(@javax.annotation.Nullable Boolean checkVDS) {
1980+
this.checkVDS = checkVDS;
1981+
return this;
1982+
}
1983+
1984+
/**
1985+
* This parameter is used to enable Visible Digital Seal check. Disabled by default.
1986+
*
1987+
* @return checkVDS
1988+
*/
1989+
@javax.annotation.Nullable
1990+
public Boolean getCheckVDS() {
1991+
return checkVDS;
1992+
}
1993+
1994+
public void setCheckVDS(@javax.annotation.Nullable Boolean checkVDS) {
1995+
this.checkVDS = checkVDS;
1996+
}
1997+
19731998
@Override
19741999
public boolean equals(Object o) {
19752000
if (this == o) {
@@ -2051,7 +2076,8 @@ public boolean equals(Object o) {
20512076
&& Objects.equals(this.strictSecurityChecks, processParams.strictSecurityChecks)
20522077
&& Objects.equals(this.returnTransliteratedFields, processParams.returnTransliteratedFields)
20532078
&& Objects.equals(this.bsiTr03135, processParams.bsiTr03135)
2054-
&& Objects.equals(this.strictExpiryDate, processParams.strictExpiryDate);
2079+
&& Objects.equals(this.strictExpiryDate, processParams.strictExpiryDate)
2080+
&& Objects.equals(this.checkVDS, processParams.checkVDS);
20552081
}
20562082

20572083
@Override
@@ -2125,7 +2151,8 @@ public int hashCode() {
21252151
strictSecurityChecks,
21262152
returnTransliteratedFields,
21272153
bsiTr03135,
2128-
strictExpiryDate);
2154+
strictExpiryDate,
2155+
checkVDS);
21292156
}
21302157

21312158
@Override
@@ -2243,6 +2270,7 @@ public String toString() {
22432270
.append("\n");
22442271
sb.append(" bsiTr03135: ").append(toIndentedString(bsiTr03135)).append("\n");
22452272
sb.append(" strictExpiryDate: ").append(toIndentedString(strictExpiryDate)).append("\n");
2273+
sb.append(" checkVDS: ").append(toIndentedString(checkVDS)).append("\n");
22462274
sb.append("}");
22472275
return sb.toString();
22482276
}
@@ -2333,7 +2361,8 @@ private String toIndentedString(Object o) {
23332361
"strictSecurityChecks",
23342362
"returnTransliteratedFields",
23352363
"bsiTr03135",
2336-
"strictExpiryDate"));
2364+
"strictExpiryDate",
2365+
"checkVDS"));
23372366

23382367
// a set of required properties/fields (JSON key names)
23392368
openapiRequiredFields = new HashSet<String>(Arrays.asList("scenario"));

0 commit comments

Comments
 (0)