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

    Interface Routine

    Represents a workout routine.

    interface Routine {
        created_at: string;
        exercises: RoutineExercise[];
        folder_id: number | null;
        id: string;
        title: string;
        updated_at: string;
    }
    Index

    Properties

    created_at: string

    ISO 8601 timestamp of when the routine was created. Example: '2021-09-14T12:00:00Z'

    exercises: RoutineExercise[]

    The exercises in the routine.

    folder_id: number | null

    The routine folder ID. Nullable. Example: 42

    id: string

    The routine ID. Example: 'b459cba5-cd6d-463c-abd6-54f8eafcadcb'

    title: string

    The routine title. Example: 'Upper Body 💪'

    updated_at: string

    ISO 8601 timestamp of when the routine was last updated. Example: '2021-09-14T12:00:00Z'