rittenhop-dev/versions/5.94.2/node_modules/@tryghost/member-events/lib/OfferRedemptionEvent.js

29 lines
667 B
JavaScript
Raw Normal View History

2024-09-23 19:40:12 -04:00
/**
* @typedef {object} OfferRedemptionEventData
* @prop {string} memberId
* @prop {string} offerId
* @prop {string} subscriptionId
*/
/**
* Server-side event firing on page views (page, post, tags...)
*/
module.exports = class OfferRedemptionEvent {
/**
* @param {OfferRedemptionEventData} data
* @param {Date} timestamp
*/
constructor(data, timestamp) {
this.data = data;
this.timestamp = timestamp;
}
/**
* @param {OfferRedemptionEventData} data
* @param {Date} [timestamp]
*/
static create(data, timestamp) {
return new OfferRedemptionEvent(data, timestamp || new Date);
}
};