import * as $dara from '@darabonba/typescript'; export declare 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; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }