"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Notification { constructor(payload) { this._data = payload; this.identifier = this._data.identifier; } get data() { return this._data; } get title() { return this._data.title; } get body() { return this._data.body; } get sound() { return this._data.sound; } get badge() { return this._data.badge; } get type() { return this._data.type; } get thread() { return this._data.thread; } } exports.Notification = Notification;