UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 516 B
import { HourlyRancherDetail } from './HourlyRancherDetail'; import { Quantity } from './Quantity'; import { Price } from '../../order/Price'; /** HourlyRancher */ export interface HourlyRancher { /** Details about hourly Rancher */ details: HourlyRancherDetail[]; /** Hours of Rancher */ quantity: Quantity; /** Instance reference */ reference: string; /** Instance region */ region: string; /** Total price */ totalPrice: Price; } //# sourceMappingURL=HourlyRancher.d.ts.map