import { RestrictionCodeEnum } from './RestrictionCodeEnum';
/** Sms reach list */
export interface Exception {
    /** The abreviated country code. */
    countrySuffixe: string;
    /** The exception message */
    messages: string[];
    /** The list of operators impacted. */
    operators: string;
    /** The type of routing restriction imposed by the operator */
    restrictionCode: RestrictionCodeEnum;
    /** The substitution sender used to bypass operator filter */
    substitution?: string;
}
//# sourceMappingURL=Exception.d.ts.map