1 | import { Hash } from "../../client/SupportingTypes";
|
2 | export 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 | }
|