Interface DeepLNodeParameters

Source
interface DeepLNodeParameters {
    additionalFields?: {
        formality?: "default" | "more" | "less";
        preserveFormatting?: "1" | "0";
        sourceLang?: string;
        splitSentences?: "1" | "0" | "nonewlines";
    };
    operation?: "translate";
    resource?: "language";
    text?: string;
    translateTo?: string;
}

Properties§

Source§

readonly additionalFields?: {
    formality?: "default" | "more" | "less";
    preserveFormatting?: "1" | "0";
    sourceLang?: string;
    splitSentences?: "1" | "0" | "nonewlines";
}

Default: {}

Source§

readonly operation?: "translate"

Default: "translate"

Source§

readonly resource?: "language"

Default: "language"

Source§

readonly text?: string

Input text to translate

Source§

readonly translateTo?: string

Language to translate to. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getLanguages"}