Details of the status being created.

interface StatusCreate {
    description?: string;
    name: string;
    statusCategory: "TODO" | "IN_PROGRESS" | "DONE";
}

Properties

description?: string

The description of the status.

name: string

The name of the status.

statusCategory: "TODO" | "IN_PROGRESS" | "DONE"

The category of the status.