// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ModifyStorageSetAttributeResponseBody extends $dara.Model { /** * @remarks * The ID of the request. * * @example * 04F0F334-1335-436C-A1D7-6C044FE73369 */ 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); } }