mailersend
Version:
Node.js helper module for MailerSend API
19 lines (18 loc) • 508 B
TypeScript
import { Pagination } from "../Pagination";
export interface ActivityQueryParams extends Pagination {
date_from?: number;
date_to?: number;
event?: ActivityEventType[];
}
export declare enum ActivityEventType {
QUEUED = "queued",
SENT = "sent",
DELIVERED = "delivered",
SOFT_BOUNCED = "soft_bounced",
HARD_BOUNCED = "hard_bounced",
JUNK = "junk",
OPENED = "opened",
CLICKED = "clicked",
UNSUBSCRIBED = "unsubscribed",
SPAM_COMPLAINTS = "spam_complaints"
}