import { AlertThreshold } from './AlertThreshold';
import { Quota } from './Quota';
/** SMS users */
export interface User {
    /**  */
    alertThresholdInformations: AlertThreshold;
    /** URL called when state of a sent SMS changes */
    callBack?: string;
    /**  */
    ipRestrictions: string[];
    /** The sms user login */
    login: string;
    /**  */
    password: string;
    /**  */
    quotaInformations: Quota;
    /** URL called when a STOP is received after a receiver replied stop to a SMS */
    stopCallBack?: string;
}
//# sourceMappingURL=User.d.ts.map