Skip to content

Commit 686d3f0

Browse files
Merge pull request #193 from regulaforensics/6c8981f9
Commit: 6c8981f9
2 parents 0873bf9 + 0ec11aa commit 686d3f0

File tree

2 files changed

+40
-4
lines changed

2 files changed

+40
-4
lines changed

client/src/main/generated/com/regula/documentreader/webclient/model/LCID.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ public enum LCID {
183183
/** Estonian */
184184
ESTONIAN(1061),
185185

186-
/** Faeroese */
187-
FAEROESE(1080),
186+
/** Faroese */
187+
FAROESE(1080),
188188

189189
/** Farsi */
190190
FARSI(1065),

client/src/main/generated/com/regula/documentreader/webclient/model/ProcessParams.java

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,13 @@ public class ProcessParams {
422422
@javax.annotation.Nullable
423423
private Integer pdfPagesLimit;
424424

425+
public static final String SERIALIZED_NAME_DISABLE_AUTH_RESOLUTION_FILTER =
426+
"disableAuthResolutionFilter";
427+
428+
@SerializedName(SERIALIZED_NAME_DISABLE_AUTH_RESOLUTION_FILTER)
429+
@javax.annotation.Nullable
430+
private Boolean disableAuthResolutionFilter;
431+
425432
public ProcessParams() {}
426433

427434
public ProcessParams generateDTCVC(@javax.annotation.Nullable Boolean generateDTCVC) {
@@ -1791,6 +1798,28 @@ public void setPdfPagesLimit(@javax.annotation.Nullable Integer pdfPagesLimit) {
17911798
this.pdfPagesLimit = pdfPagesLimit;
17921799
}
17931800

1801+
public ProcessParams disableAuthResolutionFilter(
1802+
@javax.annotation.Nullable Boolean disableAuthResolutionFilter) {
1803+
this.disableAuthResolutionFilter = disableAuthResolutionFilter;
1804+
return this;
1805+
}
1806+
1807+
/**
1808+
* This parameter if enabled will ignore the minimum barcode resolution needed to start
1809+
* processing.
1810+
*
1811+
* @return disableAuthResolutionFilter
1812+
*/
1813+
@javax.annotation.Nullable
1814+
public Boolean getDisableAuthResolutionFilter() {
1815+
return disableAuthResolutionFilter;
1816+
}
1817+
1818+
public void setDisableAuthResolutionFilter(
1819+
@javax.annotation.Nullable Boolean disableAuthResolutionFilter) {
1820+
this.disableAuthResolutionFilter = disableAuthResolutionFilter;
1821+
}
1822+
17941823
@Override
17951824
public boolean equals(Object o) {
17961825
if (this == o) {
@@ -1865,7 +1894,9 @@ public boolean equals(Object o) {
18651894
&& Objects.equals(this.doBarcodes, processParams.doBarcodes)
18661895
&& Objects.equals(this.strictDLCategoryExpiry, processParams.strictDLCategoryExpiry)
18671896
&& Objects.equals(this.generateAlpha2Codes, processParams.generateAlpha2Codes)
1868-
&& Objects.equals(this.pdfPagesLimit, processParams.pdfPagesLimit);
1897+
&& Objects.equals(this.pdfPagesLimit, processParams.pdfPagesLimit)
1898+
&& Objects.equals(
1899+
this.disableAuthResolutionFilter, processParams.disableAuthResolutionFilter);
18691900
}
18701901

18711902
@Override
@@ -1933,7 +1964,8 @@ public int hashCode() {
19331964
doBarcodes,
19341965
strictDLCategoryExpiry,
19351966
generateAlpha2Codes,
1936-
pdfPagesLimit);
1967+
pdfPagesLimit,
1968+
disableAuthResolutionFilter);
19371969
}
19381970

19391971
@Override
@@ -2037,6 +2069,9 @@ public String toString() {
20372069
.append(toIndentedString(generateAlpha2Codes))
20382070
.append("\n");
20392071
sb.append(" pdfPagesLimit: ").append(toIndentedString(pdfPagesLimit)).append("\n");
2072+
sb.append(" disableAuthResolutionFilter: ")
2073+
.append(toIndentedString(disableAuthResolutionFilter))
2074+
.append("\n");
20402075
sb.append("}");
20412076
return sb.toString();
20422077
}
@@ -2120,6 +2155,7 @@ private String toIndentedString(Object o) {
21202155
openapiFields.add("strictDLCategoryExpiry");
21212156
openapiFields.add("generateAlpha2Codes");
21222157
openapiFields.add("pdfPagesLimit");
2158+
openapiFields.add("disableAuthResolutionFilter");
21232159

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

0 commit comments

Comments
 (0)