@oneblink/sdk-core
    Preparing search index...

    Type Alias DynamicChoiceElementOption

    type DynamicChoiceElementOption = {
        attributes?: DynamicChoiceElementOptionAttribute[];
        colour?: string;
        displayAlways?: boolean;
        imageUrl?: string;
        label: string;
        options?: DynamicChoiceElementOption[];
        value: string;
    }
    Index

    Properties

    An array of option attributes associated with an individual option.

    colour?: string

    The color of the button used to display the option, if the element has buttons configured as true.

    displayAlways?: boolean

    For autocomplete elements this option will always appear in the search results.

    imageUrl?: string

    An image associated with this option

    label: string

    The label displayed to the user for an individual option.

    An array of nested options, relevant to the option.

    value: string

    The value for an individual option, sent with form submission data.