// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class AttachInstancesToNodePoolResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * D7631D83-6E98-1949-B665-766A62xxxxxx */ requestId?: string; /** * @remarks * The task ID. * * @example * T-5a54309c80282e39eaxxxxxx */ taskId?: string; static names(): { [key: string]: string } { return { requestId: 'request_id', taskId: 'task_id', }; } static types(): { [key: string]: any } { return { requestId: 'string', taskId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }