Type Alias AutomationConnectorSnippet

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

The description of the snippet.

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

An example of the output this snippet produces.

id?: string

The unique identifier of the snippet.

The input fields for this snippet.

name?: string

The name of the snippet.

objectType?: string | null

The object type this snippet operates on.

role?: string | null

The role of the snippet.