Interface SpreadsheetFileV1NodeParameters

Source
interface SpreadsheetFileV1NodeParameters {
    binaryPropertyName?: string;
    fileFormat?:
        | "csv"
        | "html"
        | "ods"
        | "rtf"
        | "xls"
        | "xlsx";
    operation?: "fromFile"
    | "toFile";
    options?:
        | {
            delimiter?: string;
            enableBOM?: boolean;
            encoding?: | "ascii"
            | "ucs2"
            | "utf8"
            | "latin1"
            | "ucs-2"
            | "utf-8"
            | "utf16le";
            fromLine?: number;
            headerRow?: boolean;
            includeEmptyCells?: boolean;
            maxRowCount?: number;
            range?: string;
            rawData?: boolean;
            readAsString?: boolean;
            relaxQuotes?: boolean;
            sheetName?: string;
        }
        | {
            compression?: boolean;
            fileName?: string;
            headerRow?: boolean;
            sheetName?: string;
        };
}

Properties§

Source§

readonly binaryPropertyName?: string

Default: "data"

Source§

readonly fileFormat?: "csv" | "html" | "ods" | "rtf" | "xls" | "xlsx"

The format of the file to save the data as Default: "xls"

Source§

readonly operation?: "fromFile" | "toFile"

Default: "fromFile"

Source§

readonly options?:
    | {
        delimiter?: string;
        enableBOM?: boolean;
        encoding?: | "ascii"
        | "ucs2"
        | "utf8"
        | "latin1"
        | "ucs-2"
        | "utf-8"
        | "utf16le";
        fromLine?: number;
        headerRow?: boolean;
        includeEmptyCells?: boolean;
        maxRowCount?: number;
        range?: string;
        rawData?: boolean;
        readAsString?: boolean;
        relaxQuotes?: boolean;
        sheetName?: string;
    }
    | {
        compression?: boolean;
        fileName?: string;
        headerRow?: boolean;
        sheetName?: string;
    }

Default: {}