1 | import { Hash } from "../../client/SupportingTypes";
|
2 | export interface SubscriptionChangeWebhook {
|
3 | RecordType: "SubscriptionChange";
|
4 | MessageID: string;
|
5 | ServerID: number;
|
6 | MessageStream: string;
|
7 | ChangedAt: string;
|
8 | Recipient: string;
|
9 | Origin: string;
|
10 | SuppressSending: boolean;
|
11 | SuppressionReason: string;
|
12 | Tag?: string;
|
13 | Metadata: Hash<string>;
|
14 | }
|