UNPKG

305 BTypeScriptView Raw
1import { Hash } from "../../client/SupportingTypes";
2export interface DeliveryWebhook {
3 RecordType: "Delivery";
4 ServerID: number;
5 MessageStream: string;
6 MessageID: string;
7 Recipient: string;
8 Tag?: string;
9 DeliveredAt: string;
10 Details: string;
11 Metadata: Hash<string>;
12}