asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
44 lines (43 loc) • 1.48 kB
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapSignOptions: {};
/**
* Container class for digital signature options.
*/
export declare class SignOptions implements ModelInterface {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets comments on the digital signature. The default value is an empty string.
*/
comments: string;
/**
* Gets or sets the password to decrypt source document. The default value is an empty string.
*/
decryptionPassword: string;
/**
* Gets or sets the class Guid of the signature cryptography provider. The default value is Empty (all zeroes) Guid.
*/
providerId: string;
/**
* Gets or sets user defined signature line Guid. The default value is Empty (all zeroes) Guid.
*/
signatureLineId: string;
/**
* Gets or sets the image that will be shown in associated SignatureLine. The default value is an empty string.
*/
signatureLineImageFilename: string;
/**
* Gets or sets the date of signing. The default value is current time (Now).
*/
signTime: Date;
constructor(init?: Partial<SignOptions>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}