Interface OptionValue

interface OptionValue {
    customValue?: any;
    isHidden?: boolean;
    label: string;
    name: string;
    placeholder?: string;
    value: any;
    visibility: OptionVisibilityEnum;
}

Properties

customValue?: any
isHidden?: boolean
label: string
name: string
placeholder?: string
value: any