// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { requestId: 'RequestId', taskMessage: 'TaskMessage', taskStatus: 'TaskStatus', }; } static types(): { [key: string]: any } { return { requestId: 'string', taskMessage: 'string', taskStatus: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }