import * as $dara from '@darabonba/typescript'; export declare class DeletePlayInfoResponseBody extends $dara.Model { /** * @remarks * The URLs of the media streams that cannot be deleted. Generally, media streams cannot be deleted if you do not have the required permissions. */ forbiddenList?: string[]; /** * @remarks * The URLs of ignored media streams. An error occurred while obtaining such media assets because the IDs or URLs of the media assets do not exist. */ ignoredList?: string[]; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }