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 duplicate Count?: number
readonly duplicate Count?: number
How many times the item should be duplicated, mainly used for testing and debugging Type options: {"minValue":0}
Source§readonly exclude Fields?: string
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.
Source§readonly fields?: {
values: {
arrayValue?: string;
booleanValue?: "true" | "false";
name?: string;
numberValue?: string;
objectValue?: string;
stringValue?: string;
type?:
| "stringValue"
| "numberValue"
| "booleanValue"
| "arrayValue"
| "objectValue";
}[];
}
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"
readonly include?: "all" | "none" | "selected" | "except"
How to select the fields you want to include in your output items Default: "all"
Source§readonly include Fields?: string
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.
Source§readonly include Other Fields?: boolean
readonly include Other Fields?: boolean
Whether to pass to the output all the input fields (along with the fields set in 'Fields to Set')
Default: {}