fieldnotesai
    Preparing search index...

    Interface CaseForm

    Provides functionality for case form.

    interface CaseForm {
        case_id: string;
        created_at: string;
        created_by: string;
        file_type?: string | null;
        form_answers?: Record<string, unknown> | null;
        form_templates?: FormTemplate;
        id: string;
        is_submitted?: boolean;
        name: string;
        storage_bucket?: string | null;
        storage_path?: string | null;
        submitted_at?: string | null;
        template_id: string | null;
        template_name_snapshot: string;
        updated_at: string;
    }
    Index

    Properties

    case_id: string
    created_at: string
    created_by: string
    file_type?: string | null
    form_answers?: Record<string, unknown> | null
    form_templates?: FormTemplate
    id: string
    is_submitted?: boolean
    name: string
    storage_bucket?: string | null
    storage_path?: string | null
    submitted_at?: string | null
    template_id: string | null
    template_name_snapshot: string
    updated_at: string