Interface SetV2NodeParameters

Source
interface SetV2NodeParameters {
    assignments?: unknown;
    duplicateCount?: number;
    duplicateItem?: boolean;
    excludeFields?: string;
    fields?: {
        values: {
            arrayValue?: string;
            booleanValue?: "true" | "false";
            name?: string;
            numberValue?: string;
            objectValue?: string;
            stringValue?: string;
            type?:
                | "stringValue"
                | "numberValue"
                | "booleanValue"
                | "arrayValue"
                | "objectValue";
        }[];
    };
    include?: "all"
    | "none"
    | "selected"
    | "except";
    includeFields?: string;
    includeOtherFields?: boolean;
    jsonOutput?: string;
    mode?: "manual" | "raw";
    options?: {
        dotNotation?: boolean;
        ignoreConversionErrors?: boolean;
        includeBinary?: boolean;
        stripBinary?: boolean;
    };
}

Properties§

§readonly assignments?: unknown

Default: {}

§readonly duplicateCount?: number

How many times the item should be duplicated, mainly used for testing and debugging Type options: {"minValue":0}

§readonly duplicateItem?: boolean

Whether this item should be duplicated a set number of times

§readonly excludeFields?: string

Comma-separated list of the field names you want to exclude from the output. You can drag the selected fields from the input panel.

§readonly fields?: { ... }

Edit existing fields or add new ones to modify the output data Default: {} Type options: {"multipleValues":true,"sortable":true}

§readonly include?: "all" | "none" | "selected" | "except"

How to select the fields you want to include in your output items Default: "all"

§readonly includeFields?: string

Comma-separated list of the field names you want to include in the output. You can drag the selected fields from the input panel.

§readonly includeOtherFields?: boolean

Whether to pass to the output all the input fields (along with the fields set in 'Fields to Set')

§readonly jsonOutput?: string

Default: "{\n "my_field_1": "value",\n "my_field_2": 1\n}\n" Type options: {"rows":5}

§readonly mode?: "manual" | "raw"

Default: "manual"

§readonly options?: { ... }

Default: {}