Interface LeadFormsQuestionItem

interface LeadFormsQuestionItem {
    key: string;
    label: string;
    options: LeadFormsQuestionItemOption[];
    type: "input" | "select" | "textarea" | "radio" | "checkbox";
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

key: string
label: string
type: "input" | "select" | "textarea" | "radio" | "checkbox"

Generated using TypeDoc