@@ -422,6 +422,13 @@ public class ProcessParams {
422
422
@ javax .annotation .Nullable
423
423
private Integer pdfPagesLimit ;
424
424
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
+
425
432
public ProcessParams () {}
426
433
427
434
public ProcessParams generateDTCVC (@ javax .annotation .Nullable Boolean generateDTCVC ) {
@@ -1791,6 +1798,28 @@ public void setPdfPagesLimit(@javax.annotation.Nullable Integer pdfPagesLimit) {
1791
1798
this .pdfPagesLimit = pdfPagesLimit ;
1792
1799
}
1793
1800
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
+
1794
1823
@ Override
1795
1824
public boolean equals (Object o ) {
1796
1825
if (this == o ) {
@@ -1865,7 +1894,9 @@ public boolean equals(Object o) {
1865
1894
&& Objects .equals (this .doBarcodes , processParams .doBarcodes )
1866
1895
&& Objects .equals (this .strictDLCategoryExpiry , processParams .strictDLCategoryExpiry )
1867
1896
&& 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 );
1869
1900
}
1870
1901
1871
1902
@ Override
@@ -1933,7 +1964,8 @@ public int hashCode() {
1933
1964
doBarcodes ,
1934
1965
strictDLCategoryExpiry ,
1935
1966
generateAlpha2Codes ,
1936
- pdfPagesLimit );
1967
+ pdfPagesLimit ,
1968
+ disableAuthResolutionFilter );
1937
1969
}
1938
1970
1939
1971
@ Override
@@ -2037,6 +2069,9 @@ public String toString() {
2037
2069
.append (toIndentedString (generateAlpha2Codes ))
2038
2070
.append ("\n " );
2039
2071
sb .append (" pdfPagesLimit: " ).append (toIndentedString (pdfPagesLimit )).append ("\n " );
2072
+ sb .append (" disableAuthResolutionFilter: " )
2073
+ .append (toIndentedString (disableAuthResolutionFilter ))
2074
+ .append ("\n " );
2040
2075
sb .append ("}" );
2041
2076
return sb .toString ();
2042
2077
}
@@ -2120,6 +2155,7 @@ private String toIndentedString(Object o) {
2120
2155
openapiFields .add ("strictDLCategoryExpiry" );
2121
2156
openapiFields .add ("generateAlpha2Codes" );
2122
2157
openapiFields .add ("pdfPagesLimit" );
2158
+ openapiFields .add ("disableAuthResolutionFilter" );
2123
2159
2124
2160
// a set of required properties/fields (JSON key names)
2125
2161
openapiRequiredFields = new HashSet <String >();
0 commit comments