import { AlertingDelayEnum } from './AlertingDelayEnum';
import { Price } from '../order/Price';
/** Cloud alerting consumption */
export interface Alerting {
    /** Alerting creation date */
    creationDate: string;
    /** Delay between alerts in seconds */
    delay: AlertingDelayEnum;
    /** Email to contact */
    email: string;
    /** Formatted monthly threshold for this alerting */
    formattedMonthlyThreshold: Price;
    /** Alerting unique UUID */
    id: string;
    /** Monthly threshold for this alerting */
    monthlyThreshold: number;
}
//# sourceMappingURL=Alerting.d.ts.map