UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 486 B
import { Detail } from './element/Detail'; import { Price } from '../Price'; /** Element of consumption for resource */ export interface Element { /** List of consumption details for this planCode */ details: Detail[]; /** Identifier of the offer */ planCode: string; /** Family of the offer */ planFamily: string; /** Consumption amount price */ price: Price; /** Consumption quantity */ quantity: number; } //# sourceMappingURL=Element.d.ts.map