diff --git a/client/src/main/generated/com/regula/documentreader/webclient/model/ProcessParams.java b/client/src/main/generated/com/regula/documentreader/webclient/model/ProcessParams.java index 593435b..d13ceef 100644 --- a/client/src/main/generated/com/regula/documentreader/webclient/model/ProcessParams.java +++ b/client/src/main/generated/com/regula/documentreader/webclient/model/ProcessParams.java @@ -461,6 +461,12 @@ public class ProcessParams { @javax.annotation.Nullable private Boolean strictExpiryDate; + public static final String SERIALIZED_NAME_CHECK_V_D_S = "checkVDS"; + + @SerializedName(SERIALIZED_NAME_CHECK_V_D_S) + @javax.annotation.Nullable + private Boolean checkVDS; + public ProcessParams() {} public ProcessParams generateDTCVC(@javax.annotation.Nullable Boolean generateDTCVC) { @@ -1957,7 +1963,7 @@ public ProcessParams strictExpiryDate(@javax.annotation.Nullable Boolean strictE } /** - * When disabled, date of expiry doesn't affect the mrz and text statuses. + * When disabled, date of expiry doesn't affect the MRZ and text statuses. * * @return strictExpiryDate */ @@ -1970,6 +1976,25 @@ public void setStrictExpiryDate(@javax.annotation.Nullable Boolean strictExpiryD this.strictExpiryDate = strictExpiryDate; } + public ProcessParams checkVDS(@javax.annotation.Nullable Boolean checkVDS) { + this.checkVDS = checkVDS; + return this; + } + + /** + * This parameter is used to enable Visible Digital Seal check. Disabled by default. + * + * @return checkVDS + */ + @javax.annotation.Nullable + public Boolean getCheckVDS() { + return checkVDS; + } + + public void setCheckVDS(@javax.annotation.Nullable Boolean checkVDS) { + this.checkVDS = checkVDS; + } + @Override public boolean equals(Object o) { if (this == o) { @@ -2051,7 +2076,8 @@ public boolean equals(Object o) { && Objects.equals(this.strictSecurityChecks, processParams.strictSecurityChecks) && Objects.equals(this.returnTransliteratedFields, processParams.returnTransliteratedFields) && Objects.equals(this.bsiTr03135, processParams.bsiTr03135) - && Objects.equals(this.strictExpiryDate, processParams.strictExpiryDate); + && Objects.equals(this.strictExpiryDate, processParams.strictExpiryDate) + && Objects.equals(this.checkVDS, processParams.checkVDS); } @Override @@ -2125,7 +2151,8 @@ public int hashCode() { strictSecurityChecks, returnTransliteratedFields, bsiTr03135, - strictExpiryDate); + strictExpiryDate, + checkVDS); } @Override @@ -2243,6 +2270,7 @@ public String toString() { .append("\n"); sb.append(" bsiTr03135: ").append(toIndentedString(bsiTr03135)).append("\n"); sb.append(" strictExpiryDate: ").append(toIndentedString(strictExpiryDate)).append("\n"); + sb.append(" checkVDS: ").append(toIndentedString(checkVDS)).append("\n"); sb.append("}"); return sb.toString(); } @@ -2333,7 +2361,8 @@ private String toIndentedString(Object o) { "strictSecurityChecks", "returnTransliteratedFields", "bsiTr03135", - "strictExpiryDate")); + "strictExpiryDate", + "checkVDS")); // a set of required properties/fields (JSON key names) openapiRequiredFields = new HashSet(Arrays.asList("scenario"));