UNPKG

@asposecloud/aspose-email-cloud

Version:
47 lines (46 loc) 1.01 kB
import * as model from "./index"; /** * Files list */ export declare class FilesList { /** * Attribute type map */ static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; /** * Returns attribute type map */ static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; /** * Files and folders contained by folder StorageFile. */ value: Array<model.StorageFile>; /** * Files list * @param value Files and folders contained by folder StorageFile. */ constructor(value?: Array<model.StorageFile>); } /** * FilesList model builder */ export declare class FilesListBuilder { private readonly model; constructor(model: FilesList); /** * Build model. */ build(): FilesList; /** * Files and folders contained by folder StorageFile. */ value(value: Array<model.StorageFile>): FilesListBuilder; }