// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CreateTemplateResponseBody extends $dara.Model { /** * @remarks * The ID of the orchestration template. * * @example * ba1fe77b-b01e-4640-b77e-8f1b80****** */ templateId?: string; static names(): { [key: string]: string } { return { templateId: 'template_id', }; } static types(): { [key: string]: any } { return { templateId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }