import { CountryEnum } from '../coreTypes/CountryEnum';
/** Information about a datacenter of a VPS Virtual Machine */
export interface Datacenter {
    /** Datacenter ISO country code */
    country: CountryEnum;
    /** Datacenter display name */
    longName: string;
    /** Datacenter name */
    name: string;
}
//# sourceMappingURL=Datacenter.d.ts.map