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§

Source§

readonly assignments?: unknown

Default: {}

Source§

readonly duplicateCount?: number

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

Source§

readonly duplicateItem?: boolean

Source§

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.

Source§

readonly fields?: {
    values: {
        arrayValue?: string;
        booleanValue?: "true" | "false";
        name?: string;
        numberValue?: string;
        objectValue?: string;
        stringValue?: string;
        type?:
            | "stringValue"
            | "numberValue"
            | "booleanValue"
            | "arrayValue"
            | "objectValue";
    }[];
}

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

Source§

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

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

Source§

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.

Source§

readonly includeOtherFields?: boolean

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

Source§

readonly jsonOutput?: string

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

Source§

readonly mode?: "manual" | "raw"

Default: "manual"

Source§

readonly options?: {
    dotNotation?: boolean;
    ignoreConversionErrors?: boolean;
    includeBinary?: boolean;
    stripBinary?: boolean;
}

Default: {}