Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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
*/
Expand All @@ -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) {
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -2125,7 +2151,8 @@ public int hashCode() {
strictSecurityChecks,
returnTransliteratedFields,
bsiTr03135,
strictExpiryDate);
strictExpiryDate,
checkVDS);
}

@Override
Expand Down Expand Up @@ -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();
}
Expand Down Expand Up @@ -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<String>(Arrays.asList("scenario"));
Expand Down