import * as $dara from '@darabonba/typescript'; export declare class QuerySmarttagJobResponseBodyResultsResult 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 QuerySmarttagJobResponseBodyResults extends $dara.Model { result?: QuerySmarttagJobResponseBodyResultsResult[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QuerySmarttagJobResponseBodyUsagesUsage extends $dara.Model { quota?: number; type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QuerySmarttagJobResponseBodyUsages extends $dara.Model { usage?: QuerySmarttagJobResponseBodyUsagesUsage[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QuerySmarttagJobResponseBody extends $dara.Model { /** * @remarks * The job status. Valid values: * * - **Success**: The job was successful. * * - **Fail**: The job failed. * * - **Processing**: The job is in progress. * * - **Submitted**: The job is queued for processing. * * @example * Success */ jobStatus?: string; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; results?: QuerySmarttagJobResponseBodyResults; usages?: QuerySmarttagJobResponseBodyUsages; /** * @remarks * The custom data passed through the MNS callback. For details on the message format, see the callback message format definitions below. * * @example * {"userId":"123432412831"} */ userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }