// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { mediaId: 'MediaId', mediaMarkIds: 'MediaMarkIds', }; } static types(): { [key: string]: any } { return { mediaId: 'string', mediaMarkIds: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }