capacitor-plugin-scanbot-sdk
    Preparing search index...

    Class ConsistencyVerificationReport

    Report of the document consistency verification. Shows whether information in the fields that correspond to the same logical field is consistent.

    Index

    Constructors

    Properties

    List of reports for each field that was verified.

    overallConsistency: ValueConsistency

    Overall status of the consistency verification. Corresponds to the most severe status of all fields.

    Methods

    • Parameters

      Returns {
          fieldDetails?: {
              consistency?: ValueConsistency;
              fieldFullNames?: string[];
              fieldType?: CommonFieldType;
              serialize?: (
                  config?: ToJsonConfiguration,
              ) => { readonly fieldType?: CommonFieldType | undefined; readonly consistency?: ValueConsistency | undefined; readonly fieldFullNames?: string[] | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; };
          }[];
          overallConsistency?: ValueConsistency;
          serialize?: (
              config?: ToJsonConfiguration,
          ) => { readonly overallConsistency?: ValueConsistency | undefined; readonly fieldDetails?: { readonly fieldType?: CommonFieldType | undefined; readonly consistency?: ValueConsistency | undefined; readonly fieldFullNames?: string[] | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; }...;
      }

      • Optional ReadonlyfieldDetails?: {
            consistency?: ValueConsistency;
            fieldFullNames?: string[];
            fieldType?: CommonFieldType;
            serialize?: (
                config?: ToJsonConfiguration,
            ) => { readonly fieldType?: CommonFieldType | undefined; readonly consistency?: ValueConsistency | undefined; readonly fieldFullNames?: string[] | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; };
        }[]

        List of reports for each field that was verified.

      • Optional ReadonlyoverallConsistency?: ValueConsistency

        Overall status of the consistency verification. Corresponds to the most severe status of all fields.

      • Optionalserialize?: (
            config?: ToJsonConfiguration,
        ) => { readonly overallConsistency?: ValueConsistency | undefined; readonly fieldDetails?: { readonly fieldType?: CommonFieldType | undefined; readonly consistency?: ValueConsistency | undefined; readonly fieldFullNames?: string[] | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; }...