@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 603 B
TypeScript
import { UnitAndValueLong } from '../../complexType/UnitAndValueLong';
import { BandwidthTypeEnum } from './BandwidthTypeEnum';
/** A structure describing bandwidth informations about this dedicated server */
export interface BandwidthDetails {
/** bandwidth limitation Internet to OVH */
InternetToOvh?: UnitAndValueLong;
/** bandwidth limitation OVH to Internet */
OvhToInternet?: UnitAndValueLong;
/** bandwidth limitation OVH to OVH */
OvhToOvh?: UnitAndValueLong;
/** bandwidth offer type */
type?: BandwidthTypeEnum;
}
//# sourceMappingURL=BandwidthDetails.d.ts.map