Interface IJobResultResponse<T>

Job response Interface Represents the response from a job.

interface IJobResultResponse<T> {
    id: string;
    result: T;
    status: Partial | Completed;
}

Type Parameters

Properties

Properties

id: string

The ID of the job.

result: T

The result of the job.

status: Partial | Completed

The status of the job.