documentPositionIndent property

int? documentPositionIndent

Specify the minimum indent from the corners of the document to the borders of the image. The value reflects the allowed percentage for the indent relative to the width of the document. If it is detected that the corners of the document are closer than the specified value, the status will contain an error in the DocumentReaderResults.imageQuality.imageQualityList.result field.

Implementation

int? get documentPositionIndent => _documentPositionIndent;
void documentPositionIndent=(int? val)

Implementation

set documentPositionIndent(int? val) {
  _documentPositionIndent = val;
  _set({"documentPositionIndent": val});
}