import { UnitAndValueLong } from '../../complexType/UnitAndValueLong';
/** A structure describing traffic informations about this dedicated server */
export interface TrafficDetails {
    /** Monthly input traffic quota allowed */
    inputQuotaSize?: UnitAndValueLong;
    /** Monthly input traffic consumed this month */
    inputQuotaUsed?: UnitAndValueLong;
    /** Is bandwidth throttleted for being over quota */
    isThrottled?: boolean;
    /** Monthly output traffic quota allowed */
    outputQuotaSize?: UnitAndValueLong;
    /** Monthly output traffic consumed this month */
    outputQuotaUsed?: UnitAndValueLong;
    /** Next reset quota date for traffic counter */
    resetQuotaDate?: string;
}
//# sourceMappingURL=TrafficDetails.d.ts.map