fieldnotesai
    Preparing search index...

    Interface Recording

    Provides functionality for recording.

    interface Recording {
        ai_summary?: string | null;
        case_id: string;
        created_by: string;
        duration_seconds?: number;
        file_size_bytes?: number;
        id: string;
        is_trashed: boolean;
        latitude?: number | null;
        local_uri?: string | null;
        longitude?: number | null;
        notes_text?: string | null;
        notes_trashed?: boolean;
        notes_trashed_at?: string | null;
        notes_updated_at?: string | null;
        notes_updated_by?: string | null;
        notes_updated_by_name?: string | null;
        recorded_at: string;
        storage_path?: string | null;
        transcript_highlights?: TranscriptHighlight[];
        transcript_storage_path?: string | null;
        transcript_text?: string | null;
        trash_cleared?: boolean;
        trashed_at: string | null;
    }
    Index

    Properties

    ai_summary?: string | null
    case_id: string
    created_by: string
    duration_seconds?: number
    file_size_bytes?: number
    id: string
    is_trashed: boolean
    latitude?: number | null
    local_uri?: string | null
    longitude?: number | null
    notes_text?: string | null
    notes_trashed?: boolean
    notes_trashed_at?: string | null
    notes_updated_at?: string | null
    notes_updated_by?: string | null
    notes_updated_by_name?: string | null
    recorded_at: string
    storage_path?: string | null
    transcript_highlights?: TranscriptHighlight[]
    transcript_storage_path?: string | null
    transcript_text?: string | null
    trash_cleared?: boolean
    trashed_at: string | null