@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
28 lines (27 loc) • 738 B
TypeScript
import { Asset } from "./Asset";
/**
* This class represents an asset stored in Adobe internal storage.
*/
export declare class CloudAsset implements Asset {
private readonly _assetId;
private readonly _downloadURI?;
/**
* Construct an instance of `CloudAsset`.
*
* @param assetId - assetId of the asset.
* @param [downloadURI] - downloadURI of the asset.
*/
constructor(assetId: string, downloadURI?: string);
/**
* Returns the assetId of the asset.
*
* @returns assetId of the asset.
*/
get assetId(): string;
/**
* Returns the downloadURI of the asset.
*
* @returns downloadURI of the asset.
*/
get downloadURI(): string | undefined;
}