asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
29 lines (28 loc) • 1.02 kB
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { DocumentProperties } from './documentProperties';
import { WordsResponse } from './wordsResponse';
export declare const importsMapDocumentPropertiesResponse: {
DocumentProperties: typeof DocumentProperties;
WordsResponse: typeof WordsResponse;
};
/**
* The REST response with a collection of document properties.
* This response should be returned by the service when handling: GET /documentProperties.
*/
export declare class DocumentPropertiesResponse extends WordsResponse {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the collection of document properties.
*/
documentProperties: DocumentProperties;
constructor(init?: Partial<DocumentPropertiesResponse>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}