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