@shortcut/client
    Preparing search index...

    Interface Health

    The current health status of the Epic.

    interface Health {
        author_id?: string;
        created_at?: string;
        entity_type: string;
        epic_id?: number;
        id?: null | string;
        objective_id?: number;
        status: "At Risk" | "On Track" | "Off Track" | "No Health";
        text?: string;
        updated_at?: string;
    }
    Index

    Properties

    author_id?: string

    The ID of the permission who created or updated the Health record.

    uuid

    created_at?: string

    The time that the Health record was created.

    date-time

    entity_type: string

    A string description of this resource.

    epic_id?: number

    The ID of the Epic associated with this Health record.

    int64

    id?: null | string

    The unique ID of the Health record.

    uuid

    objective_id?: number

    The ID of the Objective associated with this Health record.

    int64

    status: "At Risk" | "On Track" | "Off Track" | "No Health"

    The health status of the Epic or Objective.

    text?: string

    The text of the Health record.

    updated_at?: string

    The time that the Health record was updated.

    date-time