Home / Type/ JobStatus Type — typescript-sdk Architecture

JobStatus Type — typescript-sdk Architecture

Architecture documentation for the JobStatus type/interface in JobStatus.ts from the typescript-sdk codebase.

Entity Profile

Source Code

src/models/JobStatus.ts lines 21–46

export interface JobStatus {
    /**
     * Current status of the job.
     * @type {string}
     * @memberof JobStatus
     */
    status: JobStatusStatusEnum;
    /**
     * Unique identifier for the job.
     * @type {string}
     * @memberof JobStatus
     */
    jobId: string;
    /**
     * Recommended seconds to wait before polling again.
     * @type {number}
     * @memberof JobStatus
     */
    retryAfter?: number;
    /**
     * Error message (present when status is failed).
     * @type {string}
     * @memberof JobStatus
     */
    error?: string;
}

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free