Type alias FormElementWithOptionsBase

FormElementWithOptionsBase: LookupFormElement & FormElementRequired & FormElementReadOnly & {
    attributesMapping?: DynamicOptionsSetAttributeMap[];
    conditionallyShowOptions?: boolean;
    conditionallyShowOptionsElementIds?: string[];
    dynamicOptionSetId?: number;
    freshdeskFieldName?: string;
    options?: ChoiceElementOption[];
    optionsType: "CUSTOM" | "DYNAMIC" | "SEARCH" | "FRESHDESK_FIELD";
}