Member Junction
    Preparing search index...

    Final (or interim) summary of a process run.

    interface ProcessRunSummary {
        EndTime?: Date;
        Error: number;
        ErrorMessage?: string;
        Processed: number;
        Skipped: number;
        StartTime?: Date;
        Status: ProcessRunStatusValue;
        Success: number;
        Total: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    EndTime?: Date

    When the run ended.

    Error: number

    Records that failed.

    ErrorMessage?: string

    Run-level error message when Status is Failed.

    Processed: number

    Records handed to the processor so far.

    Skipped: number

    Records that were skipped.

    StartTime?: Date

    When the run started.

    Terminal or current run status.

    Success: number

    Records that succeeded.

    Total: number

    Known total record count, or null.