@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
14 lines (13 loc) • 785 B
TypeScript
import type { AbTestVersionStats } from './AbTestVersionStats.js';
export interface AbTestCampaignResultStatistics {
openers: AbTestVersionStats;
clicks: AbTestVersionStats;
unsubscribed: AbTestVersionStats;
hardBounces: AbTestVersionStats;
softBounces: AbTestVersionStats;
complaints: AbTestVersionStats;
}
export declare function instanceOfAbTestCampaignResultStatistics(value: object): boolean;
export declare function AbTestCampaignResultStatisticsFromJSON(json: any): AbTestCampaignResultStatistics;
export declare function AbTestCampaignResultStatisticsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AbTestCampaignResultStatistics;
export declare function AbTestCampaignResultStatisticsToJSON(value?: AbTestCampaignResultStatistics | null): any;