import * as $dara from '@darabonba/typescript'; export declare class QueryMediaIndexJobResponseBodyIndexJobInfoList extends $dara.Model { /** * @remarks * The end time of the indexing job. * * @example * 2023-11-21 11:33:51 */ gmtFinish?: string; /** * @remarks * The time when the index job was submitted. * * @example * 2023-11-21 11:33:50 */ gmtSubmit?: string; /** * @remarks * The index type. Valid values: * * * mm: large visual model. * * face: face recognition. * * aiLabel: smart tagging. * * @example * mm */ indexType?: string; /** * @remarks * The job status. Valid values: * * * Running * * Success * * Fail * * @example * Success */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryMediaIndexJobResponseBody extends $dara.Model { /** * @remarks * The response code. * * @example * 200 */ code?: string; /** * @remarks * The indexing jobs enabled for the media asset. */ indexJobInfoList?: QueryMediaIndexJobResponseBodyIndexJobInfoList[]; /** * @remarks * The request ID. * * @example * 4E84BE44-58A7-****-****-FBEBEA16EF94 */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: * * * true * * false * * @example * true */ success?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }