Skip to content
Merged
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 @@ -455,6 +455,12 @@ public class ProcessParams {
@javax.annotation.Nullable
private BsiTr03135 bsiTr03135;

public static final String SERIALIZED_NAME_STRICT_EXPIRY_DATE = "strictExpiryDate";

@SerializedName(SERIALIZED_NAME_STRICT_EXPIRY_DATE)
@javax.annotation.Nullable
private Boolean strictExpiryDate;

public ProcessParams() {}

public ProcessParams generateDTCVC(@javax.annotation.Nullable Boolean generateDTCVC) {
Expand Down Expand Up @@ -1945,6 +1951,25 @@ public void setBsiTr03135(@javax.annotation.Nullable BsiTr03135 bsiTr03135) {
this.bsiTr03135 = bsiTr03135;
}

public ProcessParams strictExpiryDate(@javax.annotation.Nullable Boolean strictExpiryDate) {
this.strictExpiryDate = strictExpiryDate;
return this;
}

/**
* When disabled, date of expiry doesn't affect the mrz and text statuses.
*
* @return strictExpiryDate
*/
@javax.annotation.Nullable
public Boolean getStrictExpiryDate() {
return strictExpiryDate;
}

public void setStrictExpiryDate(@javax.annotation.Nullable Boolean strictExpiryDate) {
this.strictExpiryDate = strictExpiryDate;
}

@Override
public boolean equals(Object o) {
if (this == o) {
Expand Down Expand Up @@ -2025,7 +2050,8 @@ public boolean equals(Object o) {
this.disableAuthResolutionFilter, processParams.disableAuthResolutionFilter)
&& Objects.equals(this.strictSecurityChecks, processParams.strictSecurityChecks)
&& Objects.equals(this.returnTransliteratedFields, processParams.returnTransliteratedFields)
&& Objects.equals(this.bsiTr03135, processParams.bsiTr03135);
&& Objects.equals(this.bsiTr03135, processParams.bsiTr03135)
&& Objects.equals(this.strictExpiryDate, processParams.strictExpiryDate);
}

@Override
Expand Down Expand Up @@ -2098,7 +2124,8 @@ public int hashCode() {
disableAuthResolutionFilter,
strictSecurityChecks,
returnTransliteratedFields,
bsiTr03135);
bsiTr03135,
strictExpiryDate);
}

@Override
Expand Down Expand Up @@ -2215,6 +2242,7 @@ public String toString() {
.append(toIndentedString(returnTransliteratedFields))
.append("\n");
sb.append(" bsiTr03135: ").append(toIndentedString(bsiTr03135)).append("\n");
sb.append(" strictExpiryDate: ").append(toIndentedString(strictExpiryDate)).append("\n");
sb.append("}");
return sb.toString();
}
Expand Down Expand Up @@ -2304,7 +2332,8 @@ private String toIndentedString(Object o) {
"disableAuthResolutionFilter",
"strictSecurityChecks",
"returnTransliteratedFields",
"bsiTr03135"));
"bsiTr03135",
"strictExpiryDate"));

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