Represents the watermark added to the images when exporting an entry.

interface IExportEntryRequestWatermark {
    pageSpanPercentage?: number;
    position?: WatermarkPosition;
    rotationAngle?: number;
    text?: string;
}

Implemented by

Properties

pageSpanPercentage?: number

The percentage of the page that the watermark spans on. The value must be between 1 and 100 (inclusive). The default value is 50.

The position of the watermark. The default value is DeadCenter.

rotationAngle?: number

The rotation angle of the watermark. The value must be between 0 and 360 (inclusive). The default value is 0.

text?: string

The text of the watermark. The value must be a string with a length of at most 100 characters and must not be all whitespace characters.