Interface UpdateMilestoneData

Request body for updating a milestone.

interface UpdateMilestoneData {
    description?: string;
    due_on?: string;
    state?: "open" | "closed";
    title?: string;
}

Properties

description?: string

New description

due_on?: string

New due date (ISO 8601)

state?: "open" | "closed"

New state

title?: string

New title