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 @@ -467,6 +467,12 @@ public class ProcessParams {
@javax.annotation.Nullable
private Boolean checkVDS;

public static final String SERIALIZED_NAME_STRICT_AGE_CHECK = "strictAgeCheck";

@SerializedName(SERIALIZED_NAME_STRICT_AGE_CHECK)
@javax.annotation.Nullable
private Boolean strictAgeCheck;

public ProcessParams() {}

public ProcessParams generateDTCVC(@javax.annotation.Nullable Boolean generateDTCVC) {
Expand Down Expand Up @@ -1995,6 +2001,25 @@ public void setCheckVDS(@javax.annotation.Nullable Boolean checkVDS) {
this.checkVDS = checkVDS;
}

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

/**
* When enabled, the age check status affects the overall status.
*
* @return strictAgeCheck
*/
@javax.annotation.Nullable
public Boolean getStrictAgeCheck() {
return strictAgeCheck;
}

public void setStrictAgeCheck(@javax.annotation.Nullable Boolean strictAgeCheck) {
this.strictAgeCheck = strictAgeCheck;
}

@Override
public boolean equals(Object o) {
if (this == o) {
Expand Down Expand Up @@ -2077,7 +2102,8 @@ public boolean equals(Object o) {
&& Objects.equals(this.returnTransliteratedFields, processParams.returnTransliteratedFields)
&& Objects.equals(this.bsiTr03135, processParams.bsiTr03135)
&& Objects.equals(this.strictExpiryDate, processParams.strictExpiryDate)
&& Objects.equals(this.checkVDS, processParams.checkVDS);
&& Objects.equals(this.checkVDS, processParams.checkVDS)
&& Objects.equals(this.strictAgeCheck, processParams.strictAgeCheck);
}

@Override
Expand Down Expand Up @@ -2152,7 +2178,8 @@ public int hashCode() {
returnTransliteratedFields,
bsiTr03135,
strictExpiryDate,
checkVDS);
checkVDS,
strictAgeCheck);
}

@Override
Expand Down Expand Up @@ -2271,6 +2298,7 @@ public String toString() {
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(" strictAgeCheck: ").append(toIndentedString(strictAgeCheck)).append("\n");
sb.append("}");
return sb.toString();
}
Expand Down Expand Up @@ -2362,7 +2390,8 @@ private String toIndentedString(Object o) {
"returnTransliteratedFields",
"bsiTr03135",
"strictExpiryDate",
"checkVDS"));
"checkVDS",
"strictAgeCheck"));

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