The parameters identifying the task to cancel.

interface TaskIdParams {
    id: string;
    metadata?: {
        [k: string]: unknown;
    };
}

Properties

Properties

id: string

The unique identifier of the task.

metadata?: {
    [k: string]: unknown;
}

Optional metadata associated with the request.

Type declaration

  • [k: string]: unknown