Type Alias AutomationConnectorSnippetInput

type AutomationConnectorSnippetInput = {
    description?: string | null;
    fieldType?: string;
    id?: string;
    name?: string;
    optional?: boolean;
    options?: unknown | unknown[] | null;
}
Index
description?: string | null

The help text for this input.

fieldType?: string

The field type of the input.

id?: string

The unique identifier of the snippet input.

name?: string

The display name (prompt) of the input.

optional?: boolean

Indicates whether the input is optional.

options?: unknown | unknown[] | null

The available options for this input.