Type Alias AutomationConnectorBlock

type AutomationConnectorBlock = {
    description?: string | null;
    exampleOutput?:
        | unknown
        | (unknown | string | number | boolean)[]
        | string
        | null;
    id?: string;
    inputs?: AutomationConnectorParam[];
    name?: string;
    objectType?: string | null;
    role?: string;
}
Index
description?: string | null

The description of the block.

exampleOutput?:
    | unknown
    | (unknown | string | number | boolean)[]
    | string
    | null

An example of the output this block produces.

id?: string

The unique identifier of the block.

The input parameters for this block.

name?: string

The name of the block.

objectType?: string | null

The object type this block operates on.

role?: string

The role of the block.