import * as $dara from '@darabonba/typescript'; export declare class GetTaskAttributeRequest extends $dara.Model { /** * @remarks * The ID of the task. * * This parameter is required. * * @example * 123 */ taskId?: string; /** * @remarks * The type of the asynchronous task. The default value is ApplyCertificate, which specifies a query for the result of a certificate application. * * @example * ApplyCertificate */ taskType?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }