@asposecloud/aspose-email-cloud
Version:
Aspose.Email Cloud Node.js SDK
43 lines (42 loc) • 1.07 kB
TypeScript
import * as model from "./index";
/**
* iCalendar models list with corresponding storage locations.
*/
export declare class CalendarStorageList extends model.ListResponseOfStorageModelOfCalendarDto {
/**
* Attribute type map
*/
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): {
name: string;
baseName: string;
/**
* Attribute type map
*/
type: string;
}[];
/**
* iCalendar models list with corresponding storage locations.
* @param value
*/
constructor(value?: Array<model.StorageModelOfCalendarDto>);
}
/**
* CalendarStorageList model builder
*/
export declare class CalendarStorageListBuilder {
private readonly model;
constructor(model: CalendarStorageList);
/**
* Build model.
*/
build(): CalendarStorageList;
value(value: Array<model.StorageModelOfCalendarDto>): CalendarStorageListBuilder;
}