@grouparoo/core
Version:
The Grouparoo Core
22 lines (21 loc) • 509 B
TypeScript
import { CommonModel } from "../classes/commonModel";
export declare class Notification extends CommonModel<Notification> {
idPrefix(): string;
from: string;
subject: string;
body: string;
cta: string;
ctaLink: string;
readAt: Date;
apiData(): Promise<{
id: string;
from: string;
subject: string;
body: string;
cta: string;
ctaLink: string;
createdAt: number;
updatedAt: number;
readAt: number;
}>;
}