/** SMS blacklist */
export interface Blacklist {
    /** ID of the batch responsible of the blacklist */
    batchID?: string;
    /**  */
    dateCreation: string;
    /** The sms number blacklisted */
    number: string;
    /** ID of the outgoing SMS responsible of the blacklist */
    smsOutgoingID?: number;
}
//# sourceMappingURL=Blacklist.d.ts.map