@modelhealth/modelhealth
    Preparing search index...

    Interface ActivityConfig

    Configuration for starting or updating a recording.

    interface ActivityConfig {
        activityType?: ActivityType;
        addTags?: string[];
        config?: RecordingConfig;
        name?: string;
        removeTags?: string[];
    }
    Index
    activityType?: ActivityType

    The type of activity being recorded. When set, the corresponding analysis starts automatically once recording is processed.

    addTags?: string[]

    Tags to add to the activity. Merged with existing tags.

    Per-recording settings that override the session-level config.

    name?: string

    New display name to set on the activity.

    removeTags?: string[]

    Tags to remove from the activity.