@servicenow/sdk - v4.4.1
    Preparing search index...

    Interface FlowArrayType<F>

    Defines the structure for an array within a Flow.

    interface FlowArrayType<F extends FlowArrayElementType = FlowArrayElementType> {
        elementType: ValidFlowArrayElementType<F>;
        hint?: string;
        label: string;
        mandatory?: boolean;
        maxRows?: number;
    }

    Type Parameters

    • F extends FlowArrayElementType = FlowArrayElementType
    Index

    Properties

    elementType: ValidFlowArrayElementType<F>

    The FlowValueType for elements within the array.

    hint?: string

    A hint or help text for this array.

    label: string

    A user-friendly label for this array type.

    mandatory?: boolean

    Indicates if this array instance is required.

    maxRows?: number

    Maximum number of rows allowed in this array.