// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CreateAgentRuntimeVersionInput extends $dara.Model { /** * @remarks * A description of the agent runtime version. * * @example * Version 1.0.0 release with new features */ description?: string; static names(): { [key: string]: string } { return { description: 'description', }; } static types(): { [key: string]: any } { return { description: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }