import { Location } from './Location';
import { Offer } from './Offer';
/** Veeam Cloud Connect */
export interface Account {
    /** Datacenter where your Cloud is physically located */
    location: Location;
    /** The commercial offer linked to your veeam cloud connect */
    productOffer: Offer;
    /** Your login in the Veeam Cloud Connect interface */
    serviceName: string;
    /** Backuped VMs quantity on your account */
    vmCount?: number;
}
//# sourceMappingURL=Account.d.ts.map