@shortcut/client
    Preparing search index...

    Interface Health

    interface Health {
        author?: MemberSlim;
        created_at?: string;
        entity_type?: "health";
        epic?: EpicSlim | null;
        id?: string;
        objective?: ObjectiveSlim | null;
        status?: "At Risk" | "On Track" | "Off Track" | "No Health";
        text?: string | null;
        updated_at?: string;
    }
    Index

    Properties

    author?: MemberSlim

    The Member who created the Doc.

    created_at?: string

    The time/date the Health was created.

    date-time

    entity_type?: "health"

    The type of this entity.

    epic?: EpicSlim | null

    The Epic the story belongs to.

    id?: string

    The unique ID of the Health.

    uuid

    objective?: ObjectiveSlim | null
    status?: "At Risk" | "On Track" | "Off Track" | "No Health"

    The status of the Health.

    text?: string | null

    The text body of the Health update.

    updated_at?: string

    The time/date the Health was last updated.

    date-time