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