@asposecloud/aspose-email-cloud
Version:
Aspose.Email Cloud Node.js SDK
38 lines (37 loc) • 917 B
TypeScript
import * as model from "./index";
export declare class ListResponseOfAiNameComponent {
/**
* Attribute type map
*/
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
value: Array<model.AiNameComponent>;
/**
*
* @param value
*/
constructor(value?: Array<model.AiNameComponent>);
}
/**
* ListResponseOfAiNameComponent model builder
*/
export declare class ListResponseOfAiNameComponentBuilder {
private readonly model;
constructor(model: ListResponseOfAiNameComponent);
/**
* Build model.
*/
build(): ListResponseOfAiNameComponent;
value(value: Array<model.AiNameComponent>): ListResponseOfAiNameComponentBuilder;
}