import * as $dara from '@darabonba/typescript'; export declare class QueryVideoCognitionJobRequestIncludeResults extends $dara.Model { /** * @remarks * Specifies whether to include Automatic Speech Recognition (ASR) results. * * @example * true */ needAsr?: boolean; /** * @remarks * Specifies whether to include Optical Character Recognition (OCR) results. * * @example * true */ needOcr?: boolean; /** * @remarks * Specifies whether to include the URL to the raw output of the algorithm. * * @example * true */ needProcess?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryVideoCognitionJobRequest extends $dara.Model { /** * @remarks * Specifies whether to include the full algorithm results in the response. */ includeResults?: QueryVideoCognitionJobRequestIncludeResults; /** * @remarks * The ID of the task to query. It is returned when you call the [SubmitSmarttagJob](https://help.aliyun.com/document_detail/478786.html) operation. * * This parameter is required. * * @example * ****20b48fb04483915d4f2cd8ac**** */ jobId?: string; /** * @remarks * Additional request parameters, provided as a JSON string. * * @example * {} */ params?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }