import * as $dara from '@darabonba/typescript'; export declare class SearchAlertContactGroupResponseBodyContactGroupsContacts extends $dara.Model { /** * @remarks * The ID of the alert contact. * * @example * 123 */ contactId?: number; /** * @remarks * The name of the alert contact. * * @example * John Doe */ contactName?: string; /** * @remarks * The time when the alert contact group list was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC. * * @example * 1572349025000 */ createTime?: number; /** * @remarks * The webhook URL of the DingTalk chatbot. * * @example * https://oapi.dingtalk.com/robot/send?access_token=91f2f6**** */ dingRobot?: string; /** * @remarks * The email address of the alert contact. * * @example * someone@example.com */ email?: string; /** * @remarks * The mobile number of the alert contact. * * @example * 1381111***** */ phone?: string; /** * @remarks * Indicates whether the alert contact receives system notifications. Valid values: * * * true: receives system notifications. * * false: does not receive system notifications. * * @example * false */ systemNoc?: boolean; /** * @remarks * The time when the alert contact group was last modified. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC. * * @example * 1580258717000 */ updateTime?: number; /** * @remarks * The ID of the user. * * @example * 113197164949**** */ userId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SearchAlertContactGroupResponseBodyContactGroups extends $dara.Model { /** * @remarks * The ID of the alert contact group. * * @example * 746 */ contactGroupId?: number; /** * @remarks * The name of the alert contact group. * * @example * TestGroup */ contactGroupName?: string; /** * @remarks * The alert contact list. */ contacts?: SearchAlertContactGroupResponseBodyContactGroupsContacts[]; /** * @remarks * The time when the alert contact group list was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC. * * @example * 1529668855000 */ createTime?: number; /** * @remarks * The time when the alert contact group was last modified. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC. * * @example * 1529668855000 */ updateTime?: number; /** * @remarks * The ID of the user. * * @example * 113197164949**** */ userId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SearchAlertContactGroupResponseBody extends $dara.Model { /** * @remarks * The information about the alert contact groups. */ contactGroups?: SearchAlertContactGroupResponseBodyContactGroups[]; /** * @remarks * The ID of the request. * * @example * 4D6C358A-A58B-4F4B-94CE-F5AAF023**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }