@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 438 B
TypeScript
import { Price } from '../../order/Price';
/** Representation of a product renew pricing */
export interface RenewForecastDetail {
/** Detail description */
description?: string;
/** Quantity */
quantity: number;
/** Associated service name */
serviceName: string;
/** Total price */
totalPrice: Price;
/** Price for one unit */
unitPrice: Price;
}
//# sourceMappingURL=RenewForecastDetail.d.ts.map