UNPKG

841 BTypeScriptView Raw
1export interface Bounce {
2 RecordType: string;
3 ID: number;
4 Type: string;
5 TypeCode: number;
6 Name: string;
7 Tag?: string;
8 MessageID: string;
9 ServerID: string;
10 Description: string;
11 Details: string;
12 Email: string;
13 From: string;
14 BouncedAt: string;
15 DumpAvailable: boolean;
16 Inactive: boolean;
17 CanActivate: boolean;
18 Subject: string;
19 Content?: string;
20 MessageStream: string;
21}
22export interface BounceDump {
23 Body: string;
24}
25export interface BounceActivationResponse {
26 Message: string;
27 Bounce: Bounce;
28}
29export interface Bounces {
30 TotalCount: number;
31 Bounces: Bounce[];
32}
33export interface BounceMetric {
34 Name: string;
35 Count: number;
36 Type?: string;
37}
38export interface DeliveryStatistics {
39 InactiveMails: number;
40 Bounces: BounceMetric[];
41}