1 | import { Hash } from "../../client/SupportingTypes";
|
2 | export interface SpamComplaintWebhook {
|
3 | RecordType: "SpamComplaint";
|
4 | ID: number;
|
5 | Type: string;
|
6 | TypeCode: number;
|
7 | Name: string;
|
8 | Tag?: string;
|
9 | MessageID: string;
|
10 | ServerID: number;
|
11 | Description: string;
|
12 | Details: string;
|
13 | Email: string;
|
14 | From: string;
|
15 | BouncedAt: string;
|
16 | DumpAvailable: boolean;
|
17 | Inactive: boolean;
|
18 | CanActivate: boolean;
|
19 | Subject: string;
|
20 | Content?: string;
|
21 | MessageStream: string;
|
22 | Metadata: Hash<string>;
|
23 | }
|