@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
14 lines (13 loc) • 583 B
TypeScript
export interface GetSmsCampaignStats {
delivered: number;
sent: number;
processing: number;
softBounces: number;
hardBounces: number;
unsubscriptions: number;
answered: number;
}
export declare function instanceOfGetSmsCampaignStats(value: object): boolean;
export declare function GetSmsCampaignStatsFromJSON(json: any): GetSmsCampaignStats;
export declare function GetSmsCampaignStatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSmsCampaignStats;
export declare function GetSmsCampaignStatsToJSON(value?: GetSmsCampaignStats | null): any;