@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
69 lines • 2.17 kB
JavaScript
;
/*
* Copyright 2024 Adobe
* All Rights Reserved.
*
* NOTICE: Adobe permits you to use, modify, and distribute this file in
* accordance with the terms of the Adobe license agreement accompanying
* it. If you have received this file from a source other than Adobe,
* then your use, modification, or distribution of it requires the prior
* written permission of Adobe.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.InfoDict = void 0;
/**
* This class provides document authoring related information, such as creation date, creator etc.
*/
class InfoDict {
/**
* Returns a string specifying the date of file creation.
*
* @returns String denoting the date of file creation.
*/
get creationDate() {
return this._creationDate;
}
/**
* Returns a string specifying the authoring tool used to generate the specified PDF file - e.g. "Adobe Acrobat
* 21.5 Image Conversion Plug-in" etc.
*
* @returns A String denoting the authoring tool used to generate the specified PDF file.
*/
get producer() {
return this._producer;
}
/**
* Returns a string specifying the creator tool of the specified PDF file - e.g. "Adobe Acrobat 21.5" etc.
*
* @returns A String denoting the creator tool of the specified PDF file.
*/
get creator() {
return this._creator;
}
/**
* Returns a string specifying the date when the file was last modified.
*
* @returns A String denoting the date when the file was last modified.
*/
get dateModified() {
return this._modDate;
}
/**
* Returns the name of the author of the specified PDF file
*
* @returns A String denoting the name of the author of the specified PDF file.
*/
get author() {
return this._author;
}
/**
* Returns a string specifying the title of the specified PDF file.
*
* @returns A String denoting the title of the specified PDF file.
*/
get title() {
return this._title;
}
}
exports.InfoDict = InfoDict;
//# sourceMappingURL=InfoDict.js.map