import * as $dara from '@darabonba/typescript'; export declare class CreateOrUpdateContactGroupResponseBodyAlertContactGroup extends $dara.Model { /** * @remarks * The ID of the alert contact group. * * @example * 123 */ contactGroupId?: number; /** * @remarks * The name of the alert contact group. * * @example * TestGroup */ contactGroupName?: string; /** * @remarks * The IDs of the contacts that are included in the alert contact group. * * @example * [1,2,3] */ contactIds?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateOrUpdateContactGroupResponseBody extends $dara.Model { /** * @remarks * The information about the alert contact group. */ alertContactGroup?: CreateOrUpdateContactGroupResponseBodyAlertContactGroup; /** * @remarks * The request ID. * * @example * 9319A57D-2D9E-472A-B69B-CF3CD16D**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }