UNPKG

@asposecloud/aspose-email-cloud

Version:
42 lines (41 loc) 1.02 kB
import * as model from "./index"; /** * List of files located on storage. */ export declare class StorageFileLocationList extends model.ListResponseOfStorageFileLocation { /** * Attribute type map */ static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; /** * Returns attribute type map */ static getAttributeTypeMap(): { name: string; /** * Attribute type map */ baseName: string; type: string; }[]; /** * List of files located on storage. * @param value */ constructor(value?: Array<model.StorageFileLocation>); } /** * StorageFileLocationList model builder */ export declare class StorageFileLocationListBuilder { private readonly model; constructor(model: StorageFileLocationList); /** * Build model. */ build(): StorageFileLocationList; value(value: Array<model.StorageFileLocation>): StorageFileLocationListBuilder; }