// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ModifyCommandResponseBody extends $dara.Model { /** * @remarks * The ID of the request. * * @example * 0DE9B41E-EF0D-40A0-BB43-37749C5BDA9C */ requestId?: string; static names(): { [key: string]: string } { return { requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }