UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

10 lines 352 B
import { InstanceUsageDetail } from './InstanceUsageDetail'; import { Price } from '../../order/Price'; /** Instances usage for current month */ export interface InstancesUsage { /** Instance usage details */ detail: InstanceUsageDetail[]; /** Total cost for the instances */ total: Price; } //# sourceMappingURL=InstancesUsage.d.ts.map