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

    Interface Workout

    Represents a workout with exercises and sets.

    interface Workout {
        created_at: string;
        description: string;
        end_time: string;
        exercises: WorkoutExercise[];
        id: string;
        routine_id: string;
        start_time: string;
        title: string;
        updated_at: string;
    }
    Index

    Properties

    created_at: string

    ISO 8601 timestamp of when the workout was created.

    "2021-09-14T12:00:00Z"
    
    description: string

    The workout description.

    "Pushed myself to the limit today!"
    
    end_time: string

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

    "2021-09-14T12:00:00Z"
    
    exercises: WorkoutExercise[]

    The exercises performed in the workout.

    id: string

    The workout ID.

    "b459cba5-cd6d-463c-abd6-54f8eafcadcb"
    
    routine_id: string

    The ID of the routine that this workout belongs to.

    "b459cba5-cd6d-463c-abd6-54f8eafcadcb"
    
    start_time: string

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

    "2021-09-14T12:00:00Z"
    
    title: string

    The workout title.

    "Morning Workout 💪"
    
    updated_at: string

    ISO 8601 timestamp of when the workout was last updated.

    "2021-09-14T12:00:00Z"