The scheduling settings for the plan.

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

Properties

dependencies?: "Sequential" | "Concurrent"

The dependencies for the plan. This must be "Sequential" or "Concurrent".

The end date field for the plan.

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

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

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

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

The start date field for the plan.