import * as $dara from '@darabonba/typescript'; export declare class SearchAlertContactGroupRequest extends $dara.Model { /** * @remarks * The ID of the alert contact group. You can query multiple alert contact groups at a time. Separate multiple group IDs with commas (,). * * @example * 746 */ contactGroupIds?: string; /** * @remarks * The name of the alert contact group. * * @example * TestGroup */ contactGroupName?: string; /** * @remarks * The ID of the alert contact. 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 * 123 */ contactId?: number; /** * @remarks * The name of the alert contact. * * @example * John Doe */ contactName?: string; /** * @remarks * Specifies whether to return all alert contacts in the queried alert contact group. By default, not all alert contacts are returned. * * @example * true */ isDetail?: boolean; /** * @remarks * The ID of the region. 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; }); }