@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
13 lines (11 loc) • 614 B
text/typescript
import type { GetDateFieldResponse } from './getDateFieldResponse';
export interface GetSchedulingResponse {
/** The dependencies for the plan. This is "Sequential" or "Concurrent". */
dependencies: 'Sequential' | 'Concurrent' | string;
endDate?: GetDateFieldResponse;
/** The estimation unit for the plan. This is "StoryPoints", "Days" or "Hours". */
estimation: 'StoryPoints' | 'Days' | 'Hours' | string;
/** The inferred dates for the plan. This is "None", "SprintDates" or "ReleaseDates". */
inferredDates: 'None' | 'SprintDates' | 'ReleaseDates' | string;
startDate?: GetDateFieldResponse;
}