@shortcut/client
    Preparing search index...

    Interface IterationStats

    A group of calculated values for this Iteration.

    interface IterationStats {
        average_cycle_time?: number;
        average_lead_time?: number;
        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_unestimated: number;
        num_stories_unstarted: number;
    }
    Index

    Properties

    average_cycle_time?: number

    The average cycle time (in seconds) of completed stories in this Iteration.

    int64

    average_lead_time?: number

    The average lead time (in seconds) of completed stories in this Iteration.

    int64

    num_points: number

    The total number of points in this Iteration.

    int64

    num_points_backlog: number

    The total number of backlog points in this Iteration.

    int64

    num_points_done: number

    The total number of completed points in this Iteration.

    int64

    num_points_started: number

    The total number of started points in this Iteration.

    int64

    num_points_unstarted: number

    The total number of unstarted points in this Iteration.

    int64

    num_related_documents: number

    The total number of documents related to an Iteration

    int64

    num_stories_backlog: number

    The total number of backlog Stories in this Iteration.

    int64

    num_stories_done: number

    The total number of done Stories in this Iteration.

    int64

    num_stories_started: number

    The total number of started Stories in this Iteration.

    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 Iteration.

    int64