import * as $dara from '@darabonba/typescript'; export declare class DeleteMediaInfosResponseBody extends $dara.Model { /** * @remarks * The IDs or URLs of media assets that cannot be deleted. Generally, media assets cannot be deleted if you do not have the required permissions. */ forbiddenList?: string[]; /** * @remarks * The IDs or URLs of ignored media assets. An error occurred while obtaining such media assets. */ ignoredList?: string[]; /** * @remarks * The request ID. * * @example * 0622C702-41BE-467E-AF2E-883D4517962E */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }