// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class BatchUpdateNoticeStatusResponseBody extends $dara.Model { /** * @remarks * The ID of the request, which is the unique identifier generated by Alibaba Cloud for the request. The ID can be used to troubleshoot and locate issues. * * @example * 3F60357E-76D2-52AD-B3EB-D86276755814 */ 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); } }