Search
    Preparing search index...
    interface IEnumAttributeST {
        displayName?: string;
        formFields?: IEnumFormField[];
        id?: string;
        items?: Partial<IEnumFormField>[];
        key: string;
        options:
            | SelectOption<SelectSingleValueType>[]
            | (() => Promise<SelectOption<SelectSingleValueType>[]>);
        parentId?: string;
        supplementaryGroup?: ISearchGroupBase<IGroupQueryBase>;
        termGroup: keyof ITermsGroup;
    }

    Hierarchy

    Index

    Properties

    displayName?: string
    formFields?: IEnumFormField[]
    id?: string
    items?: Partial<IEnumFormField>[]
    key: string
    options:
        | SelectOption<SelectSingleValueType>[]
        | (() => Promise<SelectOption<SelectSingleValueType>[]>)
    parentId?: string
    supplementaryGroup?: ISearchGroupBase<IGroupQueryBase>
    termGroup: keyof ITermsGroup