Skip to content

Commit

Permalink
fix image qa params names
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user authored and hleb-albau committed Nov 13, 2021
1 parent aa61e7a commit 8782f6c
Showing 1 changed file with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@ public class ProcessParams {
@SerializedName(SERIALIZED_NAME_RETURN_CROPPED_BARCODE)
private Boolean returnCroppedBarcode;

public static final String SERIALIZED_NAME_IMAGE_Q_A = "imageQA";
public static final String SERIALIZED_NAME_IMAGE_QA = "imageQa";

@SerializedName(SERIALIZED_NAME_IMAGE_Q_A)
private ImageQA imageQA;
@SerializedName(SERIALIZED_NAME_IMAGE_QA)
private ImageQA imageQa;

public static final String SERIALIZED_NAME_FORCE_DOC_FORMAT = "forceDocFormat";

Expand Down Expand Up @@ -596,23 +596,23 @@ public void setReturnCroppedBarcode(Boolean returnCroppedBarcode) {
this.returnCroppedBarcode = returnCroppedBarcode;
}

public ProcessParams withImageQA(ImageQA imageQA) {
this.imageQA = imageQA;
public ProcessParams withImageQa(ImageQA imageQa) {
this.imageQa = imageQa;
return this;
}

/**
* Get imageQA
* Get imageQa
*
* @return imageQA
* @return imageQa
*/
@javax.annotation.Nullable
public ImageQA getImageQA() {
return imageQA;
public ImageQA getImageQa() {
return imageQa;
}

public void setImageQA(ImageQA imageQA) {
this.imageQA = imageQA;
public void setImageQa(ImageQA imageQa) {
this.imageQa = imageQa;
}

public ProcessParams withForceDocFormat(Integer forceDocFormat) {
Expand Down Expand Up @@ -890,7 +890,7 @@ public boolean equals(java.lang.Object o) {
&& Objects.equals(this.updateOCRValidityByGlare, processParams.updateOCRValidityByGlare)
&& Objects.equals(this.checkRequiredTextFields, processParams.checkRequiredTextFields)
&& Objects.equals(this.returnCroppedBarcode, processParams.returnCroppedBarcode)
&& Objects.equals(this.imageQA, processParams.imageQA)
&& Objects.equals(this.imageQa, processParams.imageQa)
&& Objects.equals(this.forceDocFormat, processParams.forceDocFormat)
&& Objects.equals(this.noGraphics, processParams.noGraphics)
&& Objects.equals(this.documentAreaMin, processParams.documentAreaMin)
Expand Down Expand Up @@ -927,7 +927,7 @@ public int hashCode() {
updateOCRValidityByGlare,
checkRequiredTextFields,
returnCroppedBarcode,
imageQA,
imageQa,
forceDocFormat,
noGraphics,
documentAreaMin,
Expand Down Expand Up @@ -973,7 +973,7 @@ public String toString() {
sb.append(" returnCroppedBarcode: ")
.append(toIndentedString(returnCroppedBarcode))
.append("\n");
sb.append(" imageQA: ").append(toIndentedString(imageQA)).append("\n");
sb.append(" imageQa: ").append(toIndentedString(imageQa)).append("\n");
sb.append(" forceDocFormat: ").append(toIndentedString(forceDocFormat)).append("\n");
sb.append(" noGraphics: ").append(toIndentedString(noGraphics)).append("\n");
sb.append(" documentAreaMin: ").append(toIndentedString(documentAreaMin)).append("\n");
Expand Down

0 comments on commit 8782f6c

Please sign in to comment.