Member Junction
    Preparing search index...

    Common response structure for form submissions

    interface FormResponse {
        answerDetails: FormAnswer[];
        answers?: Record<string, any>;
        calculatedFields?: Record<string, any>;
        completed: boolean;
        formId: string;
        hiddenFields?: Record<string, any>;
        metadata?: {
            browser?: string;
            platform?: string;
            referer?: string;
            userAgent?: string;
        };
        responseId: string;
        submittedAt: Date;
    }
    Index

    Properties

    answerDetails: FormAnswer[]
    answers?: Record<string, any>
    calculatedFields?: Record<string, any>
    completed: boolean
    formId: string
    hiddenFields?: Record<string, any>
    metadata?: {
        browser?: string;
        platform?: string;
        referer?: string;
        userAgent?: string;
    }
    responseId: string
    submittedAt: Date