MergeDocumentOptions
Syntax
interface MergeDocumentOptions {
name?: string;
author?: string;
creationDate?: string;
deleteOriginal?: boolean;
}
Attributes
name
Specify the name of the new merged document.
author
Specify the author of the new merged document.
creationDate
Specify the creation date of the new merged document. Please note that the argument should be D:YYYYMMDDHHmmSSOHH'mm'
, like D:20230101085959-08'00'
.It also supports the older format D:YYYYMMDDHHmmSS
, like D:20230101085959
; in this case, the system will automatically add the corresponding time zone information, for example, D:20230101085959-08'00'
.
deleteOriginal
Specify whether to delete the original documents.
Default value: false