@shortcut/client
    Preparing search index...

    Interface HistoryReferenceStory

    A reference to a Story.

    interface HistoryReferenceStory {
        app_url: string;
        entity_type: string;
        id: string | number;
        name: string;
        parent_story_id?: number;
        story_type: "feature" | "chore" | "bug";
    }
    Index

    Properties

    app_url: string

    The application URL of the Story.

    2048

    ^https?://.+$

    entity_type: string

    The type of entity referenced.

    id: string | number

    The ID of the entity referenced.

    name: string

    The name of the entity referenced.

    Optionalparent_story_id

    parent_story_id?: number

    The Story's Parent ID (only applicable if Story is a Sub-task)

    int64

    story_type

    story_type: "feature" | "chore" | "bug"

    If the referenced entity is a Story, either "bug", "chore", or "feature".