@modelhealth/modelhealth
    Preparing search index...

    Interface Activity

    A movement recording trial with associated videos and results.

    Activities represent individual recording trials and contain references to captured videos and results.

    const activities = await client.activityList(session.id);
    for (const activity of activities) {
    console.log(`${activity.name ?? activity.id}: ${activity.status}`);
    }
    interface Activity {
        activityType?: ActivityType;
        id: string;
        name?: string;
        results: ActivityResult[];
        session: string;
        status: string;
        videos: Video[];
    }
    Index

    Properties

    activityType?: ActivityType

    The activity type associated with this recording, if one was set.

    id: string
    name?: string
    results: ActivityResult[]
    session: string
    status: string
    videos: Video[]