You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Gets the force_doc_format of this ProcessParams. # noqa: E501
576
+
577
+
578
+
:return: The force_doc_format of this ProcessParams. # noqa: E501
579
+
:rtype: DocumentFormat
580
+
"""
581
+
returnself._force_doc_format
582
+
583
+
@force_doc_format.setter
584
+
defforce_doc_format(self, force_doc_format):
585
+
"""Sets the force_doc_format of this ProcessParams.
586
+
587
+
588
+
:param force_doc_format: The force_doc_format of this ProcessParams. # noqa: E501
589
+
:type force_doc_format: DocumentFormat
590
+
"""
591
+
592
+
self._force_doc_format=force_doc_format
593
+
594
+
@property
595
+
defno_graphics(self):
596
+
"""Gets the no_graphics of this ProcessParams. # noqa: E501
597
+
598
+
When enabled no graphic fields will be cropped from document image. # noqa: E501
599
+
600
+
:return: The no_graphics of this ProcessParams. # noqa: E501
601
+
:rtype: bool
602
+
"""
603
+
returnself._no_graphics
604
+
605
+
@no_graphics.setter
606
+
defno_graphics(self, no_graphics):
607
+
"""Sets the no_graphics of this ProcessParams.
608
+
609
+
When enabled no graphic fields will be cropped from document image. # noqa: E501
610
+
611
+
:param no_graphics: The no_graphics of this ProcessParams. # noqa: E501
612
+
:type no_graphics: bool
613
+
"""
614
+
615
+
self._no_graphics=no_graphics
616
+
617
+
@property
618
+
defdocument_area_min(self):
619
+
"""Gets the document_area_min of this ProcessParams. # noqa: E501
620
+
621
+
Specifies minimal area of the image that document should cover to be treated as candidate when locating. Value should be in range from 0 to 1, where 1 is when document should fully cover the image. # noqa: E501
622
+
623
+
:return: The document_area_min of this ProcessParams. # noqa: E501
624
+
:rtype: float
625
+
"""
626
+
returnself._document_area_min
627
+
628
+
@document_area_min.setter
629
+
defdocument_area_min(self, document_area_min):
630
+
"""Sets the document_area_min of this ProcessParams.
631
+
632
+
Specifies minimal area of the image that document should cover to be treated as candidate when locating. Value should be in range from 0 to 1, where 1 is when document should fully cover the image. # noqa: E501
633
+
634
+
:param document_area_min: The document_area_min of this ProcessParams. # noqa: E501
635
+
:type document_area_min: float
636
+
"""
637
+
638
+
self._document_area_min=document_area_min
639
+
640
+
@property
641
+
deflog_level(self):
642
+
"""Gets the log_level of this ProcessParams. # noqa: E501
643
+
644
+
645
+
:return: The log_level of this ProcessParams. # noqa: E501
646
+
:rtype: LogLevel
647
+
"""
648
+
returnself._log_level
649
+
650
+
@log_level.setter
651
+
deflog_level(self, log_level):
652
+
"""Sets the log_level of this ProcessParams.
653
+
654
+
655
+
:param log_level: The log_level of this ProcessParams. # noqa: E501
656
+
:type log_level: LogLevel
657
+
"""
658
+
659
+
self._log_level=log_level
660
+
661
+
@property
662
+
defdepersonalize_log(self):
663
+
"""Gets the depersonalize_log of this ProcessParams. # noqa: E501
664
+
665
+
When enabled all personal data will be forcibly removed from the logs. # noqa: E501
666
+
667
+
:return: The depersonalize_log of this ProcessParams. # noqa: E501
668
+
:rtype: bool
669
+
"""
670
+
returnself._depersonalize_log
671
+
672
+
@depersonalize_log.setter
673
+
defdepersonalize_log(self, depersonalize_log):
674
+
"""Sets the depersonalize_log of this ProcessParams.
675
+
676
+
When enabled all personal data will be forcibly removed from the logs. # noqa: E501
677
+
678
+
:param depersonalize_log: The depersonalize_log of this ProcessParams. # noqa: E501
0 commit comments