import { ServiceOfferEnum } from './ServiceOfferEnum';
import { SpamAndVirusConfiguration } from './SpamAndVirusConfiguration';
import { ServiceStateEnum } from './ServiceStateEnum';
/** Exchange service */
export interface ExchangeService {
    /** Service family name displayed */
    displayName?: string;
    /** Exchange service name */
    domain: string;
    /** Exchange service URL */
    hostname?: string;
    /** Maximum allowable size for received messages in MB */
    maxReceiveSize: number;
    /** Maximum allowable size of sent messages in MB */
    maxSendSize: number;
    /** Exchange service offer */
    offer: ServiceOfferEnum;
    /** Spam and Antivirus configuration */
    spamAndVirusConfiguration: SpamAndVirusConfiguration;
    /** Expiration date of SSL certificate */
    sslExpirationDate?: string;
    /** Exchange service state */
    state: ServiceStateEnum;
    /** Task pending id */
    taskPendingId: number;
}
//# sourceMappingURL=ExchangeService.d.ts.map