import * as $dara from '@darabonba/typescript'; export declare class GetTaskAttributeResponseBody extends $dara.Model { /** * @remarks * The unique ID of the request. Alibaba Cloud generates this ID for each request. Use this ID to troubleshoot issues. * * @example * CBF1E9B7-D6A0-4E9E-AD3E-2B47E6C2837D */ requestId?: string; /** * @remarks * The error message. * * @example * error */ taskMessage?: string; /** * @remarks * The result of the task. * * - success: The submission is successful. * * - processing: The submission is in progress. * * - failed: The submission failed. * * @example * success */ taskStatus?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }