Information about the possible/allowed values for a given subscription input

interface FieldInputValues {
    defaultValue: string;
    error: InputValuesError;
    inputId: string;
    isDisabled: boolean;
    isLimitedToPossibleValues: boolean;
    isReadOnly: boolean;
    operators?: number[];
    possibleValues: InputValue[];
}

Hierarchy (View Summary)

Properties

defaultValue: string

The default value to use for this input

Errors encountered while computing dynamic values.

inputId: string

The id of the input

isDisabled: boolean

Should this input be disabled

isLimitedToPossibleValues: boolean

Should the value be restricted to one of the values in the PossibleValues (True) or are the values in PossibleValues just a suggestion (False)

isReadOnly: boolean

Should this input be made read-only

operators?: number[]
possibleValues: InputValue[]

Possible values that this input can take