@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
12 lines (11 loc) • 506 B
TypeScript
export interface WhatsappCampStats {
sent: number;
delivered: number;
read: number;
unsubscribe: number;
notSent: number;
}
export declare function instanceOfWhatsappCampStats(value: object): boolean;
export declare function WhatsappCampStatsFromJSON(json: any): WhatsappCampStats;
export declare function WhatsappCampStatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): WhatsappCampStats;
export declare function WhatsappCampStatsToJSON(value?: WhatsappCampStats | null): any;