Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/jira/src/version2/models/taskProgressObject.ts>TaskProgressObject

A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API
Latest
interface TaskProgressObject
import { type TaskProgressObject } from "https://deno.land/x/jira@v3.0.2/src/version2/models/taskProgressObject.ts";

Details about a task.

Properties

optional
description: string

The description of the task.

elapsedRuntime: number

The execution time of the task, in milliseconds.

optional
finished: number

A timestamp recording when the task was finished.

id: string

The ID of the task.

lastUpdate: number

A timestamp recording when the task progress was last updated.

optional
message: string

Information about the progress of the task.

progress: number

The progress of the task, as a percentage complete.

optional
result: any

The result of the task execution.

self: string

The URL of the task.

optional
started: number

A timestamp recording when the task was started.

status: string

The status of the task.

submitted: number

A timestamp recording when the task was submitted.

submittedBy: number

The ID of the user who submitted the task.