// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CreateMonitorGroupResponseBody extends $dara.Model { /** * @remarks * The ID of the API group. This ID is generated by the system and is unique globally. * * @example * 187421794 */ monitorGroupId?: number; /** * @remarks * The ID of the request. * * @example * 5D7136F7-9D67-5D4D-8418-6A512CCEE3A2 */ requestId?: string; static names(): { [key: string]: string } { return { monitorGroupId: 'MonitorGroupId', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { monitorGroupId: 'number', requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }