Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions client/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ src/main/generated/com/regula/documentreader/webclient/model/DocumentTypesCandid
src/main/generated/com/regula/documentreader/webclient/model/DocumentTypesCandidatesResult.java
src/main/generated/com/regula/documentreader/webclient/model/EncryptedRCLResult.java
src/main/generated/com/regula/documentreader/webclient/model/FDSIDList.java
src/main/generated/com/regula/documentreader/webclient/model/FaceApi.java
src/main/generated/com/regula/documentreader/webclient/model/FaceApiSearch.java
src/main/generated/com/regula/documentreader/webclient/model/FiberResult.java
src/main/generated/com/regula/documentreader/webclient/model/GraphicField.java
src/main/generated/com/regula/documentreader/webclient/model/GraphicFieldsList.java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,45 +14,66 @@

public class AuthenticityResultType {

/** Document luminescence check in UV light */
public static final int UV_LUMINESCENCE = 1;

/** B900 ink MRZ contrast check in IR light */
public static final int IR_B900 = 2;

/** Image patterns presence/absence check (position, shape, color) */
public static final int IMAGE_PATTERN = 4;

/** Confirm laminate integrity check in axial light */
public static final int AXIAL_PROTECTION = 8;

/** Protection fibers presence check (color, density) in UV light */
public static final int UV_FIBERS = 16;

/** Document elements visibility check in IR light */
public static final int IR_VISIBILITY = 32;

/** OCR for the text field in UV light comparison with other text sources check */
public static final int OCR_SECURITY_TEXT = 64;

/** Invisible Personal Information (IPI) visualization */
public static final int IPI = 128;

/** Owner's photo embedding check (is photo printed or sticked) */
public static final int PHOTO_EMBED_TYPE = 512;

/** OVI check */
public static final int OVI = 1024;

/** Hologram presence check */
public static final int HOLOGRAMS = 4096;

/** Owner's photo area advanced check (photo shape, size, position, etc.) */
public static final int PHOTO_AREA = 8192;

/** Portrait comparison check (document printed vs chip vs live) */
public static final int PORTRAIT_COMPARISON = 32768;

/** Barcode format check (code metadata, data format, contents format, etc.) */
public static final int BARCODE_FORMAT_CHECK = 65536;

/** Kinegram check */
public static final int KINEGRAM = 131072;

/** LetterScreen check */
public static final int LETTER_SCREEN = 262144;

/** Hologram detection and validation check */
public static final int HOLOGRAM_DETECTION = 524288;

/** Fingerprint comparison check */
public static final int FINGERPRINT_COMPARISON = 1048576;

/** Document liveness check */
public static final int LIVENESS = 2097152;

/** Extended OCR Check */
public static final int EXTENDED_OCR_CHECK = 4194304;

/** Extended MRZ check */
public static final int EXTENDED_MRZ_CHECK = 8388608;
}
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ public class CheckDiagnose {

public static final int NOT_ALL_BARCODES_READ = 143;

public static final int GLARES_IN_BARCODE_AREA = 144;

public static final int PORTRAIT_COMPARISON_PORTRAITS_DIFFER = 150;

public static final int PORTRAIT_COMPARISON_NO_SERVICE_REPLY = 151;
Expand Down Expand Up @@ -232,5 +234,7 @@ public class CheckDiagnose {

public static final int DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED = 240;

public static final int DOC_LIVENESS_INVALID_BARCODE_BACKGROUND = 241;

public static final int LAST_DIAGNOSE_VALUE = 250;
}
Loading