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?: unknownreadonly duplicate Count?: numberHow many times the item should be duplicated, mainly used for testing and debugging Type options: {"minValue":0}
readonly duplicate Item?: booleanWhether this item should be duplicated a set number of times
readonly exclude Fields?: stringComma-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 include Fields?: stringComma-separated list of the field names you want to include in the output. You can drag the selected fields from the input panel.
readonly include Other Fields?: booleanWhether to pass to the output all the input fields (along with the fields set in 'Fields to Set')
readonly json Output?: stringDefault: "{\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: {}
Default: {}