@shortcut/client
    Preparing search index...

    Interface EpicStats

    A group of calculated values for this Epic.

    interface EpicStats {
        last_story_update?: null | string;
        num_points: number;
        num_points_backlog: number;
        num_points_done: number;
        num_points_started: number;
        num_points_unstarted: number;
        num_related_documents: number;
        num_stories_backlog: number;
        num_stories_done: number;
        num_stories_started: number;
        num_stories_total: number;
        num_stories_unestimated: number;
        num_stories_unstarted: number;
    }
    Index

    Properties

    Optionallast_story_update

    last_story_update?: null | string

    The date of the last update of a Story in this Epic.

    date-time

    num_points: number

    The total number of points in this Epic.

    int64

    num_points_backlog: number

    The total number of backlog points in this Epic.

    int64

    num_points_done: number

    The total number of completed points in this Epic.

    int64

    num_points_started: number

    The total number of started points in this Epic.

    int64

    num_points_unstarted: number

    The total number of unstarted points in this Epic.

    int64

    num_related_documents: number

    The total number of documents associated with this Epic.

    int64

    num_stories_backlog: number

    The total number of backlog Stories in this Epic.

    int64

    num_stories_done: number

    The total number of done Stories in this Epic.

    int64

    num_stories_started: number

    The total number of started Stories in this Epic.

    int64

    num_stories_total: number

    The total number of Stories in this Epic.

    int64

    num_stories_unestimated: number

    The total number of Stories with no point estimate.

    int64

    num_stories_unstarted: number

    The total number of unstarted Stories in this Epic.

    int64