Interface CheckboxGroup

interface CheckboxGroup {
    action_id: string;
    options: { initial_selected?: boolean; text: string; value: string }[];
    type: "checkboxes";
}

Properties

action_id: string
options: { initial_selected?: boolean; text: string; value: string }[]
type: "checkboxes"