UNPKG

576 BTypeScriptView Raw
1import { LinkClickLocation } from "../message/SupportingTypes";
2import { ClientDetails, GeoLocation } from "./OutboundMessageOpen";
3export interface ClickEvent {
4 RecordType: string;
5 ClickLocation: LinkClickLocation;
6 Client: ClientDetails;
7 OS: ClientDetails;
8 Platform: string;
9 UserAgent: string;
10 OriginalLink: string;
11 Geo: GeoLocation;
12 MessageID: string;
13 ReceivedAt: string;
14 Tag: string;
15 Recipient: string;
16 MessageStream: string;
17}
18export interface OutboundMessageClicks {
19 TotalCount: number;
20 Clicks: ClickEvent[];
21}