Represents the options when exporting the text part of an entry.

interface IExportEntryRequestTextOptions {
    includeRedactions?: boolean;
    redactionCharacter?: string;
}

Implemented by

Properties

includeRedactions?: boolean

Indicates if redactions are included. The default value is true.

redactionCharacter?: string

The character that replaces the original character in a redacted text. The value must be a string of length 1 and must not be a whitespace character. The default value is 'X'.