Class FieldSuspiciousDataVerificationReport

Report of the suspicious data field verification.

Constructors

Properties

Methods

Constructors

Properties

fieldFullName: string

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

isSuspicious: boolean

Shows whether the data in the field is suspicious, e.g. contains word "Sample" in the name.

Methods

  • Parameters

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

    • Optional Readonly fieldFullName?: string

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

    • Optional Readonly isSuspicious?: boolean

      Shows whether the data in the field is suspicious, e.g. contains word "Sample" in the name.

    • serialize?:function
      • Parameters

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