import * as $dara from '@darabonba/typescript'; export declare class DeleteMediaMarksRequest extends $dara.Model { /** * @remarks * The ID of the media asset. * * @example * ****c469e944b5a856828dc2**** */ mediaId?: string; /** * @remarks * The mark ID. You can specify multiple mark IDs separated with commas (,). * * If you do not specify MediaMarkIds, all the marks of the media asset are deleted. * * @example * mark-f82d*****4994b0915948ef7e16,mark-3d56d*****4c8fa9ae2a1f9e5d2d60 */ mediaMarkIds?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }