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
p: Union[Annotated[float, Field(le=1, strict=True, ge=0)], Annotated[int, Field(le=1, strict=True, ge=0)]] =Field(description="A measure of the likelihood of correct recognition in the analysis of this type of document", alias="P")
27
27
rotated180: StrictInt=Field(description="true if the document of the given type is rotated by 180 degrees", alias="Rotated180")
necessary_lights: StrictInt=Field(description="Combination of lighting scheme identifiers (Light enum) required to conduct OCR for this type of document", alias="NecessaryLights")
31
31
check_authenticity: StrictInt=Field(description="Set of authentication options provided for this type of document (combination of Authenticity enum)", alias="CheckAuthenticity")
32
32
uv_exp: StrictInt=Field(description="The required exposure value of the camera when receiving images of a document of this type for a UV lighting scheme", alias="UVExp")
p: Union[Annotated[float, Field(le=1, strict=True, ge=0)], Annotated[int, Field(le=1, strict=True, ge=0)]] =Field(description="A measure of the likelihood of correct recognition in the analysis of this type of document", alias="P")
27
27
rotated180: StrictInt=Field(description="true if the document of the given type is rotated by 180 degrees", alias="Rotated180")
necessary_lights: StrictInt=Field(description="Combination of lighting scheme identifiers (Light enum) required to conduct OCR for this type of document", alias="NecessaryLights")
31
31
check_authenticity: StrictInt=Field(description="Set of authentication options provided for this type of document (combination of Authenticity enum)", alias="CheckAuthenticity")
32
32
uv_exp: StrictInt=Field(description="The required exposure value of the camera when receiving images of a document of this type for a UV lighting scheme", alias="UVExp")
Copy file name to clipboardExpand all lines: regula/documentreader/webclient/gen/models/process_params.py
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,8 @@ class ProcessParams(BaseModel):
98
98
do_barcodes: Optional[List[InputBarcodeType]] =Field(default=None, description="Set the types of barcodes to process.", alias="doBarcodes")
99
99
strict_dl_category_expiry: Optional[StrictBool] =Field(default=None, description="Set to force DL categories expiry date to affect the overall status or not. As documents usually have their own date of expiry, which might be less or greater than category expiry date, this might be handy for specific cases.", alias="strictDLCategoryExpiry")
100
100
generate_alpha2_codes: Optional[StrictBool] =Field(default=None, description="Set to generate Alpha-2 codes for nationality and issuing state fields.", alias="generateAlpha2Codes")
pdf_pages_limit: Optional[StrictInt] =Field(default=None, description="Limits the number of pages to be processed from a PDF file.", alias="pdfPagesLimit")
0 commit comments