The scheduling settings for the plan.

interface GetSchedulingResponse {
    dependencies: "Sequential" | "Concurrent";
    endDate: GetDateFieldResponse;
    estimation: "StoryPoints" | "Days" | "Hours";
    inferredDates: "None" | "SprintDates" | "ReleaseDates";
    startDate: GetDateFieldResponse;
}

Properties

dependencies: "Sequential" | "Concurrent"

The dependencies for the plan. This is "Sequential" or "Concurrent".

The end date field for the plan.

estimation: "StoryPoints" | "Days" | "Hours"

The estimation unit for the plan. This is "StoryPoints", "Days" or "Hours".

inferredDates: "None" | "SprintDates" | "ReleaseDates"

The inferred dates for the plan. This is "None", "SprintDates" or "ReleaseDates".

The start date field for the plan.