Interface SetV1NodeParameters

Source
interface SetV1NodeParameters {
    keepOnlySet?: boolean;
    options?: { dotNotation?: boolean };
    values?: {
        boolean: { name?: string; value?: boolean }[];
        number: { name?: string; value?: number }[];
        string: { name?: string; value?: string }[];
    };
}

Properties§

§readonly keepOnlySet?: boolean

Whether only the values set on this node should be kept and all others removed

§readonly options?: { ... }

Default: {}

§readonly values?: { ... }

The value to set Default: {} Type options: {"multipleValues":true,"sortable":true}