Type Alias AutomationConnectorParam

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

The description of the parameter.

exampleValue?: string | null

An example value for the parameter.

fieldType?: string

The field type of the parameter.

id?: string

The unique identifier of the parameter.

name?: string

The name of the parameter.

optional?: boolean

Indicates whether the parameter is optional.

options?: string[]

The available options for the parameter.

setting?: boolean

Indicates whether the parameter is a setting.