UNPKG

postmark

Version:

Official Node.js client library for the Postmark HTTP API - https://www.postmarkapp.com

24 lines (23 loc) 546 B
import { Hash } from "../../client/SupportingTypes"; export interface SpamComplaintWebhook { RecordType: "SpamComplaint"; ID: number; Type: string; TypeCode: number; Name: string; Tag?: string; MessageID: string; ServerID: number; Description: string; Details: string; Email: string; From: string; BouncedAt: string; DumpAvailable: boolean; Inactive: boolean; CanActivate: boolean; Subject: string; Content?: string; MessageStream: string; Metadata: Hash<string>; }