asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
33 lines (32 loc) • 1.14 kB
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { Signature } from './signature';
import { WordsResponse } from './wordsResponse';
export declare const importsMapSignatureCollectionResponse: {
Signature: typeof Signature;
WordsResponse: typeof WordsResponse;
};
/**
* The REST response with a document signature collection.
* This response is returned by the Service when handling any "https://api.aspose.cloud/v4.0/words/Test.doc/signatures" REST API requests.
*/
export declare class SignatureCollectionResponse extends WordsResponse {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets a value indicating whether all signatures are valid. Returns true if there is no signatures.
*/
isValid: boolean;
/**
* Gets or sets signatures.
*/
signatures: Array<Signature>;
constructor(init?: Partial<SignatureCollectionResponse>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}