@shortcut/client
    Preparing search index...

    Interface KeyResult

    interface KeyResult {
        current_observed_value: KeyResultValue;
        current_target_value: KeyResultValue;
        id: string;
        initial_observed_value: KeyResultValue;
        name: string;
        objective_id: number;
        progress: number;
        type: "boolean" | "percent" | "numeric";
    }
    Index

    Properties

    current_observed_value: KeyResultValue

    The starting value of the Key Result.

    current_target_value: KeyResultValue

    The starting value of the Key Result.

    id: string

    The ID of the Key Result.

    uuid

    initial_observed_value: KeyResultValue

    The starting value of the Key Result.

    name: string

    The name of the Key Result.

    objective_id: number

    The Objective to which this Key Result belongs.

    int64

    progress: number

    The integer percentage of progress toward completion of the Key Result.

    int64

    type: "boolean" | "percent" | "numeric"

    The type of the Key Result (numeric, percent, or boolean).