@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
10 lines (9 loc) • 329 B
TypeScript
export declare class AuthenticationResponse {
private readonly _tokenType;
private readonly _accessToken;
private readonly _expiryInterval;
constructor(tokenType: string, accessToken: string, expiryInterval: number);
get tokenType(): string;
get accessToken(): string;
get expiryInterval(): number;
}