Member Junction
    Preparing search index...

    Form response content

    interface FormResponseContent {
        _mode: "form";
        action: string;
        fields: {
            displayValue?: string;
            label?: string;
            name: string;
            type?: string;
            value: any;
        }[];
        title?: string;
    }
    Index

    Properties

    _mode: "form"

    Mode identifier

    action: string

    Action being performed

    fields: {
        displayValue?: string;
        label?: string;
        name: string;
        type?: string;
        value: any;
    }[]

    Array of field responses

    Type Declaration

    • OptionaldisplayValue?: string

      Optional display value (e.g., option label for choice fields)

    • Optionallabel?: string

      Optional display label for the question

    • name: string

      Field name

    • Optionaltype?: string

      Optional field type for formatting (date, datetime, slider, etc.)

    • value: any

      Field value

    title?: string

    Optional form title for display