/** Batch's statistics */
export interface BatchStatistics {
    /** The cost of the batch in credits, computed during batch processing */
    credits: number;
    /** Number of SMS that are delivered */
    delivered: number;
    /** The estimated cost of the batch in credits, computed before batch processing */
    estimatedCredits: number;
    /** Number of SMS in error */
    failed: number;
    /** Batch ID */
    id: string;
    /** Number of SMS that are in pending status */
    pending: number;
    /** Number of SMS that are sent to the broker */
    sent: number;
    /** Number of SMS that received a STOP by the receiver */
    stoplisted: number;
}
//# sourceMappingURL=BatchStatistics.d.ts.map