1 | import { LinkClickLocation } from "../message/SupportingTypes";
|
2 | import { ClientDetails, GeoLocation } from "./OutboundMessageOpen";
|
3 | export interface ClickEvent {
|
4 | RecordType: "Click";
|
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 | }
|
18 | export interface OutboundMessageClicks {
|
19 | TotalCount: number;
|
20 | Clicks: ClickEvent[];
|
21 | }
|