import * as $dara from '@darabonba/typescript'; export declare class DeleteRumUploadFileRequest extends $dara.Model { /** * @remarks * Information of files to be deleted in JSON array format. If a single file needs to be deleted, this field should be left empty. If multiple files need to be deleted, just fill in this field. * * @example * [{ * "fileName" : "test.js.map", * "version" : "1.0.0" * }, * { * "fileName" : "test.dSYM", * "version" : "1.20.1", * "uuid" : "xxxx-xxxx-xxxx-xxxx" * }] */ batchItems?: string; /** * @remarks * The file name, with the extension. * * @example * test.js.map */ fileName?: string; /** * @remarks * The application ID. * * @example * atc889zkcf@d8deedfa9bf**** */ pid?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; serviceId?: string; /** * @remarks * The file ID. * * @example * MS4wLjAtbWFpbi4wZjM0NzRlOSxxxxxx */ uuid?: string; /** * @remarks * The version number of the file. * * @example * 1.0.0 */ versionId?: string; workspace?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }