@asposecloud/aspose-email-cloud
Version:
Aspose.Email Cloud Node.js SDK
40 lines (39 loc) • 856 B
TypeScript
import * as model from "./index";
/**
* List of VCard documents
*/
export declare class ContactList extends model.ListResponseOfContactDto {
/**
* Attribute type map
*/
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
/**
* List of VCard documents
* @param value
*/
constructor(value?: Array<model.ContactDto>);
}
/**
* ContactList model builder
*/
export declare class ContactListBuilder {
private readonly model;
constructor(model: ContactList);
/**
* Build model.
*/
build(): ContactList;
value(value: Array<model.ContactDto>): ContactListBuilder;
}