Type Alias AutomationConnectionParamObject

type AutomationConnectionParamObject = {
    documentation?: string;
    exampleValue?: string;
    fieldType?: string;
    id?: string;
    isOptional?: boolean;
    meta?: unknown[];
    name?: string;
    order?: number;
    paramOptions?: AutomationConnectionParamOptionObject[];
    value?: string;
}
Index

Properties

documentation?: string

The documentation of the automation connection parameter.

exampleValue?: string

The example value of the automation connection parameter.

fieldType?: string

The field type of the automation connection parameter.

id?: string

The unique identifier of the automation connection parameter.

isOptional?: boolean

When true, the parameter is optional.

meta?: unknown[]

The metadata of the automation connection parameter.

name?: string

The name of the automation connection parameter.

order?: number

The order that the automation connection configuration fields should be displayed in.

value?: string

The value of the automation connection parameter.