import * as $dara from '@darabonba/typescript'; export declare class SubmitMediaAiAnalysisJobRequest extends $dara.Model { /** * @remarks * The analysis parameters. * * @example * {"nlpParams":{"sourceLanguage":"cn","diarizationEnabled":true,"speakerCount":0,"summarizationEnabled":false,"translationEnabled":false}} */ analysisParams?: string; /** * @remarks * The media asset that you want to analyze. You can specify an Object Storage Service (OSS) URL, a media asset ID, or an external URL. * * @example * {"MediaType":"video","Media":"https://xxx.com/your_movie.mp4"} */ input?: string; userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }