import * as $dara from '@darabonba/typescript'; export declare class DescribeContactGroupsRequest extends $dara.Model { /** * @remarks * The name of the alert contact group. * * @example * TestGroup */ contactGroupName?: string; /** * @remarks * The ID of the alert contact group. * * @example * 12345 */ groupIds?: string; /** * @remarks * Specifies whether to return all the alert contacts in the queried alert contact group. Valid values: * * * `false` * * `true` * * @example * true */ isDetail?: boolean; /** * @remarks * The number of the page to return. * * This parameter is required. * * @example * 1 */ page?: number; /** * @remarks * The region ID. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The number of alert contact groups displayed on each page. * * This parameter is required. * * @example * 20 */ size?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }