// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteAlertContactGroupRequest extends $dara.Model { /** * @remarks * The ID of the alert contact group. * * This parameter is required. * * @example * 123 */ contactGroupId?: number; /** * @remarks * The ID of the region. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string } { return { contactGroupId: 'ContactGroupId', regionId: 'RegionId', }; } static types(): { [key: string]: any } { return { contactGroupId: 'number', regionId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }