UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 487 B
import { Price } from '../../order/Price'; import { InstanceMonthlyBilling } from './InstanceMonthlyBilling'; /** Instance usage */ export interface InstanceUsageDetail { /** Hourly price */ hourly?: Price; /** Instance id */ instanceId: string; /** Monthly price */ monthly?: InstanceMonthlyBilling; /** Is monthly billing enabled */ monthlyBilling: boolean; /** Reference */ reference: string; } //# sourceMappingURL=InstanceUsageDetail.d.ts.map