// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CreateAlertContactGroupRequest extends $dara.Model { /** * @remarks * The name of the alert contact group. * * This parameter is required. * * @example * TestGroup */ contactGroupName?: string; /** * @remarks * The IDs of contacts in the contact group. Separate multiple contact IDs with spaces. You can call the SearchAlertContact operation to query the contact IDs. For more information, see [SearchAlertContact](https://help.aliyun.com/document_detail/130703.html). * * @example * 12* 23* 34* */ contactIds?: string; /** * @remarks * The region ID. Default value: `cn-hangzhou`. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string } { return { contactGroupName: 'ContactGroupName', contactIds: 'ContactIds', regionId: 'RegionId', }; } static types(): { [key: string]: any } { return { contactGroupName: 'string', contactIds: 'string', regionId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }