UNPKG

asposewordscloud

Version:
24 lines (23 loc) 673 B
import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapWordsResponse: {}; /** * The base class for all responses. */ export declare class WordsResponse implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the request Id. */ requestId: string; constructor(init?: Partial<WordsResponse>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }