import * as $dara from '@darabonba/typescript'; export declare class NotificationTemplate extends $dara.Model { createTime?: string; description?: string; /** * @example * Alarm $.alertName */ enContent?: string; /** * @example * Alarm $.alertName */ enItemContent?: string; /** * @example * Alarm $.alertName */ enTitle?: string; /** * @remarks * This parameter is required. */ name?: string; /** * @example * DATA, SMS, ONCALL, MAIL, DING, WEIXIN, FEISHU, SLACK */ type?: string; updateTime?: string; userId?: string; uuid?: string; /** * @example * TEXT, MARKDOWN,CARD */ wraperType?: string; /** * @example * 报警 $.alertName */ zhContent?: string; /** * @example * 报警 $.alertName */ zhItemContent?: string; /** * @example * 报警通知 $.alertName */ zhTitle?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }