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 @@ -422,6 +422,13 @@ public class ProcessParams {
@javax.annotation.Nullable
private Integer pdfPagesLimit;

public static final String SERIALIZED_NAME_DISABLE_AUTH_RESOLUTION_FILTER =
"disableAuthResolutionFilter";

@SerializedName(SERIALIZED_NAME_DISABLE_AUTH_RESOLUTION_FILTER)
@javax.annotation.Nullable
private Boolean disableAuthResolutionFilter;

public ProcessParams() {}

public ProcessParams generateDTCVC(@javax.annotation.Nullable Boolean generateDTCVC) {
Expand Down Expand Up @@ -1791,6 +1798,28 @@ public void setPdfPagesLimit(@javax.annotation.Nullable Integer pdfPagesLimit) {
this.pdfPagesLimit = pdfPagesLimit;
}

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

/**
* This parameter if enabled will ignore the minimum barcode resolution needed to start
* processing.
*
* @return disableAuthResolutionFilter
*/
@javax.annotation.Nullable
public Boolean getDisableAuthResolutionFilter() {
return disableAuthResolutionFilter;
}

public void setDisableAuthResolutionFilter(
@javax.annotation.Nullable Boolean disableAuthResolutionFilter) {
this.disableAuthResolutionFilter = disableAuthResolutionFilter;
}

@Override
public boolean equals(Object o) {
if (this == o) {
Expand Down Expand Up @@ -1865,7 +1894,9 @@ public boolean equals(Object o) {
&& Objects.equals(this.doBarcodes, processParams.doBarcodes)
&& Objects.equals(this.strictDLCategoryExpiry, processParams.strictDLCategoryExpiry)
&& Objects.equals(this.generateAlpha2Codes, processParams.generateAlpha2Codes)
&& Objects.equals(this.pdfPagesLimit, processParams.pdfPagesLimit);
&& Objects.equals(this.pdfPagesLimit, processParams.pdfPagesLimit)
&& Objects.equals(
this.disableAuthResolutionFilter, processParams.disableAuthResolutionFilter);
}

@Override
Expand Down Expand Up @@ -1933,7 +1964,8 @@ public int hashCode() {
doBarcodes,
strictDLCategoryExpiry,
generateAlpha2Codes,
pdfPagesLimit);
pdfPagesLimit,
disableAuthResolutionFilter);
}

@Override
Expand Down Expand Up @@ -2037,6 +2069,9 @@ public String toString() {
.append(toIndentedString(generateAlpha2Codes))
.append("\n");
sb.append(" pdfPagesLimit: ").append(toIndentedString(pdfPagesLimit)).append("\n");
sb.append(" disableAuthResolutionFilter: ")
.append(toIndentedString(disableAuthResolutionFilter))
.append("\n");
sb.append("}");
return sb.toString();
}
Expand Down Expand Up @@ -2120,6 +2155,7 @@ private String toIndentedString(Object o) {
openapiFields.add("strictDLCategoryExpiry");
openapiFields.add("generateAlpha2Codes");
openapiFields.add("pdfPagesLimit");
openapiFields.add("disableAuthResolutionFilter");

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