import * as $dara from '@darabonba/typescript'; export declare class QuerySmarttagJobRequest extends $dara.Model { /** * @remarks * The ID of the smart tagging job that you want to query. You can obtain the job ID from the response parameters of the SubmitSmarttagJob operation. * * This parameter is required. * * @example * 88c6ca184c0e47098a5b665e2**** */ jobId?: string; /** * @remarks * The extra parameters that you want to query in the request. The value is a JSON string. Example: {"labelResultType":"auto"}. The value of labelResultType is of the STRING type. Valid values: * * * auto: machine tagging * * hmi: tagging by human and machine * * @example * {"labelResultType":"auto"} */ params?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }