@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 480 B
TypeScript
import { Price } from '../../order/Price';
import { Service } from './Service';
/** Representation of a product renew pricing */
export interface RenewStrategy {
/** Price of the product */
price: Price;
/** Price of the product in micro-centims */
priceInUcents: number;
/** Services renewed by strategy */
services: number[];
/** Details of services renewed by strategy */
servicesDetails: Service[];
}
//# sourceMappingURL=RenewStrategy.d.ts.map