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?:
| "arrayValue"
| "booleanValue"
| "numberValue"
| "objectValue"
| "stringValue";
}[];
};
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
readonly duplicate Count?: number
How many times the item should be duplicated, mainly used for testing and debugging Type options: {"minValue":0}
readonly duplicate Item?: boolean
Whether this item should be duplicated a set number of times
readonly exclude Fields?: 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 include Fields?: 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 include Other Fields?: boolean
Whether to pass to the output all the input fields (along with the fields set in 'Fields to Set')
readonly json Output?: 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: {}
Default: {}