@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 343 B
TypeScript
/** Element's quantity consumed for a given time range */
export interface Detail {
/** Begin date */
beginDate?: string;
/** End date */
endDate?: string;
/** Pricing mode used during detail's time period */
pricingMode: string;
/** Consumed quantity */
quantity: number;
}
//# sourceMappingURL=Detail.d.ts.map