import * as $dara from '@darabonba/typescript'; export declare class CreateOrUpdateContactGroupRequest extends $dara.Model { /** * @remarks * The ID of the alert contact group. * * * If you do not specify this parameter, an alert contact group is created. * * If you specify this parameter, the specified alert contact group is modified. * * @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 contact that you want to add to the contact group. Separate multiple IDs with commas (,). * * @example * [1,2,3] */ contactIds?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }