rittenhop-ghost/versions/5.94.2/node_modules/@tryghost/donations/build/DonationPaymentEvent.d.ts

18 lines
612 B
TypeScript
Raw Normal View History

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;
}