Class FieldInvalidDataVerificationReport

Report which shows whether the data in the field that can be validated is valid.

Constructors

Properties

Methods

Constructors

Properties

fieldFullName: string

Full name of the field that was considered during the verification.

isInvalid: boolean

Shows whether the data in the field is valid, e.g. if MRZ check digits are correct.

Methods

  • Parameters

    Returns {
        fieldFullName?: string;
        isInvalid?: boolean;
        serialize?(config?): { readonly fieldFullName?: string | undefined; readonly isInvalid?: boolean | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; };
    }

    • Optional Readonly fieldFullName?: string

      Full name of the field that was considered during the verification.

    • Optional Readonly isInvalid?: boolean

      Shows whether the data in the field is valid, e.g. if MRZ check digits are correct.

    • serialize?:function
      • Parameters

        Returns { readonly fieldFullName?: string | undefined; readonly isInvalid?: boolean | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; }