Time tracking details.

interface TimeTrackingDetails {
    originalEstimate?: string;
    originalEstimateSeconds?: number;
    remainingEstimate?: string;
    remainingEstimateSeconds?: number;
    timeSpent?: string;
    timeSpentSeconds?: number;
}

Properties

originalEstimate?: string

The original estimate of time needed for this issue in readable format.

originalEstimateSeconds?: number

The original estimate of time needed for this issue in seconds.

remainingEstimate?: string

The remaining estimate of time needed for this issue in readable format.

remainingEstimateSeconds?: number

The remaining estimate of time needed for this issue in seconds.

timeSpent?: string

Time worked on this issue in readable format.

timeSpentSeconds?: number

Time worked on this issue in seconds.