@shortcut/client
    Preparing search index...

    Interface UpdateObjective

    interface UpdateObjective {
        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 Objective we want to move this Objective after.

    int64

    archived?: boolean

    A boolean indicating whether the Objective is archived or not

    before_id?: number

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

    int64

    categories?: CreateCategoryParams[]

    An array of IDs of Categories attached to the Objective.

    completed_at_override?: null | string

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

    date-time

    description?: string

    The Objective's description.

    100000

    name?: string

    The name of the Objective.

    1

    256

    started_at_override?: null | string

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

    date-time

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

    The workflow state that the Objective is in.