rittenhop-dev/versions/5.94.2/node_modules/@tryghost/donations/build/DonationPaymentEvent.d.ts
2024-09-23 19:40:12 -04:00

18 lines
612 B
TypeScript

export declare class DonationPaymentEvent {
timestamp: Date;
name: string | null;
email: string;
memberId: string | null;
amount: number;
currency: string;
donationMessage: string | null;
attributionId: string | null;
attributionUrl: string | null;
attributionType: string | null;
referrerSource: string | null;
referrerMedium: string | null;
referrerUrl: string | null;
constructor(data: Omit<DonationPaymentEvent, 'timestamp'>, timestamp: Date);
static create(data: Omit<DonationPaymentEvent, 'timestamp'>, timestamp?: Date): DonationPaymentEvent;
}