//#region src/model/BulkImportAppsRequest.d.ts type IBulkImportAppsRequest = { /** * - The file to import, can be a ZIP archive or a multi-objects YAML file */ fileUpload: File; }; /** * @typedef {Object} IBulkImportAppsRequest * @property {File} fileUpload - The file to import, can be a ZIP archive or a multi-objects YAML file */ /** * The BulkImportAppsRequest model module. * @module model/BulkImportAppsRequest * @type {IBulkImportAppsRequest} */ declare class BulkImportAppsRequest { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any): void; /** * Constructs a BulkImportAppsRequest from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/BulkImportAppsRequest} obj Optional instance to populate. * @return {module:model/BulkImportAppsRequest} The populated BulkImportAppsRequest instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to BulkImportAppsRequest. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to BulkImportAppsRequest. */ static validateJSON(data: any): boolean; fileUpload: File; } //#endregion export { IBulkImportAppsRequest, BulkImportAppsRequest as default };