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

    Interface UpdateWorkoutExercise

    Represents an exercise in an update workout request.

    interface UpdateWorkoutExercise {
        exercise_template_id: string;
        notes?: string;
        sets?: UpdateWorkoutSet[];
        supersets_id?: number | null;
        title?: string;
    }
    Index

    Properties

    exercise_template_id: string

    The id of the exercise template.

    notes?: string

    Notes on the exercise.

    The sets performed in this exercise.

    supersets_id?: number | null

    The id of the superset that the exercise belongs to.

    title?: string

    Title of the exercise.