import * as $dara from '@darabonba/typescript'; export declare class QuerySmarttagJobRequest extends $dara.Model { /** * @remarks * The ID of the smart tagging job. You can obtain this ID from the response to the [SubmitSmarttagJob](https://help.aliyun.com/document_detail/478786.html) call. * * This parameter is required. * * @example * 88c6ca184c0e47098a5b665e2**** */ jobId?: string; /** * @remarks * Additional request parameters, formatted as a JSON string. For example: `{"labelResultType":"auto"}`. The `labelResultType` parameter supports the following values: * * - `auto`: machine-generated tagging results * * - `hmi`: human-in-the-loop tagging results * * @example * {"labelResultType":"auto"} */ params?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }