import { FrequencyEnum } from './FrequencyEnum';
import { TypeEnum } from './TypeEnum';
/** xdsl.monitoringNotifications.post */
export interface Post {
    /** Whether or not to allow notifications concerning generic incidents */
    allowIncident: boolean;
    /** The number of seconds the access has to be down to trigger the alert */
    downThreshold: number;
    /** The e-mail address, if type is mail */
    email: string;
    /** Frequency between notifications. */
    frequency: FrequencyEnum;
    /** The phone number, if type is sms */
    phone: string;
    /** The SMS account which will be debited for each sent SMS, if the type is sms */
    smsAccount: string;
    /** Type of notification. */
    type: TypeEnum;
}
//# sourceMappingURL=Post.d.ts.map