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

    Interface UpdateWorkoutRequest

    The request body for updating a workout.

    interface UpdateWorkoutRequest {
        description?: string;
        end_time: string;
        exercises: UpdateWorkoutExercise[];
        is_private: boolean;
        start_time: string;
        title: string;
    }
    Index

    Properties

    description?: string

    The workout description.

    end_time: string

    ISO 8601 timestamp of when the workout was recorded to have ended.

    The exercises performed in the workout.

    is_private: boolean

    Whether the workout is private.

    start_time: string

    ISO 8601 timestamp of when the workout was recorded to have started.

    title: string

    The workout title.