import { ServiceEnum } from './ServiceEnum';
import { StatusEnum } from './StatusEnum';
import { Price } from '../../order/Price';
/** Billing Alert Configuration */
export interface Alerting {
    /** Creation date */
    creationDate: string;
    /** Delay of the alert in seconds */
    delay: number;
    /** @deprecated Email. DEPRECATED: use emails */
    email: string;
    /** Receiver of the alert */
    emails: string[];
    /** formatted monthly threshold */
    formattedMonthlyThreshold: Price;
    /** ID of the alert */
    id: string;
    /** Monthly threshold */
    monthlyThreshold: number;
    /** Name of the alert */
    name: string;
    /** Service of the alert */
    service: ServiceEnum;
    /** Status of the alert */
    status: StatusEnum;
}
//# sourceMappingURL=Alerting.d.ts.map