Request body for starting an asynchronous export entry task.

interface IStartExportEntryRequest {
    alternateEdocName?: string;
    auditReasonComment?: string;
    auditReasonId?: number;
    imageOptions?: ExportEntryRequestImageOptions;
    part: ExportEntryRequestPart;
    textOptions?: ExportEntryRequestTextOptions;
}

Implemented by

Properties

alternateEdocName?: string

The name of the alternate electronic document to export. Required when part=AlternateEdoc, and rejected for every other part. 1 to 15 characters, each an ASCII letter, an ASCII digit, or one of !@#$%^&()-+={}[]_~. Matched exactly, so a name differing only in letter case is not found. Names reserved for internal use are also reported as not found.

auditReasonComment?: string

The comment for this audit event.

auditReasonId?: number

The reason id for this audit event.

The options applied when exporting as Image.

Specifies the part of the document to export. Options include: Image, Text, Edoc, AlternateEdoc. AlternateEdoc also requires alternateEdocName.

The options applied when exporting as Text.