ntk-cms-api
Version:
Ntk Cms Api And Model For Typscript
19 lines (18 loc) • 515 B
TypeScript
import { NotificationTypeEnum } from "../../enums/base/notificationTypeEnum";
export declare class CmsNotificationModel {
icon: string;
badge: string;
sound: string;
title: string;
clickAction: string;
renotify: boolean;
contentType: NotificationTypeEnum;
content: string;
contentAction: string;
contentClassName: string;
contentJson: string;
smallImageId?: number;
bigImageId?: number;
smallImageIdSrc: string;
bigImageIdSrc: string;
}