Interface PaceChunkStatus

Interface representing the status of a pacing chunk.

interface PaceChunkStatus {
    errorMessage?: string;
    iterations: number;
    success: boolean;
    tests: PacingTests;
}

Properties

errorMessage?: string

Error message if the chunk was not successful.

iterations: number

The number of iterations for the chunk.

success: boolean

Indicates if the chunk was successful.

The tests associated with the chunk.