import * as $dara from '@darabonba/typescript'; export declare class QueryVideoCognitionJobResponseBodyInput extends $dara.Model { /** * @remarks * The URL of the input file. */ media?: string; /** * @remarks * The type of the input file. Valid value: OSS. */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryVideoCognitionJobResponseBodyResultsResult extends $dara.Model { data?: string; type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryVideoCognitionJobResponseBodyResults extends $dara.Model { result?: QueryVideoCognitionJobResponseBodyResultsResult[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryVideoCognitionJobResponseBody extends $dara.Model { /** * @remarks * The input file. */ input?: QueryVideoCognitionJobResponseBodyInput; /** * @remarks * The job status. Valid values: * * - **Success**: The job succeeded. * * - **Fail**: The job failed. * * - **Processing**: The job is in progress. * * - **Submitted**: The job has been submitted and is awaiting processing. * * @example * Success */ jobStatus?: string; /** * @remarks * The request parameters. */ params?: string; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; results?: QueryVideoCognitionJobResponseBodyResults; /** * @remarks * The template ID. */ templateId?: string; /** * @remarks * The user data. * * @example * {"userId":"123432412831"} */ userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }