Hevy SDK Documentation - v0.0.0
    Preparing search index...

    Interface WorkoutExercise

    Represents an exercise within a workout.

    interface WorkoutExercise {
        exercise_template_id: string;
        index: number;
        notes: string;
        sets: WorkoutSet[];
        supersets_id: number | null;
        title: string;
    }
    Index

    Properties

    exercise_template_id: string

    The id of the exercise template. This can be used to fetch the exercise template.

    "05293BCA"
    
    index: number

    Index indicating the order of the exercise in the workout.

    0
    
    notes: string

    Notes on the exercise.

    "Paid closer attention to form today. Felt great!"
    
    sets: WorkoutSet[]

    The sets performed in this exercise.

    supersets_id: number | null

    The id of the superset that the exercise belongs to. A value of null indicates the exercise is not part of a superset.

    0
    
    title: string

    Title of the exercise.

    "Bench Press (Barbell)"