postmark
Version:
Official Node.js client library for the Postmark HTTP API - https://www.postmarkapp.com
22 lines (21 loc) • 576 B
TypeScript
import { LinkClickLocation } from "../message/SupportingTypes";
import { ClientDetails, GeoLocation } from "./OutboundMessageOpen";
export interface ClickEvent {
RecordType: string;
ClickLocation: LinkClickLocation;
Client: ClientDetails;
OS: ClientDetails;
Platform: string;
UserAgent: string;
OriginalLink: string;
Geo: GeoLocation;
MessageID: string;
ReceivedAt: string;
Tag: string;
Recipient: string;
MessageStream: string;
}
export interface OutboundMessageClicks {
TotalCount: number;
Clicks: ClickEvent[];
}