2022-01-12 18:42:37 +00:00
|
|
|
export interface INotification {
|
2022-04-07 19:14:04 +00:00
|
|
|
payload: {
|
|
|
|
message: string;
|
|
|
|
style: string;
|
|
|
|
ejson: string;
|
|
|
|
collapse_key: string;
|
|
|
|
notId: string;
|
|
|
|
msgcnt: string;
|
|
|
|
title: string;
|
|
|
|
from: string;
|
|
|
|
image: string;
|
|
|
|
soundname: string;
|
|
|
|
};
|
|
|
|
identifier: string;
|
2022-01-12 18:42:37 +00:00
|
|
|
}
|