Job request Interface Represents a job to be executed by the JobService.

interface IJobRequest<T> {
    id: string;
    jobType: JobType;
    parameters: T;
    status?: JobStatus;
}

Type Parameters

Properties

id: string

The ID of the job.

jobType: JobType

The type of the job.

parameters: T

The parameters of the job.

status?: JobStatus

The status of the job.