Interface JobProgress

Human-meaningful job-progress signal. Optional; servers may omit fields.

interface JobProgress {
    message?: string;
    percent?: number;
    updatedAt?: string;
}

Properties

message?: string

Human-readable status message for the current step.

percent?: number

0..100. Omitted when the server does not report a numeric estimate.

updatedAt?: string

ISO-8601 timestamp of when the server last updated the progress.