@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
21 lines • 812 B
TypeScript
import { HourlyResources } from '../billingView/HourlyResources';
import { MonthlyResources } from '../billingView/MonthlyResources';
import { Period } from './Period';
import { TypedResources } from '../billingView/TypedResources';
import { UsedCredits } from '../billingView/UsedCredits';
/** UsageForecast */
export interface UsageForecast {
/** Hourly forecast */
hourlyUsage?: HourlyResources;
/** Entry last update */
lastUpdate: string;
/** Monthly forecast */
monthlyUsage?: MonthlyResources;
/** Forecast dates (from/to) */
period: Period;
/** Resource usage forecast (billed per hour/minute/second/unit) */
resourcesUsage?: TypedResources[];
/** Usable credit to pay next bill */
usableCredits?: UsedCredits;
}
//# sourceMappingURL=UsageForecast.d.ts.map