TryGhost/Ghost

View on GitHub
ghost/mail-events/src/MailEvent.ts

Summary

Maintainability
A
0 mins
Test Coverage
export class MailEvent {
    constructor(
        readonly id: string,
        readonly type: string,
        readonly messageId: string,
        readonly recipient: string,
        readonly timestampMs: number,
        readonly deleted: boolean = false
    ) {}
}