@shortcut/client
    Preparing search index...

    Interface UpdateMilestone

    interface UpdateMilestone {
        after_id?: number;
        archived?: boolean;
        before_id?: number;
        categories?: CreateCategoryParams[];
        completed_at_override?: null | string;
        description?: string;
        name?: string;
        started_at_override?: null | string;
        state?: "in progress" | "to do" | "done";
    }
    Index

    Properties

    after_id?: number

    The ID of the Milestone we want to move this Milestone after.

    int64

    archived?: boolean

    A boolean indicating whether the Milestone is archived or not

    before_id?: number

    The ID of the Milestone we want to move this Milestone before.

    int64

    categories?: CreateCategoryParams[]

    An array of IDs of Categories attached to the Milestone.

    completed_at_override?: null | string

    A manual override for the time/date the Milestone was completed.

    date-time

    description?: string

    The Milestone's description.

    100000

    name?: string

    The name of the Milestone.

    1

    256

    started_at_override?: null | string

    A manual override for the time/date the Milestone was started.

    date-time

    state?: "in progress" | "to do" | "done"

    The workflow state that the Milestone is in.